Method: Eapi::Methods::Types::IsAnOtherTypeMethods#method_missing

Defined in:
lib/eapi/methods/types.rb

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



38
39
40
41
42
43
44
45
# 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