method_missing(sym, *args, &blk)click to toggle source
# File lib/ruby-progressbar/components/estimated_timer.rb, line 80defmethod_missing(sym, *args, &blk)
@ancestor.instance_method(sym).bind(@subject).call(*args,&blk)
end
start(*args, &blk)click to toggle source
# File lib/ruby-progressbar/components/estimated_timer.rb, line 76defstart(*args, &blk)
@ancestor.instance_method(:start).bind(@subject).call(*args,&blk)
end