class TimeTree::Configuration

TimeTree apis client configuration.

Attributes

calendar_app_application_id[RW]

@return [String] CalendarApp's app id

calendar_app_private_key[RW]

@return [String] CalendarApp's private key content# e.g. File.read('<YOUR_PATH_TO_PEM_FILE>')

logger[RW]

@return [Logger]

oauth_app_token[RW]

@return [String] OAuthApp's access token

Public Class Methods

new() click to toggle source
# File lib/timetree/configuration.rb, line 20
def initialize
  @logger = Logger.new $stdout
  @logger.level = :warn
end