module Desk

Constants

VERSION

The version of the gem

Attributes

counter[RW]
minute[RW]

Public Class Methods

client(options={}) click to toggle source

Alias for Desk::Client.new

@return [Desk::Client]

# File lib/desk.rb, line 18
def client(options={})
  Desk::Client.new(options)
end
method_missing(method, *args, &block) click to toggle source

Delegate to Desk::Client

Calls superclass method
# File lib/desk.rb, line 23
def method_missing(method, *args, &block)
  return super unless client.respond_to?(method)
  client.send(method, *args, &block)
end
respond_to?(method, include_private=false) click to toggle source
Calls superclass method
# File lib/desk.rb, line 28
def respond_to?(method, include_private=false)
  client.respond_to?(method, include_private) || super
end