Module: Nem::Util::Assignable
- Defined in:
- lib/nem/util/assignable.rb
Instance Method Summary collapse
-
#[](attr) ⇒ Any
Attribute value.
- #initialize(attributes = {}) {|_self| ... } ⇒ Object
-
#to_hash ⇒ Hash
Attribute and value pairs.
-
#to_json(state = nil) ⇒ String
JSON formatted structure.
Instance Method Details
#[](attr) ⇒ Any
Returns Attribute value.
13 14 15 |
# File 'lib/nem/util/assignable.rb', line 13 def [](attr) send(attr) end |
#initialize(attributes = {}) {|_self| ... } ⇒ Object
4 5 6 7 8 9 |
# File 'lib/nem/util/assignable.rb', line 4 def initialize(attributes = {}) attributes.each do |k, v| send("#{k.to_s}=", v) if respond_to?("#{k.to_s}=") end if attributes yield self if block_given? end |
#to_hash ⇒ Hash
Returns Attribute and value pairs.
18 19 20 21 22 23 |
# File 'lib/nem/util/assignable.rb', line 18 def to_hash hashed_properties = instance_variables.each_with_object({}) do |var, hash| hash[var.to_s.delete('@').to_sym] = instance_variable_get(var) end hashnize(hashed_properties) end |
#to_json(state = nil) ⇒ String
Returns JSON formatted structure.
26 27 28 |
# File 'lib/nem/util/assignable.rb', line 26 def to_json(state = nil) to_hash.to_json(state) end |