Skip to content

How to Configure Rails for Neo4jr

kimbogum edited this page Sep 13, 2010 · 2 revisions

Tell rails not to use the active record framework by uncommenting and editing this line in environment.rb:


config.frameworks -= [ :active_record]

Comment out the following lines in test/test_helper :

self.use_instantiated_fixtures = false self.use_transactional_fixtures = true fixtures :all

Add the gem config line to environment.rb:


config.gem "neo4j"
Clone this wiki locally