Skip to content

Instantly share code, notes, and snippets.

@ahawkins
Created September 1, 2011 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahawkins/1185943 to your computer and use it in GitHub Desktop.
Save ahawkins/1185943 to your computer and use it in GitHub Desktop.
module Lookup
class Result
attr_accessor :key, :address, :city, :state, :zip_code, :country,
:email, :phone, :name
def initialize(attributes = {})
attributes.each_pair do |key, value|
send("#{key}=", value)
end
end
def inspect
"#{self.class}:#{object_id} #{attributes.inspect}"
end
def as_json(options = nil)
attributes
end
def attributes
raise "Subclass must implement this method!"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment