Skip to content

Instantly share code, notes, and snippets.

@thiagoa
Last active December 20, 2016 02:07
Show Gist options
  • Save thiagoa/3539435b9ff45595830ff0310c9267ba to your computer and use it in GitHub Desktop.
Save thiagoa/3539435b9ff45595830ff0310c9267ba to your computer and use it in GitHub Desktop.
# Instances of Project respond to every method of Imageable!
class Project
include Imageable
end
# Provides the same collection of methods as Imageable
module SuperImageable
include Imageable
end
# Instances of Task respond to every method of SuperImageable,
# which in turn responds to every method of Imageable!
class Task
include SuperImageable
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment