Skip to content

Instantly share code, notes, and snippets.

@david
Created August 10, 2012 08:24
Show Gist options
  • Save david/3312585 to your computer and use it in GitHub Desktop.
Save david/3312585 to your computer and use it in GitHub Desktop.
module MyMixin
def say_hello
"hello!"
end
end
Object.new.extend(MyMixin).say_hello #=> "hello!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment