module Eapi::Methods::Types::IsAnOtherTypeMethods

Public Instance Methods

method_missing(method, *args, &block) click to toggle source
Calls superclass method
# File lib/eapi/methods/types.rb, line 38
def method_missing(method, *args, &block)
  resp = Types.check_asking_type method, self
  if resp.nil?
    super
  else
    resp
  end
end
respond_to_missing?(method, include_all) click to toggle source
Calls superclass method
# File lib/eapi/methods/types.rb, line 30
def respond_to_missing?(method, include_all)
  if Types.type_question_method(method).present?
    true
  else
    super
  end
end