Skip to content

Instantly share code, notes, and snippets.

@TwP
Created April 12, 2010 17:00
Show Gist options
  • Save TwP/363770 to your computer and use it in GitHub Desktop.
Save TwP/363770 to your computer and use it in GitHub Desktop.
class FastOpenObject
def method_missing( symbol, *args, &block )
eigenclass = class << self; self; end
eigenclass.class_eval <<-__
def #{symbol}
@#{symbol} ||= Hash.new {|h,k| h[k] = Hash.new(0)}
end
__
self.send(symbol)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment