30 lines
901 B
Ruby
Raw Normal View History

2016-08-18 22:11:42 +03:00
source "https://rubygems.org"
gem "rake"
group :debug do
gem "pry"
gem "pry-byebug", platforms: :mri
end
group :test do
2016-09-22 21:06:51 +02:00
# 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",
2016-10-23 23:22:39 +02:00
branch: "master",
ref: "83d8031ddde0927f87ef9327200a98583ca18d77",
2016-09-22 21:06:51 +02:00
require: false
gem "codecov", require: false
2016-10-23 23:22:39 +02:00
gem "minitest", "~> 5.9"
2016-08-18 22:11:42 +03:00
gem "minitest-reporters"
2016-10-23 23:22:39 +02:00
gem "mocha", "~> 1.1", require: false
2016-09-20 00:02:04 +01:00
gem "parallel_tests"
2016-10-23 23:22:39 +02:00
gem "rspec", "~> 3.5"
2016-08-18 22:11:42 +03:00
gem "rspec-its", require: false
gem "rspec-wait", require: false
end