7

有没有办法从它的 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 [""]

4

2 回答 2

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 文件的名称中,所以我必须提前知道这一点。

于 2013-10-14T19:42:45.433 回答
5

很老的问题,但您可以使用http://community.opscode.com/cookbooks/gem_specific_install

我不积极维护它,但我对新的 PR 很开放

于 2014-03-11T16:16:52.963 回答