如何从github解压缩gem并指定分支?

时间:2012-10-12 18:25:23

标签: ruby-on-rails ruby-on-rails-3 github gem

在我的gemfile中我使用指向git和特定分支的gem。如何在vendor / gem文件夹中解压缩gem并指定分支?

gem 'devise-async', :git => 'git://github.com/mhfs/devise-async.git', :branch => 'master'

由于

1 个答案:

答案 0 :(得分:2)

在您的Rails应用程序中执行bundle install之后,您可以尝试bundle open devise-async在编辑器中打开gem,然后将其保存下来?

还有bundle cachevendor/cache中缓存了应用中所有已使用的宝石,但我不确切知道哪种宝石......

希望这有帮助!