module Teamwork
Constants
- VERSION
Attributes
api_key[RW]
subdomain[RW]
Public Class Methods
client()
click to toggle source
# File lib/teamwork.rb, line 9 def client @client ||= Teamwork::Client.new end
respond_to?(method_name, include_private = false)
click to toggle source
Calls superclass method
# File lib/teamwork.rb, line 13 def respond_to?(method_name, include_private = false) client.respond_to?(method_name, include_private) || super end
Private Class Methods
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# File lib/teamwork.rb, line 19 def method_missing(method_name, *args, &block) return super unless client.respond_to?(method_name) client.send(method_name, *args, &block) end