Hi Guys, How can i change the RubyGem load path, so that requiring a gem from within my application loads it from a custom path instead of the system-wide repository? I've tried setting Gem.path and overriding Gem.default_path but none worked. Cheers
on 2008-11-20 01:50
on 2008-11-20 04:25
On Nov 19, 10:47 pm, Rodrigo Kochenburger <div...@gmail.com> wrote: > Hi Guys, > > How can i change the RubyGem load path, so that requiring a gem from > within my application loads it from a custom path instead of the > system-wide repository? > > I've tried setting Gem.path and overriding Gem.default_path but none > worked. > You should look into GEM_PATH and GEM_HOME environment variables. Merb is doing something similar, making their bundled gems first in the search of GEM_PATH. You can do something like this: require 'rubygems' Gem.clear_paths ENV['GEM_HOME'] = File.join(Dir.pwd, 'gems') ENV['GEM_PATH'] = File.join(Dir.pwd, 'gems') puts Gem.dir puts Gem.path Now you can do your show adding or removing gems from there ;-) HTH,
on 2008-11-20 13:20
On Nov 20, 1:23 am, Luis Lavena <luislav...@gmail.com> wrote: > > ENV['GEM_PATH'] = File.join(Dir.pwd, 'gems') > puts Gem.dir > puts Gem.path > > Now you can do your show adding or removing gems from there ;-) > > HTH, > -- > Luis Lavena Sweet! Thanks :)
on 2013-02-08 08:54
Rodrigo Kochenburger wrote in post #751168: > On Nov 20, 1:23 am, Luis Lavena <luislav...@gmail.com> wrote: >> >> ENV['GEM_PATH'] = File.join(Dir.pwd, 'gems') >> puts Gem.dir >> puts Gem.path >> >> Now you can do your show adding or removing gems from there ;-) >> >> HTH, >> -- >> Luis Lavena > > Sweet! Thanks :) Hi, i have problem ruby load path. I couldn't load image file in my codes. Why? My project file tree is lib/editor.rb lib/images/image.jpg lib/lang.rb lib/messages.rb lib/utils.rb myproject.gemspec and image.jpg is neccesary in my code. But i couldn't add :( why? It gives me error GLib::FileError: Failed to open file 'images/images.jpg': No such file or directory from /var/lib/gems/1.9.1/gems/MyPorject-1.0.0/lib/editor.rb:21:in `set_icon' And my project gemspec like this s.files = ['lib/editor.rb', 'lib/utils.rb', 'lib/messages.rb', 'lib/lang.rb','lib/images/images.jpg] s.require_paths = ["lib"]
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.