Moved some gem in the proper context

This commit is contained in:
echarp 2016-11-01 21:52:37 +01:00
parent 728a981811
commit 006116c6e9
1 changed files with 7 additions and 6 deletions

13
Gemfile
View File

@ -79,6 +79,13 @@ group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
# Call 'byebug' anywhere in the code to stop execution and get a debugger
# console
gem 'byebug'
# Scanning the Gemfile for insecure dependencies based on published CVEs
gem 'bundler-audit'
gem 'guard-rails', require: false
gem 'guard-migrate', require: false
gem 'guard-bundler', require: false
@ -97,15 +104,9 @@ group :test do
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger
# console
gem 'byebug'
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'bundler-audit'
end
group :development, :test, :assets do