我正在尝试使用捆绑器安装 git 版本的 heckle。
一开始我试过
gem "heckle", :github => 'phiggins/heckle', :branch => "ruby_parser"
但这没有用,与
Could not find gem 'heckle (>= 0) ruby' in git://github.com/phiggins/heckle.git (at master).
Source does not contain any versions of 'heckle (>= 0) ruby'
然后我根据https://stackoverflow.com/a/3952045/38765指定了 heckle 的版本,但 bundler 不会尝试安装 heckle 的任何依赖项:
$ bundle exec heckle
给我
cannot load such file -- ruby_parser (LoadError)
当没有 .gemspec 时,如何告诉 bundler 找到 heckle 的依赖项?