Skip to content

Instantly share code, notes, and snippets.

@jgwhite
Created September 3, 2015 14:19
Show Gist options
  • Save jgwhite/bd025f80c2375654cdbc to your computer and use it in GitHub Desktop.
Save jgwhite/bd025f80c2375654cdbc to your computer and use it in GitHub Desktop.
module LoudFoo
def foo
super.upcase
end
end
class Foo
prepend LoudFoo
def foo
"foo"
end
end
Foo.new.foo # => "FOO"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment