-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (41 loc) · 947 Bytes
/
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 3'
gem 'rails', '~> 8'
gem 'sqlite3', '~> 2'
gem 'puma', '~> 6'
gem 'propshaft'
gem 'jsbundling-rails'
gem 'cssbundling-rails'
gem 'turbo-rails'
gem 'stimulus-rails'
gem 'solid_cache', '~> 1'
gem 'solid_queue', '~> 1'
gem 'mission_control-jobs'
# gem 'image_processing', '~> 1'
gem 'aws-sdk-s3', require: false
gem 'active_storage_validations'
gem 'bootsnap', '~> 1', require: false
gem 'bootstrap_form'
gem 'bcrypt', '~> 3'
gem 'scrypt', '~> 3'
gem 'skylight'
gem 'sentry-rails'
gem 'net-smtp'
group :development, :test do
gem 'factory_bot_rails'
gem 'brakeman', require: false
gem 'rubocop-rails-omakase', require: false
end
group :development do
gem 'web-console'
gem 'pry'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'dockerfile-rails'
end
group :test do
gem 'capybara'
gem 'selenium-webdriver'
end