-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
53 lines (43 loc) · 1.44 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.4'
gem 'rubyzip', '~> 2.3' # be intentional about the upgrade to 3.0
gem 'bootsnap', '>= 1.4', require: false # boot caching, see config/boot.rb
gem 'cssbundling-rails'
gem 'jbuilder', '~> 2.11'
gem 'jsbundling-rails'
gem 'puma', '~> 6.4'
gem 'rack', '~>3.0'
gem 'rails', '~> 7.0'
gem 'redcarpet', '~> 3.6' # allows rendering Markdown
gem 'rubocop-rails'
gem 'sass-rails', '>= 6'
gem 'sqlite3', '~> 1.4'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] # similar to 'pry', call 'byebug' for a debugger
end
group :development do
gem 'foreman'
gem 'httparty', '~> 0.21'
gem 'listen', '~> 3.3' # performance popup; https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'nokogiri', '~> 1.16'
gem 'rack-mini-profiler', '~> 3.0'
gem 'spring' # https://github.com/rails/spring
gem 'web-console', '>= 4.1.0' # insert 'console' in code to get an interactive console
end
group :test do
gem 'capybara', '>= 3.26'
gem 'factory_bot', '~> 6.0'
gem 'factory_bot_rails'
gem 'rspec'
gem 'rspec-rails'
gem 'rubocop-rspec'
gem 'selenium-webdriver'
end
gem "rubocop-capybara", "~> 2.21"
gem "rubocop-factory_bot", "~> 2.26"
gem "rubocop-rspec_rails", "~> 2.30"