Sha256: 4bbba6561f1d26ba6bfb10ed184970935db79391113b5020658aa3e3cee80bb9

Contents?: true

Size: 943 Bytes

Versions: 4

Compression:

Stored size: 943 Bytes

Contents

require 'active_support'
require 'active_support/json'
require 'active_support/core_ext'
require 'googleauth'
require 'google/apis/sheets_v4'

require 'google_spreadsheet_fetcher/version'
require 'google_spreadsheet_fetcher/config'
require 'google_spreadsheet_fetcher/error'
require 'google_spreadsheet_fetcher/authorizer/interface'
require 'google_spreadsheet_fetcher/authorizer/service_account'
require 'google_spreadsheet_fetcher/authorizer/oauth2/config'
require 'google_spreadsheet_fetcher/authorizer/oauth2/rack_application'
require 'google_spreadsheet_fetcher/authorizer/oauth2/authorizer'
require 'google_spreadsheet_fetcher/fetcher'
require 'google_spreadsheet_fetcher/sheet_url'
require 'google_spreadsheet_fetcher/bulk_fetcher'
require 'google_spreadsheet_fetcher/sheets_service_builder'

module GoogleSpreadsheetFetcher
  def self.config
    @config ||= Config.default_config
  end

  def self.configure
    yield config
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
google_spreadsheet_fetcher-2.2.0 lib/google_spreadsheet_fetcher.rb
google_spreadsheet_fetcher-2.1.0 lib/google_spreadsheet_fetcher.rb
google_spreadsheet_fetcher-2.0.1 lib/google_spreadsheet_fetcher.rb
google_spreadsheet_fetcher-2.0.0 lib/google_spreadsheet_fetcher.rb