-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
31 lines (23 loc) · 838 Bytes
/
Copy pathGemfile
File metadata and controls
31 lines (23 loc) · 838 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
28
29
30
31
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in scrapbook.gemspec.
gemspec
gem 'rails', "~> #{ENV.fetch('RAILS_VERSION', '7.0')}"
# Start debugger with binding.b or debugger [https://github.com/ruby/debug]
gem 'debug', '>= 1.0.0'
gem 'rails-controller-testing'
gem 'rspec'
gem 'rspec-rails'
gem 'rubocop', '~> 1.26', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'slim'
# For the test application, boxcar, in the test folder
if ENV.fetch('RAILS_VERSION', '7.0').to_i < 7
gem 'mail', '>= 2.8.0.rc1' # Remove when 2.8.0 released to support ruby 3.1
gem 'sprockets-rails', require: 'sprockets/railtie'
else
gem 'propshaft'
end