SimpleCov 0.12.0 brings some moderate speed improvements and soon (sadly not yet) can be switched back to a stable release. Update to matching Coveralls release, fortunately with fewer dependencies than before.
22 lines
868 B
Ruby
22 lines
868 B
Ruby
source "https://rubygems.org"
|
|
|
|
gem "mocha", "~> 1.1"
|
|
gem "minitest", "~> 5.3"
|
|
gem "rake", "~> 10.3"
|
|
|
|
group :coverage do
|
|
# This is SimpleCov v0.12.0 with one PR merged on top, that finally resolves
|
|
# all issues with parallel tests, uncovered files, and tracked files. Switch
|
|
# back to stable as soon as v0.12.1 or v0.13.0 is released. See pull request
|
|
# <https://github.com/Homebrew/legacy-homebrew/pull/48250> for full details.
|
|
gem "simplecov", "0.12.0",
|
|
:git => "https://github.com/colszowka/simplecov.git",
|
|
:branch => "master", # commit 257e26394c464c4ab388631b4eff1aa98c37d3f1
|
|
:require => false
|
|
gem "coveralls", "0.8.14", :require => false
|
|
|
|
# We need to pin the version of this Coveralls dependency because it is the
|
|
# last one to support Ruby 1.8. Remove as soon as we stop using Ruby 1.8.
|
|
gem "json", "~> 1.8", :require => false
|
|
end
|