在我的gemfile中我使用指向git和特定分支的gem。如何在vendor / gem文件夹中解压缩gem并指定分支?
gem 'devise-async', :git => 'git://github.com/mhfs/devise-async.git', :branch => 'master'
由于
答案 0 :(得分:2)
在您的Rails应用程序中执行bundle install
之后,您可以尝试bundle open devise-async
在编辑器中打开gem,然后将其保存下来?
还有bundle cache
在vendor/cache
中缓存了应用中所有已使用的宝石,但我不确切知道哪种宝石......
希望这有帮助!