如何在gemfile中指向宝石分支路径.
这是我在做什么
gem 'rails',path: '/home/ubuntu/workspace/Fork/rails',:branch => 'any_of'
但是当我运行捆绑更新时,它不会显示任何分支,如链轮 – 轨道.
Using sprockets-rails (2.0.0.rc4) from git://github.com/rails/sprockets-rails.git (at master) Using rails (4.1.0.beta) from source at /home/ubuntu/workspace/Fork/rails
有没有打字错误?
解决方法
在你的应用程序中运行这个命令.
bundle config local.rails /home/ubuntu/workspace/Fork/rails
然后在您的Gemfile中,指定将被覆盖的github源.
gem 'rails',:github => 'rails/rails',:branch => 'any_of'