Class: Valkyrie::ID

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#idObject (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: ==

Returns:

  • (Boolean)


19
20
21
# File 'lib/valkyrie/id.rb', line 19

def eql?(other)
  other.class == self.class && other.state == state
end

#to_sObject



13
14
15
# File 'lib/valkyrie/id.rb', line 13

def to_s
  id
end