Module: RubyBox::Bindings
Instance Method Summary collapse
Instance Method Details
#initialize ⇒ Object
25 26 27 28 29 30 31 |
# File 'lib/ruby_box/bindings.rb', line 25 def initialize(*) super self.class.bindings.each do |target, proc| bind target, proc { |*args| instance_exec(*args, &proc) } end end |