class APIObject

Implements the convienience

Public Class Methods

method_missing(*args) click to toggle source

rubocop:disable Style/MethodMissing

# File lib/inwx.rb, line 26
def self.method_missing(*args)
  args = [name.downcase] + args

  result = INWX.instance.call(*args)

  puts YAML.dump(result) if CONFIG[:debug]

  result['resData']
end