lib/evrythng/client.rb in evrythng-0.0.1 vs lib/evrythng/client.rb in evrythng-0.0.2

- old
+ new

@@ -2,12 +2,12 @@ # 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/thngs' require 'evrythng/client/collections' - include Evrythng::Client::Things + include Evrythng::Client::Thngs include Evrythng::Client::Collections end end