Sha256: 5df46c09ee9c7debaee87613844f23b23b72588b28ea436edce47dc486a2d336

Contents?: true

Size: 423 Bytes

Versions: 1

Compression:

Stored size: 423 Bytes

Contents

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
evrythng-0.0.1 lib/evrythng/client.rb