Class: Siilar::Struct::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/siilar/struct.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Base

Returns a new instance of Base.



5
6
7
8
9
10
# File 'lib/siilar/struct.rb', line 5

def initialize(attributes = {})
  attributes.each do |key, value|
    m = "#{key}=".to_sym
    self.send(m, value) if self.respond_to?(m)
  end
end