Created
April 14, 2011 14:07
-
-
Save baldwindavid/919538 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Movable | |
def is_movable | |
include InstanceMethods | |
end | |
module InstanceMethods | |
def whereami | |
"You are here." | |
end | |
end | |
end | |
class FakeActiveRecord | |
end | |
FakeActiveRecord.extend Movable | |
class Page < FakeActiveRecord | |
is_movable | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment