Skip to content

Instantly share code, notes, and snippets.

@juneira
Last active March 26, 2020 14:25
Show Gist options
  • Select an option

  • Save juneira/91cd18209954d134aa49193156201ab3 to your computer and use it in GitHub Desktop.

Select an option

Save juneira/91cd18209954d134aa49193156201ab3 to your computer and use it in GitHub Desktop.
class ClasseDaGem
alias_method :antigo_metodo, :metodo
def metodo
begin
antigo_metodo
rescue
p "Faça o que precisar aqui!"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment