neo4j 2.0.0.alpha.8-java → 2.0.0.alpha.9-java

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ == 2.0.0.alpha.9 / 2012-04-27
2
+ * Fix for rails scaffold generator
3
+
1
4
  == 2.0.0.alpha.8 / 2012-04-27
2
5
  * Fix for "relationship to :all assigned twice for single instance" #178
3
6
  * Fix for callback fire more then once (=> performance increase) #172
@@ -56,7 +56,7 @@ class Neo4j::Generators::ModelGenerator < Neo4j::Generators::Base #:nodoc:
56
56
 
57
57
 
58
58
  def index_fragment(property)
59
- if options[:indices].include?(property)
59
+ if options[:indices] && options[:indices].include?(property)
60
60
  ", :index => :exact"
61
61
  end
62
62
  end
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = "2.0.0.alpha.8"
2
+ VERSION = "2.0.0.alpha.9"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: neo4j
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: 6
5
- version: 2.0.0.alpha.8
5
+ version: 2.0.0.alpha.9
6
6
  platform: java
7
7
  authors:
8
8
  - Andreas Ronge