@@ -4,11 +4,11 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
4
4
ruby '2.7.2'
5
5
6
6
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7
- gem 'rails' , '~> 5.2.6'
7
+ gem 'rails'
8
8
# Use postgresql as the database for Active Record
9
- gem 'pg' , '>= 0.18' , '< 2.0'
9
+ gem 'pg'
10
10
# Use Puma as the app server
11
- gem 'puma' , '~> 3.11'
11
+ gem 'puma'
12
12
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
13
13
# gem 'jbuilder', '~> 2.5'
14
14
# Use Redis adapter to run Action Cable in production
@@ -23,7 +23,7 @@ gem 'puma', '~> 3.11'
23
23
# gem 'capistrano-rails', group: :development
24
24
25
25
# Reduces boot times through caching; required in config/boot.rb
26
- gem 'bootsnap' , '>= 1.1.0' , require : false
26
+ gem 'bootsnap'
27
27
28
28
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
29
29
gem 'rack-cors'
@@ -42,8 +42,6 @@ gem 'newrelic_rpm'
42
42
group :development , :test do
43
43
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
44
44
gem 'byebug' , platforms : %i[ mri mingw x64_mingw ]
45
- gem 'factory_bot_rails'
46
- gem 'rspec-rails'
47
45
end
48
46
49
47
group :development do
@@ -54,5 +52,10 @@ group :development do
54
52
gem 'spring-watcher-listen' , '~> 2.0.0'
55
53
end
56
54
55
+ group :test do
56
+ gem 'factory_bot_rails'
57
+ gem 'rspec-rails'
58
+ end
59
+
57
60
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
58
61
gem 'tzinfo-data' , platforms : %i[ mingw mswin x64_mingw jruby ]
0 commit comments