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/thngs' require 'evrythng/client/collections' include Evrythng::Client::Thngs include Evrythng::Client::Collections end end