diff options
| author | Mike McQuaid | 2018-02-28 18:09:21 +0000 | 
|---|---|---|
| committer | GitHub | 2018-02-28 18:09:21 +0000 | 
| commit | 9225dac27f88b325692b5b66a59c498cb48180a1 (patch) | |
| tree | 7337150b89eb9e61516e39146eaf02508371d4cb | |
| parent | 4176399537f6cff28e6e94b5473870f3d89d1024 (diff) | |
| parent | db615a419afb99f186fb6df7c859f7538a7524ba (diff) | |
| download | brew-9225dac27f88b325692b5b66a59c498cb48180a1.tar.bz2 | |
Merge pull request #3853 from scpeters/fix_brew_ruby
dev-cmd/ruby: fix path to dev-cmd/irb and add test
| -rwxr-xr-x | Library/Homebrew/dev-cmd/ruby.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/test/dev-cmd/ruby_spec.rb | 13 | 
2 files changed, 14 insertions, 1 deletions
| diff --git a/Library/Homebrew/dev-cmd/ruby.rb b/Library/Homebrew/dev-cmd/ruby.rb index 2df212301..c5696d6bb 100755 --- a/Library/Homebrew/dev-cmd/ruby.rb +++ b/Library/Homebrew/dev-cmd/ruby.rb @@ -8,6 +8,6 @@ module Homebrew    module_function    def ruby -    exec ENV["HOMEBREW_RUBY_PATH"], "-I#{HOMEBREW_LIBRARY_PATH}", "-rglobal", "-rcmd/irb", *ARGV +    exec ENV["HOMEBREW_RUBY_PATH"], "-I#{HOMEBREW_LIBRARY_PATH}", "-rglobal", "-rdev-cmd/irb", *ARGV    end  end diff --git a/Library/Homebrew/test/dev-cmd/ruby_spec.rb b/Library/Homebrew/test/dev-cmd/ruby_spec.rb new file mode 100644 index 000000000..e05bccc83 --- /dev/null +++ b/Library/Homebrew/test/dev-cmd/ruby_spec.rb @@ -0,0 +1,13 @@ +describe "brew ruby", :integration_test do +  it "executes ruby code with Homebrew's libraries loaded" do +    expect { brew "ruby", "-e", "exit 0" } +      .to be_a_success +      .and not_to_output.to_stdout +      .and not_to_output.to_stderr + +    expect { brew "ruby", "-e", "exit 1" } +      .to be_a_failure +      .and not_to_output.to_stdout +      .and not_to_output.to_stderr +  end +end | 
