Skip to content

Instantly share code, notes, and snippets.

@blasterpal
Created November 8, 2011 00:57
Show Gist options
  • Save blasterpal/1346708 to your computer and use it in GitHub Desktop.
Save blasterpal/1346708 to your computer and use it in GitHub Desktop.
My Mixin fun
class Content
#has all your junk
end
module ContentFooBar
def foobar
puts 'hello!'
end
end
class Content
include ContentAllChildrenMethods
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment