有没有办法从Github repo(或者更具体地说,是fork)而不是Rubygems安装Ruby gem?
我试过
gem_package 'some_gem' do
source 'git://github.com:user/some_gem.git'
end
我得到了
Gem::Exception
--------------
Cannot load gem at [git://github.com:user/some_gem.git] in /
Resource Declaration:
---------------------
# In /tmp/vagrant-chef-1/chef-solo-1/cookbooks/some_recipe/recipes/default.rb
15: gem_package 'some_gem' do
16: source 'git://github.com:user/some_gem.git'
17: end
18:
Compiled Resource:
------------------
# Declared in /tmp/vagrant-chef-1/chef-solo-1/cookbooks/some_gem/recipes/default.rb:15:in `from_file'
gem_package("some_gem") do
provider Chef::Provider::Package::Rubygems
action :install
retries 0
retry_delay 2
package_name "some_gem"
source "git://github.com:user/some_gem.git"
cookbook_name :some_cookbook
recipe_name "default"
end
我也尝试使用错误https://github.com/user/some_gem
的来源Illformed requirement [""]
。
答案 0 :(得分:9)
我不确定这是完成任务的最佳方式,但我能够通过这种方式完成:
# temporarily install gem from fork
git '/usr/local/src/mosql' do
repository 'https://github.com/roadtrippers/mosql.git'
end
execute 'gem build mosql.gemspec' do
cwd '/usr/local/src/mosql'
end
gem_package 'mosql' do
source '/usr/local/src/mosql/mosql-0.2.0.gem'
end
其中mosql是我正在安装的分叉gem的名称。
这里的注意事项是版本被放入.gem文件的名称中,所以我必须提前知道。
答案 1 :(得分:5)
相当陈旧的问题,但您可以使用http://community.opscode.com/cookbooks/gem_specific_install
我没有积极维护它,但我对新的PR非常开放