Skip to content

Instantly share code, notes, and snippets.

@JEG2
Created July 26, 2011 22:32
Show Gist options
  • Save JEG2/1108248 to your computer and use it in GitHub Desktop.
Save JEG2/1108248 to your computer and use it in GitHub Desktop.
class Thing
def verb
"Do something"
end
end
module Modified
def verb
"#{super} else"
end
end
puts Thing.new.extend(Modified).verb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment