Skip to content

Instantly share code, notes, and snippets.

@mattknox
Created November 16, 2008 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattknox/25591 to your computer and use it in GitHub Desktop.
Save mattknox/25591 to your computer and use it in GitHub Desktop.
CONTEXT_STACK = []
DEFAULT_STARTING_SELF = self
module Repl
def repl
DEFAULT_STARTING_SELF.cb self
CONTEXT_STACK.push(self)
end
def stop_repl
DEFAULT_STARTING_SELF.cb CONTEXT_STACK.pop
end
end
module HookRepl
def self.replize_object(obj, class_or_instance_or_both = :both)
obj.class_eval "extend Repl" if [:class, :both].member?(class_or_instance_or_both)
obj.class_eval "include Repl" if [:object, :both].member?(class_or_instance_or_both)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment