Skip to content

Commit

Permalink
Order Gemfile gems (github-changelog-generator#460)
Browse files Browse the repository at this point in the history
Order Gemfile gems A-Z; add ruby version marker
  • Loading branch information
olleolleolle authored Dec 2, 2016
1 parent 0b88c3b commit 238f779
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# frozen_string_literal: true
source "https://rubygems.org"

ruby RUBY_VERSION

gemspec

group :development, :test do
gem "rake"
gem "bundler"
gem "overcommit", ">= 0.31"
gem "rake"
gem "rubocop", ">= 0.43"
end

Expand All @@ -15,16 +17,12 @@ group :development do
end

group :test do
gem "vcr"
gem "multi_json"
gem "webmock"
gem "coveralls", "~>0.8", require: false
gem "simplecov", "~>0.10", require: false
gem "codeclimate-test-reporter", "~>0.4"
if RUBY_VERSION > "2"
gem "json", "~> 2.0", ">= 2.0.2"
else
gem "json"
end
gem "coveralls", "~>0.8", require: false
gem "json"
gem "multi_json"
gem "rspec", "< 4"
gem "simplecov", "~>0.10", require: false
gem "vcr"
gem "webmock"
end

0 comments on commit 238f779

Please sign in to comment.