diff options
| author | Markus Reiter | 2017-01-26 16:57:30 +0100 |
|---|---|---|
| committer | Markus Reiter | 2017-01-26 16:57:30 +0100 |
| commit | e65150412ce33b95ca993f5711949eeda604f837 (patch) | |
| tree | 33db64d4ef52bf289e8c46b4e40c5fe93758ba09 | |
| parent | 0fc4a52c6c34deaee59c55b1d7ff3ea62eda2b36 (diff) | |
| download | brew-e65150412ce33b95ca993f5711949eeda604f837.tar.bz2 | |
Add `require "bundler/setup“` to `cask-tests`.
| -rwxr-xr-x | Library/Homebrew/cask/cmd/brew-cask-tests.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/cask/cmd/brew-cask-tests.rb b/Library/Homebrew/cask/cmd/brew-cask-tests.rb index 94902e41c..002d357dd 100755 --- a/Library/Homebrew/cask/cmd/brew-cask-tests.rb +++ b/Library/Homebrew/cask/cmd/brew-cask-tests.rb @@ -21,6 +21,8 @@ repo_root.cd do system "bundle", "install" end + require "bundler/setup" + rspec = ARGV.flag?("--rspec") || !ARGV.flag?("--minitest") minitest = ARGV.flag?("--minitest") || !ARGV.flag?("--rspec") |
