Skip to content

Instantly share code, notes, and snippets.

@cymen
Created April 27, 2012 01:39
Show Gist options
  • Save cymen/2504926 to your computer and use it in GitHub Desktop.
Save cymen/2504926 to your computer and use it in GitHub Desktop.
class Person
attr_accessor :name, :phone
def initialize hash
@name = hash['name']
@phone = hash['phone']
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment