Prev: Ruby confused about current directory?
Next: [ANN] Win32::Screenshot (old name win32screenshot) 0.0.4
From: Bruno Sousa on 27 May 2010 14:35 Hi! "# gem install RubyInline" installs its files in /root/.ruby_inline Files: ~# ls .ruby_inline/ Inline__ca4f.c Inline__ca4f.so Inline_ImageScience_cdab.c Inline_ImageScience_cdab.c.old Inline_ImageScience_cdab.so How can I change the default path for RubyInline instalation? -- Posted via http://www.ruby-forum.com/.
From: Paul Carey on 27 May 2010 15:48 > How can I change the default path for RubyInline instalation? I don't have it locally so I can't check, but it may well be INLINEDIR. Paul
From: Monty Williams on 27 May 2010 15:58 It is indeed INLINEDIR This has proved quite useful to me since my $HOME is shared among five different *nixes. -- Monty On 5/27/10 12:48 PM, Paul Carey wrote: >> How can I change the default path for RubyInline instalation? >> > I don't have it locally so I can't check, but it may well be INLINEDIR. > > Paul > >
From: Bruno Sousa on 27 May 2010 16:37
Using a certain rails app, I was having problems with permissions because rubyinline was inside /root folder. Added this line in config/environment.rb: ENV['INLINEDIR'] ||= '/var/www/olio/webapp/rails/trunk/tmp' Now, it works :) -- Posted via http://www.ruby-forum.com/. |