Skip to content

Instantly share code, notes, and snippets.

@meetme2meat
Created February 15, 2016 06:54
Show Gist options
  • Save meetme2meat/b310ccb045b5da14844a to your computer and use it in GitHub Desktop.
Save meetme2meat/b310ccb045b5da14844a to your computer and use it in GitHub Desktop.
class Ticket
def purchase
puts "** Purchasing the Ticket **"
end
alias_method :call,:purchase
end
## Following are they way you can invoke the download method
Ticket.new.purchase
## => ** Purchasing the Ticket **
A.new.call
## => ** Purchasing the Ticket **
A.new.()
## => ** Purchasing the Ticket **
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment