2016-09-17 16:14:13 +01:00

18 lines
647 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 "codecov", require: false
end