Skip to content

Instantly share code, notes, and snippets.

@LTe
Created January 17, 2012 21:24
Show Gist options
  • Save LTe/1628964 to your computer and use it in GitHub Desktop.
Save LTe/1628964 to your computer and use it in GitHub Desktop.
module BeerDrinkerRole
def drink
end
end
class BeerDrinker
include BeerDrinkerRole
end
module AnotherRole
def another_method
end
end
class Another
include AnotherRole
end
# and we can now
BeerDrinker.new.extend(AnotherRole)
Another.new.extend(BeerDrinkerRole) # etc.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment