Lock to earlier version of simplecov for older Ruby platforms (#32)

* Lock to earlier version of simplecov for older Ruby platforms

Necessary due to the loose json dependency detailed in colszowka/simplecov#511

* Stop running tests on Rubinius (I'm sorry, rbx users!)
This commit is contained in:
Joseph Wynn 2016-09-02 08:41:42 +01:00 committed by GitHub
parent 4ca0a40486
commit 40cc9cbad7
2 changed files with 4 additions and 1 deletions

View File

@ -8,4 +8,3 @@ rvm:
- 2.1 - 2.1
- 2.0 - 2.0
- 1.9 - 1.9
- rbx-2

View File

@ -7,4 +7,8 @@ group :development do
gem 'test-unit', '~> 3.1' gem 'test-unit', '~> 3.1'
gem 'coveralls', :require => false gem 'coveralls', :require => false
platform :ruby_18, :ruby_19 do
gem 'simplecov', '>= 0.10', '< 0.12'
end
end end