module Ketra

This module is used to set the client id, client secret and provide access to the actual client.

Constants

VERSION

current RubyGem version

Attributes

client_id[RW]

Client ID provided by Ketra

client_secret[RW]

Client Secret proviced by Ketra

Public Class Methods

client() click to toggle source

Client used for communicating with the Ketra API. You must call client.Authorize with valid credentials before using any Commands.

# File lib/ketra.rb, line 29
def self.client
  @client ||= Client.new client_id, client_secret
end