在Gemfile中引用(未发布的)activesupport 4.0 gem

时间:2013-01-26 12:03:32

标签: bundler gemfile ruby-on-rails-4

有没有办法在Gemfile中引用位于Github上的Rails git repo的子目录中的任何Rails 4 gems(activesupport,activerecord,activemodel等)?我有一个库我的测试我想针对activesupport 4运行,并且由于没有该gem的发布版本,我必须引用git repo。

1 个答案:

答案 0 :(得分:4)

将Bundler指向git存储库。 Bundler将在根目录或具有gems名称的目录中搜索gem。

source :rubygems

gem 'activerecord', :git => 'git@github.com:rails/rails.git'