Sha256: 44baab894cda758f26cfdd4cb0d7e8e372af91fc892e7d45d622c2e2f3dbf4c8

Contents?: true

Size: 276 Bytes

Versions: 1

Compression:

Stored size: 276 Bytes

Contents

module BqFactory
  class Configuration
    attr_accessor :project_id, :keyfile_path

    def schemas
      @schemas ||= RegistoryDecorator.new(Registory.new('schema'))
    end

    def client
      @client ||= BqFactory::Client.new(project_id, keyfile_path)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bq_factory-0.1.0 lib/bq_factory/configuration.rb