class PostmonRuby::Address

Attributes

not_found[R]

Public Class Methods

new(options={}) click to toggle source
# File lib/postmon_ruby/address.rb, line 8
def initialize(options={})
  @not_found = true if options.not_found?
  @@address_attributes.each do |attribute|
    send(:"#{attribute}=", options[attribute.to_s] || "")
  end
end