-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
79 lines (71 loc) · 1.96 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.6'
gem 'pg', '~> 1.5'
gem 'puma', '~> 6.0'
gem 'rails', '~> 7.0.8'
gem 'dotenv-rails', groups: [:test, :development]
gem 'administrate'
gem 'aws-sdk-rails', '~> 3'
gem 'aws-sdk-s3', require: false
gem 'bcrypt', '~> 3.1.7'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'concurrent-ruby', '1.3.4' # lock should go away with rails 7.1
gem 'connection_pool'
gem 'cssbundling-rails'
gem 'devise'
gem 'hiredis'
gem 'inline_svg'
gem 'jbuilder', '~> 2.7'
gem 'jsbundling-rails'
gem 'markdown-rails'
gem 'paranoia', '~> 2.6'
gem 'phonelib'
gem 'pundit'
gem 'redis'
gem 'rspec'
gem 'ruby-vips'
gem 'sablon'
gem 'stimulus-rails'
gem 'tailwindcss-rails', '~> 3.3.1'
gem 'turbo-rails'
gem 'view_component', '~> 2.35.0', require: 'view_component/engine'
group :development, :test do
gem 'annotate', '~> 3.2'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'factory_bot_rails'
gem 'faker'
gem 'jasmine'
gem 'license_finder', '~> 6.0'
gem 'teaspoon-jasmine'
end
group :development do
gem 'listen', '~> 3.3'
gem 'pivotal_git_scripts'
gem 'rack-mini-profiler', '~> 2.0'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'web-console', '>= 4.1.0'
end
group :test do
gem 'axe-core-capybara'
gem 'axe-core-rspec'
gem 'capybara', '~> 3.40.0'
gem 'capybara-email', '~> 3.0'
gem 'capybara-screenshot', '~> 1.0', require: false
gem 'database_cleaner-active_record'
gem 'pundit-matchers', '~> 1.6'
gem 'rspec-activemodel-mocks'
gem 'rspec-collection_matchers'
gem 'rspec-html-matchers'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'timecop'
gem 'vcr'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]