module Evrythng # Wrapper for the Evrythng REST API class Client < API # Require client method modules after initializing the Client class in # order to avoid a superclass mismatch error, allowing those modules to be # Client-namespaced. require 'evrythng/client/things' require 'evrythng/client/collections' include Evrythng::Client::Things include Evrythng::Client::Collections end end