2

私のgemfileには次のものがあります:

 gem 'capistrano-cook', github: "subsis/capistrano-cook"

bundle installruby/rails コンソールで実行したときのエラー ログは次のとおりです: http://pastie.org/private/aftbq3rukjdthua4lfjzbw

C:\rails\app>bundle install
Unfortunately, a fatal error has occurred. Please see the Bundler
troubleshooting documentation at http://bit.ly/bundler-issues. Thanks!
C:/Ruby193/lib/ruby/gems/1.9.1/bundler/gems/capistrano-cook-d0d4f904a443/capistr
ano-cook.gemspec:17:in ``': No such file or directory - git ls-files (Errno::ENO

bundle install の実行時に Git Bash コンソールで正常に動作します。ただし、capistrano デプロイ ファイルで gem を要求すると、読み込まれません。結局インストールされていないようです。

bundler gem はバージョン 1.2.3 です。

C:\rails\app>gem show capistrano-cook
ERROR:  While executing gem ... (RuntimeError)
    Unknown command show

C:\rails\app>bundle show capistrano-cook
C:/Ruby193/lib/ruby/gems/1.9.1/bundler/gems/capistrano-cook-d0d4f904a443

C:\rails\app>
4

1 に答える 1

3

試す:

gem 'capistrano-cook', :git => 'git://github.com/subsis/capistrano-cook.git'
于 2013-02-16T18:13:05.493 に答える