Skip to content

Instantly share code, notes, and snippets.

@tyrotinal
Created May 7, 2013 05:05
Show Gist options
  • Save tyrotinal/5530368 to your computer and use it in GitHub Desktop.
Save tyrotinal/5530368 to your computer and use it in GitHub Desktop.
rails: simple class
class User
attr_accessor :name, :email
def initialize(attributes = {})
@name = attributes[:name]
@email = attributes[:email]
end
def formatted_email
"#{@name} <#{@email}>"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment