
Neo4j::NodeMixin#property? does not work
Reported by Andreas Ronge | January 26th, 2009 @ 02:44 PM | in 0.2.1
class SomeThing include Neo4j::NodeMixin property :name end
SomeThing.property?(:name) => false SomeThing.property?(:not_existing) NoMethodError: You have a nil object when you didn't expect it! You might have expected an instance of Array. [....]
Should be
?> SomeThing.property?(:name) => true
SomeThing.property?(:not_existing) => false
Comments and changes to this ticket
-
Andreas Ronge January 26th, 2009 @ 02:57 PM
- State changed from new to open
-
Andreas Ronge January 26th, 2009 @ 02:57 PM
- State changed from open to resolved
(from [2926b0c53f0ea29a82642fa5a14e4d06c987e78d]) Fixed bug on Neo4j::NodeMixin#property? [#22 state:resolved] http://github.com/andreasronge/n...
-
Andreas Ronge January 28th, 2009 @ 04:04 PM
- Milestone set to 0.2.1
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Neo4j.rb is a graph database framework for JRuby.
It provides:
* Mapping of ruby objects to nodes in networks rather than in tables.
* Storage of ruby object to a file system.
* Fast traversal of relationships between nodes in a hugh node space.
* Transaction with rollbacks support.
* Indexing and quering of ruby objects.
* Integration with Rails
People watching this ticket
Tags
Referenced by
-
22 Neo4j::NodeMixin#property? does not work (from [2926b0c53f0ea29a82642fa5a14e4d06c987e78d]) Fixed b...