Problem installing warbler gem on linux - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T05:53:43Zhttp://stackoverflow.com/feeds/question/80726http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/80726/problem-installing-warbler-gem-on-linux1Problem installing warbler gem on linuxRob2008-09-17T07:13:52Z2009-10-10T17:42:39Z
<pre><code>> jruby -S gem install warbler
JRuby limited openssl loaded. gem install jruby-openssl for full support.
Successfully installed warbler-0.9.11
1 gem installed
Installing ri documentation for warbler-0.9.11...
Installing RDoc documentation for warbler-0.9.11...
> jruby -S warble
<snip>/jruby-1.1.4/bin/warble:1: undefined method `warble' for JRuby::Commands:Class (NoMethodError)
</code></pre>
<p>Any ideas why I don't get a warbler command in my jruby bin directory?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/80726/problem-installing-warbler-gem-on-linux/92779#927791Answer by Andrew Burgess for Problem installing warbler gem on linuxAndrew Burgess2008-09-18T13:59:20Z2008-09-18T13:59:20Z<p>The only thing that I can really think of is to ensure that your instance of JRuby is using gems by default. I ran into that problem a few times when using gems where I would forget to either set the environmental variable or pass in the switch to Ruby. I don't know if things are different for JRuby though.</p>
http://stackoverflow.com/questions/80726/problem-installing-warbler-gem-on-linux/1548574#15485740Answer by Vinod Singh for Problem installing warbler gem on linuxVinod Singh2009-10-10T17:42:39Z2009-10-10T17:42:39Z<p>Did you tried <code>gem install warbler</code> ? It worked like charm for me-</p>
<pre><code>C:\>gem install warbler
JRuby limited openssl loaded. gem install jruby-openssl for full support.
http://wiki.jruby.org/wiki/JRuby_Builtin_OpenSSL
Successfully installed jruby-jars-1.3.1
Successfully installed warbler-0.9.14
2 gems installed
Installing ri documentation for jruby-jars-1.3.1...
Installing ri documentation for warbler-0.9.14...
Installing RDoc documentation for jruby-jars-1.3.1...
Installing RDoc documentation for warbler-0.9.14...
</code></pre>