Skip to content

Instantly share code, notes, and snippets.

@Asher-
Created October 15, 2010 17:40
Show Gist options
  • Select an option

  • Save Asher-/628609 to your computer and use it in GitHub Desktop.

Select an option

Save Asher-/628609 to your computer and use it in GitHub Desktop.
class AClass
def method
puts 'do stuff'
end
alias_method new_method_name, method
def method
puts 'do stuff first'
new_method_name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment