Skip to content

Instantly share code, notes, and snippets.

@mleszcz
Last active May 10, 2018 14:04
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 mleszcz/bf36203d4efe6e4eed99e6c5a8cbf591 to your computer and use it in GitHub Desktop.
Save mleszcz/bf36203d4efe6e4eed99e6c5a8cbf591 to your computer and use it in GitHub Desktop.
class Invoice
attr_accessor :product_name
def email_invoice
puts "Emailing an invoice..."
puts name
end
def short_name
puts name
end
def name
"Invoice for #{@product_name}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment