neo4j-core 0.0.7-java → 0.0.8-java
Sign up to get free protection for your applications and to get access to all the features.
@@ -79,10 +79,10 @@ module Neo4j
|
|
79
79
|
# @example
|
80
80
|
# a = Neo4j::Node.new
|
81
81
|
# a.outgoing(:friends) << Neo4j::Node.new
|
82
|
-
# a.rels.first.rel_type # =>
|
83
|
-
# @return [
|
82
|
+
# a.rels.first.rel_type # => :friends
|
83
|
+
# @return [Symbol] the type of the relationship
|
84
84
|
def rel_type
|
85
|
-
getType().name()
|
85
|
+
getType().name().to_sym
|
86
86
|
end
|
87
87
|
|
88
88
|
def class
|
data/lib/neo4j-core/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: neo4j-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.8
|
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: 2012-04-
|
13
|
+
date: 2012-04-13 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: neo4j-community
|