aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/Gemfile
blob: 5c99338b86c99d15a579d0a6ffdd03fd8c8cde5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
source "https://rubygems.org"

gem "rake"

group :debug do
  gem "pry"
  gem "pry-byebug", platforms: :mri
end

group :test do
  # This is SimpleCov v0.12.0 with two fixes merged on top, that finally resolve
  # 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. For details, see:
  #  - https://github.com/colszowka/simplecov/pull/513
  #  - https://github.com/colszowka/simplecov/pull/520
  gem "simplecov", "0.12.0",
    git: "https://github.com/colszowka/simplecov.git",
    branch: "master",
    ref: "83d8031ddde0927f87ef9327200a98583ca18d77",
    require: false
  gem "codecov", require: false
  gem "minitest", "~> 5.9"
  gem "minitest-reporters"
  gem "mocha", "~> 1.1", require: false
  gem "parallel_tests"
  gem "rspec", "~> 3.5"
  gem "rspec-its", require: false
  gem "rspec-wait", require: false
end