Method: Gitrob::CLI::ProgressBar#method_missing

Defined in:
lib/gitrob/cli/progress_bar.rb

#method_missing(method, *args, &block) ⇒ Object



32
33
34
35
36
37
38
# File 'lib/gitrob/cli/progress_bar.rb', line 32

def method_missing(method, *args, &block)
  if progress_bar.respond_to?(method)
    progress_bar.send(method, *args, &block)
  else
    super
  end
end