-
Notifications
You must be signed in to change notification settings - Fork 325
/
Gemfile
97 lines (67 loc) · 2 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
source "https://rubygems.org"
ruby "~> 3.1"
# Task runner
gem "thor", "~> 1.3.0"
# Tests
gem "minitest", "~> 5.24.1"
# CLI helper for running tests
gem "minitest-sprint", "~> 1.2.0"
# More test outputs
gem "minitest-reporters", "~> 1.7.1"
# For an "after_all" callback.
gem "minitest-hooks", "~> 1.5.0"
# Retry certain flaky tests.
gem "minitest-retry", "~> 0.2.2"
# Test metadata for CI environment.
gem "minitest-ci", "~> 3.4.0"
# Ruby lint/style checker
gem "rubocop", "~> 1.4", :require => false
gem "rubocop-minitest", "~> 0.35.0", :require => false
# Running background processes
gem "childprocess"
# Making HTTP requests
gem "typhoeus", "~> 1.4.0"
# JSON parsing
gem "multi_json", "~> 1.15.0"
gem "oj", "~> 3.10"
# Database libraries
gem "activerecord", "~> 7.1.1", :require => "active_record"
gem "pg", "~> 1.5.3"
gem "opensearch-ruby", "~> 3.4.0"
gem "faraday-typhoeus", "~> 1.1.0"
gem "active_attr", "~> 0.16.0"
# Factories for test database data
gem "factory_bot", "~> 6.4.0"
# Programmatically generate Rails session cookies.
gem "rails_compatible_cookies_utils", "~> 0.1.0"
# URL parsing/generation
gem "addressable", "~> 2.8.0"
# Browser/JavaScript integration tests
gem "capybara", "~> 3.32"
gem "selenium-webdriver", "~> 4.15"
# Take screenshots on capybara test failures
gem "capybara-screenshot", "~> 1.0.22"
# Adds support for `assert_text` for shadow DOM tests.
gem "capybara-shadowdom", "~> 0.3.0"
# HTML or XML parsing
gem "nokogiri", "~> 1.14"
# Useful additions
gem "activesupport", "~> 7.1.1"
# Generating fake strings and data.
gem "faker", "~> 3.0"
# Concurrency helpers.
gem "concurrent-ruby", "~> 1.3.3"
# Time zone randomization for tests.
gem "zonebie", "~> 0.6.1"
# Encrypting admin passwords.
gem "bcrypt", "~> 3.1.12"
# Encrypting/decrypting database values.
gem "encryptor", "~> 3.0.0"
# Color output
gem "rainbow", "~> 3.1.1"
# Debug printing
gem "awesome_print", "~> 1.9.2"
# Deep freezing of objects.
gem "ice_nine", "~> 0.11.2"
# Testing SMTP directly.
gem "net-smtp", "~> 0.5.0"