Skip to content

Instantly share code, notes, and snippets.

@vrinek
Created May 30, 2013 09:34
Show Gist options
  • Select an option

  • Save vrinek/5676786 to your computer and use it in GitHub Desktop.

Select an option

Save vrinek/5676786 to your computer and use it in GitHub Desktop.
Rename a method in Ruby
class Animal
def speak
puts "..."
end
end
class Cat < Animal
def speak
puts "Mew..."
end
end
cat = Cat.new
cat.speak # Says "Mew..."
class Cat
alias_method :mew, :speak
remove_method :speak
end
cat.speak # Says "..."
cat.mew # Says "Mew..."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment