Skip to content

Instantly share code, notes, and snippets.

@marioaquino
Created September 22, 2010 01:44
Show Gist options
  • Save marioaquino/590970 to your computer and use it in GitHub Desktop.
Save marioaquino/590970 to your computer and use it in GitHub Desktop.
class Something
include Foo
def heynow
'foo' + bar + baz
end
end
puts Something.new.foo # "hey"
puts Something.new.bar # "now"
puts Something.new.baz # "hooba"
puts Something.new.heynow # "foonowhooba"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment