Skip to content

Instantly share code, notes, and snippets.

@tbaba
Created July 28, 2011 14:01
Show Gist options
  • Save tbaba/1111604 to your computer and use it in GitHub Desktop.
Save tbaba/1111604 to your computer and use it in GitHub Desktop.
activemodel test
class Person
attr_accessor :first_name, :last_name
def initialize(attributes=nil)
@first_name = attributes[:first_name]
@last_name = attributes[:last_name]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment