@@ -5,7 +5,7 @@ ruby '2.6.3'
55
66# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
77gem 'rails' , '~> 5.2.3'
8- #For database
8+ # For database
99gem 'pg'
1010# Use Puma as the app server
1111gem 'puma' , '~> 3.11'
@@ -30,16 +30,20 @@ gem 'bootsnap', '>= 1.1.0', require: false
3030
3131group :development , :test do
3232 # Call 'byebug' anywhere in the code to stop execution and get a debugger console
33- gem 'byebug' , platforms : [ : mri, : mingw, : x64_mingw]
33+ gem 'byebug' , platforms : %i[ mri mingw x64_mingw ]
3434end
3535
3636group :development do
3737 # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
38- gem 'web-console' , '>= 3.3.0'
3938 gem 'listen' , '>= 3.0.5' , '< 3.2'
39+ gem 'web-console' , '>= 3.3.0'
4040 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
4141 gem 'spring'
4242 gem 'spring-watcher-listen' , '~> 2.0.0'
43+ # Brakeman is a static analysis tool which checks Ruby on Rails applications for security vulnerabilities.
44+ gem 'brakeman'
45+ # RuboCop is a Ruby static code analyzer and code formatter
46+ gem 'rubocop' , require : false
4347end
4448
4549group :test do
@@ -51,4 +55,4 @@ group :test do
5155end
5256
5357# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
54- gem 'tzinfo-data' , platforms : [ : mingw, : mswin, : x64_mingw, : jruby]
58+ gem 'tzinfo-data' , platforms : %i[ mingw mswin x64_mingw jruby ]
0 commit comments