0

我正在关注 Rails 和 Neo4j 教程http://blog.jayway.com/2011/03/02/neo4j-rb-1-0-0-and-rails-3/并收到以下错误:

me$ rails generate scaffold post title:string body:string
LoadError: no such file to load -- active_support/core_ext/class/inheritable_attributes
  require at org/jruby/RubyKernel.java:1038
   (root) at /Users/me/.rvm/gems/jruby-1.6.5/gems/neo4j-1.3.1-java/lib/neo4j.rb:9
  require at org/jruby/RubyKernel.java:1038
   (root) at /Users/me/.rvm/gems/jruby-1.6.5/gems/neo4j-1.3.1-java/lib/neo4j.rb:8
  require at org/jruby/RubyKernel.java:1038
   (root) at /Users/me/Projects/myblog/config/application.rb:24
  require at org/jruby/RubyKernel.java:1038
   (root) at script/rails:6

我究竟做错了什么?

4

1 回答 1

1

您可能正在使用 Neo4j.rb 的 1.x 版本,它不适用于 rails 3.2+。使用 rails 3.1 或使用 neo4j.rb 版本 2.0.0.alpha.9+ 另外,使用 2.0.0.alpha.9 和脚手架检查演示应用程序 - https://github.com/andreasronge/kvitter

于 2012-04-30T06:20:12.760 回答