aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/Gemfile
blob: b7666e551628f3cb51a83981dcee898ce030b253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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