neo4j 1.2.0-java → 1.2.1-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
+ == 1.2.1 / 2011-08-29
2
+ * Fixed failing RSpecs for devise-neo4j gem - column_names method on neo4j orm adapter throws NoMethodError (thanks Deepak N)
3
+
1
4
  == 1.2.0 / 2011-08-16
2
5
  * Upgrade to java library neo4j 1.4.1, see http://neo4j.rubyforge.org/guides/configuration.html
3
6
 
@@ -3,6 +3,7 @@ Maintainer:
3
3
 
4
4
  Contributors:
5
5
 
6
+ * Deepak N
6
7
  * Frédéric Vanclef
7
8
  * Pere Urbon
8
9
  * Joe Leaver
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
@@ -20,7 +20,7 @@ module Neo4j
20
20
 
21
21
  # get a list of column names for a given class
22
22
  def column_names
23
- klass.props.keys
23
+ klass._decl_props.keys
24
24
  end
25
25
 
26
26
  # Get an instance by id of the model
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: neo4j
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.2.0
5
+ version: 1.2.1
6
6
  platform: java
7
7
  authors:
8
8
  - Andreas Ronge
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-08-16 00:00:00 +02:00
13
+ date: 2011-08-29 00:00:00 +02:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency