-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
27 lines (23 loc) · 829 Bytes
/
Gemfile
File metadata and controls
27 lines (23 loc) · 829 Bytes
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
source 'https://rubygems.org'
gem 'rails', '~> 7.0.0.alpha2', '>= 7.0.0.alpha2'
gem 'puma', '~> 5.0'
gem 'sassc-rails', '~> 2.1'
gem 'jbuilder', '~> 2.7'
gem 'bootsnap', '>= 1.4.4', require: false
group :development, :test do
# Start debugger with binding.b [https://github.com/ruby/debug]
gem 'debug', '>= 1.0.0', platforms: %i[mri mingw x64_mingw]
end
group :development do
gem 'web-console', '>= 4.1.0'
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler", ">= 2.3.3"
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem 'capybara', '>= 3.26'
gem 'selenium-webdriver', '>= 4.0.0.rc1'
gem 'webdrivers'
end