Travis: Collecting the config

- comment
  - tighter matrix
  - pull out development dependencies into the Gemfile
This commit is contained in:
Olle Jonsson
2016-09-22 18:20:58 +02:00
parent cdd4b7f201
commit 99c58d3b94
5 changed files with 24 additions and 25 deletions
+11 -5
View File
@@ -2,14 +2,20 @@ source "https://rubygems.org"
gemspec
group :test do
group :development do
end
group :development, :test do
gem "rake"
gem "bundler"
gem "rubocop"
gem "overcommit"
gem "overcommit", ">= 0.31"
gem "rubocop", ">= 0.43"
end
group :test do
gem "coveralls", "~>0.8", require: false
gem "simplecov", "~>0.10", require: false
gem "codeclimate-test-reporter", "~>0.4"
# JSON 2.0.1 is ruby 2.0+
gem "json", "< 2.0"
gem "json"
gem "rspec", "< 4"
end