Method: Eps::Model#method_missing

Defined in:
lib/eps/model.rb

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



58
59
60
61
62
63
64
# File 'lib/eps/model.rb', line 58

def method_missing(method, *args, &block)
  if @estimator && @estimator.respond_to?(method)
    @estimator.public_send(method, *args, &block)
  else
    super
  end
end