neo4j-core 0.0.7-java → 0.0.8-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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 # => 'friends'
83
- # @return [String] the type of the relationship
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
@@ -1,5 +1,5 @@
1
1
  module Neo4j
2
2
  module Core
3
- VERSION = "0.0.7"
3
+ VERSION = "0.0.8"
4
4
  end
5
5
  end
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.7
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-08 00:00:00 Z
13
+ date: 2012-04-13 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: neo4j-community