require 'evrythng/error' require 'evrythng/configuration' require 'evrythng/api' require 'evrythng/client' module Evrythng extend Configuration # Alias for Evrythng::Client.new # # @return [Evrythng::Client] def self.new(options={}) Evrythng::Client.new(options) end # Delegate to Evrythng::Client def self.method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end def self.respond_to?(method, include_private = false) new.respond_to?(method, include_private) || super(method, include_private) end end