Skip to content

Instantly share code, notes, and snippets.

@Amokrane
Created May 22, 2011 12:32
Show Gist options
  • Save Amokrane/985425 to your computer and use it in GitHub Desktop.
Save Amokrane/985425 to your computer and use it in GitHub Desktop.
Making an alias of the method_missing
# This snippet is taken from:
# "The Polite Programmer's Guide to Ruby Etiquette"
# http://bit.ly/hrwdPY
class BlackMagicStereo < Stereo
# Make an alias of the previous method_missing definition
alias method_missing_without_show method_missing
def method_missing(name, *args, &block)
if sym.to_s =~ /^play_(\w+)$/
system("open songs/#{$1}.m4a")
else
method_missing_without_show(name, *args, &block)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment