Skip to content

Instantly share code, notes, and snippets.

@jgarlick
Created November 28, 2012 12:13
Show Gist options
  • Save jgarlick/4160824 to your computer and use it in GitHub Desktop.
Save jgarlick/4160824 to your computer and use it in GitHub Desktop.
module Test
def hello
self.bye
end
def self.extended(base)
puts base.hello
end
end
class MyModel
def self.bye
"goodbye"
end
extend Test
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment