Class: Wayback::Identity
- Inherits:
-
Base
- Object
- Base
- Wayback::Identity
show all
- Defined in:
- lib/wayback/identity.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
33
34
35
36
|
# File 'lib/wayback/identity.rb', line 33
def initialize(attrs={})
super
raise ArgumentError, "argument must have an :id key" unless id
end
|
Class Method Details
.fetch(attrs) ⇒ Object
7
8
9
10
11
12
13
14
15
16
17
|
# File 'lib/wayback/identity.rb', line 7
def self.fetch(attrs)
return unless identity_map
id = attrs[:id]
if id && object = identity_map.fetch(id)
return object.update(attrs)
end
return yield if block_given?
raise Wayback::Error::IdentityMapKeyError, "key not found"
end
|
Stores an object in the identity map.
23
24
25
26
|
# File 'lib/wayback/identity.rb', line 23
def self.store(object)
return object unless identity_map
identity_map.store(object.id, object)
end
|
Instance Method Details
#==(other) ⇒ Boolean
40
41
42
|
# File 'lib/wayback/identity.rb', line 40
def ==(other)
super || attr_equal(:id, other) || attrs_equal(other)
end
|
#id ⇒ Integer
45
46
47
|
# File 'lib/wayback/identity.rb', line 45
def id
@attrs[:id]
end
|