aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2017-01-26 12:01:24 +0000
committerMike McQuaid2017-01-26 12:01:24 +0000
commitb5f1db5f291dfbba54f373dbfac13c3be711d756 (patch)
tree71bb2430a972c0dea829974ef7395219bfab855d
parent1f97e3186a117541f127f6e52ce77238a2791147 (diff)
downloadbrew-b5f1db5f291dfbba54f373dbfac13c3be711d756.tar.bz2
*/Gemfile*: remove rake, version pins, master simplecov.
We’re upgrading SimpleCov to 0.13.0 so let’s update the rest of our gems while we’re at it.
-rw-r--r--Library/Homebrew/cask/Gemfile19
-rw-r--r--Library/Homebrew/cask/Gemfile.lock37
-rw-r--r--Library/Homebrew/test/Gemfile18
-rw-r--r--Library/Homebrew/test/Gemfile.lock37
4 files changed, 36 insertions, 75 deletions
diff --git a/Library/Homebrew/cask/Gemfile b/Library/Homebrew/cask/Gemfile
index dc5c43208..5572387cc 100644
--- a/Library/Homebrew/cask/Gemfile
+++ b/Library/Homebrew/cask/Gemfile
@@ -1,24 +1,13 @@
source "https://rubygems.org"
-gem "rake"
-
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 "simplecov", require: false
gem "codecov", require: false
- gem "minitest", "~> 5.9"
+ gem "minitest"
gem "minitest-reporters"
- gem "mocha", "~> 1.1", require: false
+ gem "mocha", require: false
gem "parallel_tests"
- gem "rspec", "~> 3.5"
+ gem "rspec"
gem "rspec-its", require: false
gem "rspec-wait", require: false
end
diff --git a/Library/Homebrew/cask/Gemfile.lock b/Library/Homebrew/cask/Gemfile.lock
index 28c05c655..700f093d1 100644
--- a/Library/Homebrew/cask/Gemfile.lock
+++ b/Library/Homebrew/cask/Gemfile.lock
@@ -1,29 +1,18 @@
-GIT
- remote: https://github.com/colszowka/simplecov.git
- revision: 83d8031ddde0927f87ef9327200a98583ca18d77
- ref: 83d8031ddde0927f87ef9327200a98583ca18d77
- branch: master
- specs:
- simplecov (0.12.0)
- docile (~> 1.1.0)
- json (>= 1.8, < 3)
- simplecov-html (~> 0.10.0)
-
GEM
remote: https://rubygems.org/
specs:
ansi (1.5.0)
- builder (3.2.2)
+ builder (3.2.3)
codecov (0.1.9)
json
simplecov
url
- diff-lcs (1.2.5)
+ diff-lcs (1.3)
docile (1.1.5)
- json (2.0.2)
+ json (2.0.3)
metaclass (0.0.4)
minitest (5.10.1)
- minitest-reporters (1.1.13)
+ minitest-reporters (1.1.14)
ansi
builder
minitest (>= 5.0)
@@ -31,9 +20,8 @@ GEM
mocha (1.2.1)
metaclass (~> 0.0.1)
parallel (1.10.0)
- parallel_tests (2.10.0)
+ parallel_tests (2.13.0)
parallel
- rake (12.0.0)
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
@@ -53,6 +41,10 @@ GEM
rspec-wait (0.0.9)
rspec (>= 3, < 4)
ruby-progressbar (1.8.1)
+ simplecov (0.13.0)
+ docile (~> 1.1.0)
+ json (>= 1.8, < 3)
+ simplecov-html (~> 0.10.0)
simplecov-html (0.10.0)
url (0.3.2)
@@ -61,15 +53,14 @@ PLATFORMS
DEPENDENCIES
codecov
- minitest (~> 5.9)
+ minitest
minitest-reporters
- mocha (~> 1.1)
+ mocha
parallel_tests
- rake
- rspec (~> 3.5)
+ rspec
rspec-its
rspec-wait
- simplecov (= 0.12.0)!
+ simplecov
BUNDLED WITH
- 1.13.6
+ 1.13.7
diff --git a/Library/Homebrew/test/Gemfile b/Library/Homebrew/test/Gemfile
index a7e9eb834..2a66086bd 100644
--- a/Library/Homebrew/test/Gemfile
+++ b/Library/Homebrew/test/Gemfile
@@ -1,20 +1,10 @@
source "https://rubygems.org"
-gem "mocha", "~> 1.1"
-gem "minitest", "~> 5.3"
-gem "rake", "~> 10.3"
-gem "parallel_tests", "~> 2.9"
+gem "mocha"
+gem "minitest"
+gem "parallel_tests"
group :coverage 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 "simplecov", require: false
gem "codecov", require: false
end
diff --git a/Library/Homebrew/test/Gemfile.lock b/Library/Homebrew/test/Gemfile.lock
index aa4800f34..8289fcc20 100644
--- a/Library/Homebrew/test/Gemfile.lock
+++ b/Library/Homebrew/test/Gemfile.lock
@@ -1,31 +1,23 @@
-GIT
- remote: https://github.com/colszowka/simplecov.git
- revision: 83d8031ddde0927f87ef9327200a98583ca18d77
- ref: 83d8031ddde0927f87ef9327200a98583ca18d77
- branch: master
- specs:
- simplecov (0.12.0)
- docile (~> 1.1.0)
- json (>= 1.8, < 3)
- simplecov-html (~> 0.10.0)
-
GEM
remote: https://rubygems.org/
specs:
- codecov (0.1.6)
+ codecov (0.1.9)
json
simplecov
url
docile (1.1.5)
- json (2.0.2)
+ json (2.0.3)
metaclass (0.0.4)
- minitest (5.9.1)
+ minitest (5.10.1)
mocha (1.2.1)
metaclass (~> 0.0.1)
- parallel (1.9.0)
- parallel_tests (2.10.0)
+ parallel (1.10.0)
+ parallel_tests (2.13.0)
parallel
- rake (10.5.0)
+ simplecov (0.13.0)
+ docile (~> 1.1.0)
+ json (>= 1.8, < 3)
+ simplecov-html (~> 0.10.0)
simplecov-html (0.10.0)
url (0.3.2)
@@ -34,11 +26,10 @@ PLATFORMS
DEPENDENCIES
codecov
- minitest (~> 5.3)
- mocha (~> 1.1)
- parallel_tests (~> 2.9)
- rake (~> 10.3)
- simplecov (= 0.12.0)!
+ minitest
+ mocha
+ parallel_tests
+ simplecov
BUNDLED WITH
- 1.13.6
+ 1.13.7