Module: Nis::Util::Assignable
- Included in:
- Struct::NemRequestResult
- Defined in:
- lib/nis/util/assignable.rb
Instance Method Summary collapse
-
#[](attr) ⇒ Any
Attribute value.
- #initialize(attributes = {}) {|_self| ... } ⇒ Object
-
#to_hash ⇒ Hash
Attribute and value pairs.
-
#to_json ⇒ String
JSON formatted structure.
Instance Method Details
#[](attr) ⇒ Any
Returns Attribute value.
12 13 14 |
# File 'lib/nis/util/assignable.rb', line 12 def [](attr) send(attr) end |
#initialize(attributes = {}) {|_self| ... } ⇒ Object
3 4 5 6 7 8 |
# File 'lib/nis/util/assignable.rb', line 3 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.
17 18 19 20 21 |
# File 'lib/nis/util/assignable.rb', line 17 def to_hash instance_variables.each_with_object({}) do |var, hash| hash[var.to_s.delete("@").to_sym] = instance_variable_get(var) end end |
#to_json ⇒ String
Returns JSON formatted structure.
24 25 26 |
# File 'lib/nis/util/assignable.rb', line 24 def to_json to_hash.to_json end |