-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
64 lines (57 loc) · 1.58 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.3'
gem 'pg', '~> 1.2'
gem 'active_storage_validations', '0.9.8'
gem 'acts_as_list'
gem 'bcrypt', '3.1.18'
gem 'bootsnap', '1.16.0', require: false
gem 'bootstrap-sass', '3.4.1'
gem 'bootstrap-will_paginate', '1.0.0'
gem 'dotenv-rails'
gem 'faker', '2.21.0'
gem 'image_processing', '1.12.2'
gem 'importmap-rails', '1.1.5'
gem 'jbuilder', '2.11.5'
gem 'meta-tags'
gem 'puma', '5.6.8'
gem 'rails', '7.0.4.3'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'sassc-rails', '2.1.2'
gem 'sitemap_generator'
gem 'sprockets-rails', '3.4.2'
gem 'sqlite3', '1.6.1'
gem 'stimulus-rails', '1.2.1'
gem 'turbo-rails', '1.4.0'
gem 'whenever', require: false
gem 'will_paginate', '3.3.1'
group :development, :test do
gem 'debug', '1.7.1', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'rspec-rails'
end
group :development do
gem 'irb', '1.10.0'
gem 'repl_type_completor', '0.1.2'
gem 'solargraph', '0.50.0'
gem 'web-console', '4.2.0'
end
group :test do
gem 'capybara'
gem 'guard', '2.18.0'
gem 'guard-minitest', '2.4.6'
gem 'launchy'
gem 'minitest', '5.18.0'
gem 'minitest-reporters', '1.6.0'
gem 'rails-controller-testing', '1.0.5'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
end
group :production do
# gem "pg", "1.3.5"
# gem "aws-sdk-s3", "1.114.0", require: false
end