有没有办法在Gemfile中引用位于Github上的Rails git repo的子目录中的任何Rails 4 gems(activesupport,activerecord,activemodel等)?我有一个库我的测试我想针对activesupport 4运行,并且由于没有该gem的发布版本,我必须引用git repo。
答案 0 :(得分:4)
将Bundler指向git存储库。 Bundler将在根目录或具有gems名称的目录中搜索gem。
source :rubygems
gem 'activerecord', :git => 'git@github.com:rails/rails.git'