1

jruby 1.7.2 を使用して、新しいレール アプリをセットアップしています。Bundler は、使用するのに必要な (Java/jruby ベースの gem) を見つけられないようです:

> bundle
Could not find gem 'neo4j-core (>= 0) ruby' in the gems available on this machine.

パスを指定すると、次のようになります。

> bundle
Fetching gem metadata from https://rubygems.org/.......
Fetching gem metadata from https://rubygems.org/..
Could not find gem 'neo4j-core (>= 0) ruby' in source at ./vendor/gems/neo4j-core.
Source contains 'neo4j-core' at: 2.0.1

おそらくバンドラーはそのプラットフォームについて混乱しているのでしょうruby。を実行したところruby -e "puts RUBY_PLATFORM"、次のことがわかりました。java

4

1 に答える 1

10

Gemfile.lockを削除することで解決:https ://github.com/carlhuda/bundler/issues/2043

于 2012-08-07T15:01:54.283 に答える