# File lib/progress_bar/components/estimated_timer.rb, line 77 def initialize(subject, ancestor) @subject = subject @ancestor = ancestor end
# File lib/progress_bar/components/estimated_timer.rb, line 82 def method_missing(sym, *args, &blk) @ancestor.instance_method(sym).bind(@subject).call(*args,&blk) end