从gem中找到文件的绝对路径的正确方法是什么?换句话说,假设我在gem_install_path / mygem / lib / mygem.rb中,我想要通往gem_install_path / mygem / foo /的路径.得到这个的正确方法是什么?
解决方法
目前尚不清楚您想要哪条路径,但可能下列其中一条路径可以满足您的需求:
Gem.loaded_specs["mygem"].base_dir Gem.loaded_specs["mygem"].full_gem_path Gem.loaded_specs["mygem"].gem_dir Gem.loaded_specs["mygem"].gems_dir