aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMarkus Reiter2016-12-10 05:26:48 +0100
committerMarkus Reiter2017-01-25 14:34:57 +0100
commitd8416c969b11021735728a8c98f18fa28589c472 (patch)
treea2bdc74b3bdb3ae631ba3779ac12b7af4dedc936 /Library
parent8db4733c45633098d54a4a9e3e7852a035af0351 (diff)
downloadbrew-d8416c969b11021735728a8c98f18fa28589c472.tar.bz2
Remove `:console` task from Cask’s Rakefile.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cask/Gemfile5
-rw-r--r--Library/Homebrew/cask/Gemfile.lock23
-rw-r--r--Library/Homebrew/cask/Rakefile9
3 files changed, 5 insertions, 32 deletions
diff --git a/Library/Homebrew/cask/Gemfile b/Library/Homebrew/cask/Gemfile
index 5c99338b8..dc5c43208 100644
--- a/Library/Homebrew/cask/Gemfile
+++ b/Library/Homebrew/cask/Gemfile
@@ -2,11 +2,6 @@ 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
diff --git a/Library/Homebrew/cask/Gemfile.lock b/Library/Homebrew/cask/Gemfile.lock
index 4bdf2d0f6..28c05c655 100644
--- a/Library/Homebrew/cask/Gemfile.lock
+++ b/Library/Homebrew/cask/Gemfile.lock
@@ -14,36 +14,26 @@ GEM
specs:
ansi (1.5.0)
builder (3.2.2)
- byebug (9.0.6)
- codecov (0.1.6)
+ codecov (0.1.9)
json
simplecov
url
- coderay (1.1.1)
diff-lcs (1.2.5)
docile (1.1.5)
json (2.0.2)
metaclass (0.0.4)
- method_source (0.8.2)
- minitest (5.9.1)
- minitest-reporters (1.1.12)
+ minitest (5.10.1)
+ minitest-reporters (1.1.13)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
mocha (1.2.1)
metaclass (~> 0.0.1)
- parallel (1.9.0)
+ parallel (1.10.0)
parallel_tests (2.10.0)
parallel
- pry (0.10.4)
- coderay (~> 1.1.0)
- method_source (~> 0.8.1)
- slop (~> 3.4)
- pry-byebug (3.4.0)
- byebug (~> 9.0)
- pry (~> 0.10)
- rake (11.3.0)
+ rake (12.0.0)
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
@@ -64,7 +54,6 @@ GEM
rspec (>= 3, < 4)
ruby-progressbar (1.8.1)
simplecov-html (0.10.0)
- slop (3.6.0)
url (0.3.2)
PLATFORMS
@@ -76,8 +65,6 @@ DEPENDENCIES
minitest-reporters
mocha (~> 1.1)
parallel_tests
- pry
- pry-byebug
rake
rspec (~> 3.5)
rspec-its
diff --git a/Library/Homebrew/cask/Rakefile b/Library/Homebrew/cask/Rakefile
index 39398aa19..b2b9fce52 100644
--- a/Library/Homebrew/cask/Rakefile
+++ b/Library/Homebrew/cask/Rakefile
@@ -15,12 +15,3 @@ namespace :test do
end
end
end
-
-desc "Open a REPL for debugging and experimentation"
-task :console do
- require "pry"
- require "pry-byebug"
- require "hbc"
- ARGV.clear
- Hbc.pry
-end