Created
February 15, 2016 06:54
-
-
Save meetme2meat/b310ccb045b5da14844a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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