Are ruby command line switches -rubygems & -r incompatible? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T07:34:24Z http://stackoverflow.com/feeds/question/124035 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/124035/are-ruby-command-line-switches-rubygems-r-incompatible 1 Are ruby command line switches -rubygems & -r incompatible? Purfideas 2008-09-23T21:31:24Z 2008-09-25T17:40:10Z <p>I recently converted a ruby library to a gem, which seemed to break the command line usability</p> <p>Worked fine as a library</p> <pre><code> $ ruby -r foobar -e 'p FooBar.question' # =&gt; "answer" </code></pre> <p>And as a gem, irb knows how to require a gem from command-line switches</p> <pre><code> $ irb -rubygems -r foobar irb(main):001:0&gt; FooBar.question # =&gt; "answer" </code></pre> <p>But the same fails for ruby itself:</p> <pre><code> $ ruby -rubygems -r foobar -e 'p FooBar.question' ruby: no such file to load -- foobar (LoadError) </code></pre> <p>must I now do this, which seems ugly: </p> <pre><code> ruby -rubygems -e 'require "foobar"; p FooBar.question' # =&gt; "answer" </code></pre> <p>Or is there a way to make the 2 switches work?</p> <p><em>Note</em>: I know the gem could add a bin/program for every useful method but I don't like to pollute the command line namespace unnecessarily</p> http://stackoverflow.com/questions/124035/are-ruby-command-line-switches-rubygems-r-incompatible/124069#124069 2 Answer by JasonTrue for Are ruby command line switches -rubygems & -r incompatible? JasonTrue 2008-09-23T21:39:03Z 2008-09-25T17:40:10Z <p>-rubygems is actually the same as -r ubygems.</p> <p>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:</p> <pre><code>ruby -rubygems -r /usr/lib/ruby/gems/myhelpfulclass-0.0.1/lib/MyHelpfulClass -e "puts MyHelpfulClass" </code></pre> <p>MyHelpfulClass.rb exists in the lib directory specified above.</p> <p>That kind of sucks, but it at least demonstrates that you can have multiple -r equire directives.</p> <p>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).</p> <pre><code>export RUBYLIB=/usr/lib/ruby/gems/1.8/gems/myhelpfulclass-0.0.1/lib ruby -rubygems -r MyHelpfulClass -e "puts MyHelpfulClass" </code></pre> <p>If you don't want to mess with the environment variable, you can add something to the load path yourself: </p> <pre><code>ruby -I /usr/lib/ruby/gems/1.8/gems/myhelpfulclass-0.0.1/lib \ -rubygems -r MyHelpfulClass -e "puts MyHelpfulClass" </code></pre> http://stackoverflow.com/questions/124035/are-ruby-command-line-switches-rubygems-r-incompatible/124078#124078 0 Answer by Orion Edwards for Are ruby command line switches -rubygems & -r incompatible? Orion Edwards 2008-09-23T21:40:39Z 2008-09-23T21:40:39Z <p>You can set the <code>RUBYOPT</code> environment variable to <code>rubygems</code> to tell ruby to always load gems without the command line switch.</p> <p><a href="http://www.rubygems.org/read/chapter/3" rel="nofollow">See here for reference</a></p> <p>You could either do this globally for your user profile, or as a one-off (on *nix) like this:</p> <pre><code>RUBYOPT=rubygems ruby -e 'p FooBar.question' </code></pre>