require "active_support/json" require "active_support/core_ext" require "google_spreadsheet_fetcher/version" require "google_spreadsheet_fetcher/config" require "google_spreadsheet_fetcher/error" require "google_spreadsheet_fetcher/fetcher" 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