Sha256: 78094560bcf00256af152db3c325e56bfcffd716743fce61a064543abddf26fa

Contents?: true

Size: 322 Bytes

Versions: 4

Compression:

Stored size: 322 Bytes

Contents

module GrooveHQ
  class Client

    module Customers

      def update_customer(email, options)
        put("/customers/#{email}", options)
      end

      def customer(email)
        get("/customers/#{email}")
      end

      def customers(options = {})
        get("/customers", options)
      end

    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
groovehq-1.0.7 lib/groovehq/client/customers.rb
groovehq-1.0.6 lib/groovehq/client/customers.rb
groovehq-1.0.5 lib/groovehq/client/customers.rb
groovehq-1.0.4 lib/groovehq/client/customers.rb