Skip to content

Instantly share code, notes, and snippets.

@ngpestelos
Created September 14, 2013 03:44
Show Gist options
  • Save ngpestelos/6558656 to your computer and use it in GitHub Desktop.
Save ngpestelos/6558656 to your computer and use it in GitHub Desktop.
time
# see Metaprogramming Ruby, p. 96
class Loan
def initialize(book)
@book = book
@time = Time.now
end
def to_s
"#{@book.upcase} loaned on #{@time}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment