lib/google_bigquery/auth.rb in bigbroda-0.0.6 vs lib/google_bigquery/auth.rb in bigbroda-0.0.7

- old
+ new

@@ -9,10 +9,10 @@ @key = Google::APIClient::KeyUtils.load_from_pkcs12(@config.key_file, @config.pass_phrase) @asserter = Google::APIClient::JWTAsserter.new( @config.email, @config.scope, @key) end def authorize - @client = Google::APIClient.new + @client = Google::APIClient.new(application_name: "BigBroda", application_version: GoogleBigquery::VERSION ) @client.authorization = @asserter.authorize @client.retries = @config.retries.to_i if @config.retries.to_i > 1 @api = @client.discovered_api('bigquery', 'v2') self.class.api = @api self.class.client = @client