show/hide this revision's text 4 Added command line -I alternative to environment variable hack

-rubygems is actually the same as -r ubygems.

It doesn't mess with your search path, as far as I understand, but I think it doesn't add anything to your -r search path either. I was able to do something like this:

ruby -rubygems -r /usr/lib/ruby/gems/myhelpfulclass-0.0.1/lib/MyHelpfulClass -e "puts MyHelpfulClass"

MyHelpfulClass.rb exists in the lib directory specified above.

That kind of sucks, but it at least demonstrates that you can have multiple -r equire directives.

As a slightly less ugly workaround, you can add additional items to the ruby library search path (colon delimited in *nix, semicolon delimited in windows).

export RUBYLIB=/usr/lib/ruby/gems/1.8/gems/myhelpfulclass-0.0.1/lib
ruby -rubygems -r MyHelpfulClass -e "puts MyHelpfulClass"

If you don't want to mess with the environment variable, you can add something to the load path yourself:

ruby -I /usr/lib/ruby/gems/1.8/gems/myhelpfulclass-0.0.1/lib \
   -rubygems -r MyHelpfulClass -e "puts MyHelpfulClass"
show/hide this revision's text 3 Noted ways to add item to ruby lib search path

-rubygems is actually the same as -r ubygems.

It doesn't mess with your search path, as far as I understand, but I think it doesn't add anything to your -r search path either. I was able to do something like this:

ruby -rubygems -r /usr/lib/ruby/gems/myhelpfulclass-0.0.1/lib/MyHelpfulClass -e "puts MyHelpfulClass"

MyHelpfulClass.rb exists in the lib directory specified above.

That kind of sucks, but it at least demonstrates that you can have multiple -r equire directives.

As a slightly less ugly workaround, you can add additional items to the ruby library search path (colon delimited in *nix, semicolon delimited in windows).

export RUBYLIB=/usr/lib/ruby/gems/1.8/gems/myhelpfulclass-0.0.1/lib
ruby -rubygems -r MyHelpfulClass -e "puts MyHelpfulClass"
show/hide this revision's text 2 Added notes about specifying additional -required things.

-rubygems is actually the same as -r ubygems.

It doesn't mess with your search path, as far as I understand, but I think it doesn't add anything to your -r search path either. I was able to do something like this:

ruby -rubygems -r /usr/lib/ruby/gems/myhelpfulclass-0.0.1/lib/MyHelpfulClass -e "puts MyHelpfulClass"

MyHelpfulClass.rb exists in the lib directory specified above.

That kind of sucks, but it at least demonstrates that you can have multiple -r equire directives.

show/hide this revision's text 1