Class: Sistrix::Domain::Record
- Inherits:
-
Object
- Object
- Sistrix::Domain::Record
show all
- Includes:
- Record
- Defined in:
- lib/sistrix/domain.rb
Instance Method Summary
collapse
Methods included from Record
#keys, #method_missing
Constructor Details
#initialize(xml_node) ⇒ Record
Returns a new instance of Record.
49
50
51
52
53
54
55
|
# File 'lib/sistrix/domain.rb', line 49
def initialize(xml_node)
@data = {}
@data[:method] = xml_node['method']
@data[:url] = xml_node['url']
@data[:name] = xml_node['name']
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class Sistrix::Record
Instance Method Details
#method ⇒ Object
37
38
39
|
# File 'lib/sistrix/domain.rb', line 37
def method
@data[:method]
end
|
#name ⇒ Object
45
46
47
|
# File 'lib/sistrix/domain.rb', line 45
def name
@data[:name]
end
|
#url ⇒ Object
41
42
43
|
# File 'lib/sistrix/domain.rb', line 41
def url
@data[:url]
end
|