aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dev-cmd/ruby.rb
diff options
context:
space:
mode:
authorSteven Peters2018-02-28 09:31:29 -0800
committerSteven Peters2018-02-28 09:31:29 -0800
commitdb615a419afb99f186fb6df7c859f7538a7524ba (patch)
tree7337150b89eb9e61516e39146eaf02508371d4cb /Library/Homebrew/dev-cmd/ruby.rb
parent4176399537f6cff28e6e94b5473870f3d89d1024 (diff)
downloadbrew-db615a419afb99f186fb6df7c859f7538a7524ba.tar.bz2
dev-cmd/ruby: fix path to dev-cmd/irb and add test
Diffstat (limited to 'Library/Homebrew/dev-cmd/ruby.rb')
-rwxr-xr-xLibrary/Homebrew/dev-cmd/ruby.rb2
1 files changed, 1 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