Class: DNSimple::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/dnsimple/base.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Base

Returns a new instance of Base.



3
4
5
6
7
8
# File 'lib/dnsimple/base.rb', line 3

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