Skip to content

Instantly share code, notes, and snippets.

@donigian
Created June 10, 2015 06:13
Show Gist options
  • Save donigian/7df6893c71f1ce4383a7 to your computer and use it in GitHub Desktop.
Save donigian/7df6893c71f1ce4383a7 to your computer and use it in GitHub Desktop.
Ruby 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