Class: Valkyrie::ID
- Inherits:
-
Object
- Object
- Valkyrie::ID
- Defined in:
- lib/valkyrie/id.rb
Overview
A simple ID class to keep IDs distinguished from strings In order for an object to be queryable via joins, it needs to be added as a reference via a Valkyrie::ID rather than just a string ID.
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
Instance Method Summary collapse
- #eql?(other) ⇒ Boolean (also: #==)
-
#initialize(id) ⇒ ID
constructor
A new instance of ID.
- #to_s ⇒ String
- #to_str ⇒ String
Constructor Details
#initialize(id) ⇒ ID
Returns a new instance of ID.
9 10 11 |
# File 'lib/valkyrie/id.rb', line 9 def initialize(id) @id = id.to_s end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
7 8 9 |
# File 'lib/valkyrie/id.rb', line 7 def id @id end |
Instance Method Details
#eql?(other) ⇒ Boolean Also known as: ==
27 28 29 |
# File 'lib/valkyrie/id.rb', line 27 def eql?(other) other == to_str end |
#to_s ⇒ String
15 16 17 |
# File 'lib/valkyrie/id.rb', line 15 def to_s to_str end |
#to_str ⇒ String
21 22 23 |
# File 'lib/valkyrie/id.rb', line 21 def to_str id end |