How to refer a local gem in ruby?

一曲冷凌霜 提交于 2019-12-20 23:23:58

问题


I pack some ruby code into a gem. I want to refer the code in the gem in some other code. So in the Gemfile I specify the gem's name, version, and local path. Like:

gem 'gemname','0.x', :path => 'RELATIVE_PATH_TO_GEM_FILE'

After bundle install, I see

Using gemname (0.x) from source at RELATIVE_PATH_TO_GEM_FILE

But when I run the code, it can't find the code in the gem. LOAD_PATH shows ABSOLUTE_PATH_TO_GEM_FILE/lib.

No wonder it can't find the code, there's only gem file under ABSOLUTE_PATH_TO_GEM_FILE. it's not unpacked. So there's no lib directory.

if I gem install that gem file into my system, then all works fine. I can see the gem file was unpacked into source code files. But my question is if it can refer the local gem file directly somehow?


回答1:


No, you can't refer to a .gem file directly.

In your terminology, you need to use an "unpacked" gem.

:path => '/foo/bar/'

where /foo/bar/ is a (gem) directory with lib/, etc.




回答2:


We made a local (not system-wide) gems location. We set these environment variables:

GEM_HOME=/path/to/rubygems-1.3.4
RUBYLIB=/path/to/rubygems-1.3.4/lib/

By setting those, we can then do 'gem install ...' to put the built gem into that directory, and ruby knows where to find them.



来源:https://stackoverflow.com/questions/6444827/how-to-refer-a-local-gem-in-ruby

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!