Reorganize Gemfile dependencies

This commit is contained in:
Josh Hagins 2016-01-08 05:18:59 -05:00
parent 5f6959a34a
commit c1faa3350d
1 changed files with 7 additions and 3 deletions

10
Gemfile
View File

@ -1,10 +1,15 @@
source 'https://rubygems.org'
gem 'rake'
group :debug do
gem 'pry'
gem 'pry-byebug', platforms: :mri
end
group :development do
gem 'rubocop', github: 'bbatsov/rubocop', branch: 'master'
gem 'rubocop-cask', '~> 0.2'
gem 'pry'
gem 'pry-byebug', platforms: :mri
end
group :release do
@ -16,6 +21,5 @@ group :test do
gem 'minitest', '5.4.1'
gem 'minitest-reporters'
gem 'mocha', '1.1.0', :require => false
gem 'rake'
gem 'rspec', '~> 3.0.0'
end