私はレール、neo4j.rb、rspec を初めて試しているので、知識のある人にとっては非常に簡単な解決策になるかもしれません。これは基本的に私がやったことです:
(I am using jruby)
rails new graphtest -m http://andreasronge.github.com/neo4j/rails.rb
cd graphtest
bundle
rails generate model testnode
rails generate rspec:install
rspec spec/models/testnode_spec.rb
rspec を実行すると、次のエラーが表示されます。NoMethodError: undefined method 'active_record' for #<Rails::Application::Configuration:0x15071f28>
私は、neo4j.rb gem が active_record を実装しているという印象を受けました。さまざまな場所にアクティブなレコードを含めようとしましたが、このエラー メッセージを回避できませんでした。何をすべきか?
よろしく