1
0
Fork 0

Move gem "byebug" to group "development"

This commit is contained in:
Alex Kotov 2018-11-23 01:23:10 +05:00
parent 816606c77f
commit 369d6db0a7
No known key found for this signature in database
GPG Key ID: 4E831250F47DE154
1 changed files with 3 additions and 4 deletions

View File

@ -36,10 +36,6 @@ gem 'bootsnap', '>= 1.1.0', require: false
gem 'pry-rails', '~> 0.3'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution
# and get a debugger console.
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# Automatic Ruby code style checking tool.
# Aims to enforce the community-driven Ruby Style Guide.
gem 'rubocop', '~> 0.60.0'
@ -49,6 +45,9 @@ group :development, :test do
end
group :development do
# Call 'byebug' anywhere in the code to stop execution
# and get a debugger console.
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'listen', '>= 3.0.5', '< 3.2'
# Access an interactive console on exception pages or by calling 'console'
# anywhere in the code.