module SimpleGoogleAuth

Constants

Error
NonJsonResponseError
ProviderError
VERSION

Public Class Methods

configure() { |config| ... } click to toggle source
# File lib/simple_google_auth.rb, line 12
def self.configure
  yield config

  if config.refresh_stale_tokens
    config.request_parameters.merge!(access_type: "offline")
  end
end