class MyBanner::SpreadsheetAuthorization

Constants

AUTH_SCOPE

Public Class Methods

new(options={}) click to toggle source
Calls superclass method MyBanner::GoogleAuthorization::new
# File lib/my_banner/spreadsheet_authorization.rb, line 8
def initialize(options={})
  options[:scope] ||= AUTH_SCOPE
  options[:credentials_filepath] ||= "auth/spreadsheet_credentials.json"
  options[:token_filepath] ||= "auth/spreadsheet_token.yaml"
  super(options)
end