Skip to content

Instantly share code, notes, and snippets.

@baldwindavid
Created April 14, 2011 14:07
Show Gist options
  • Save baldwindavid/919538 to your computer and use it in GitHub Desktop.
Save baldwindavid/919538 to your computer and use it in GitHub Desktop.
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