class MyBanner::DriveAuthorization

Constants

AUTH_SCOPE

Public Class Methods

new(options={}) click to toggle source
Calls superclass method
# File lib/my_banner/drive_authorization.rb, line 9
def initialize(options={})
  options[:scope] ||= AUTH_SCOPE
  options[:credentials_filepath] ||= "auth/drive_credentials.json"
  options[:token_filepath] ||= "auth/drive_token.yaml"
  super(options)
end