bigquery 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db0f8d742906e8501b59426a1888c6937073e429
4
- data.tar.gz: 7348fd1368761c79247056d08e4b42b06703f03c
3
+ metadata.gz: 824bbc3887e97db55942156f7296c826cdf02f3a
4
+ data.tar.gz: 7733ee438821ee73f1cafb422a37e0605180b5cd
5
5
  SHA512:
6
- metadata.gz: 9572f8ec6fe5d2dc43af84deb5d9d37b3e080016fde0ecc75f0aa0d5b60a698f9c405b98870b6279adbd7e979dede26348126ee4fbed3251a9b92dfb11330f44
7
- data.tar.gz: b3d829258e9a7b17dcde1bcd549b0812e5995f640d5fd4c225619cda907620306dd0e5ddf2095eac23cc76084e6b88ea04ada68f49801b1aeeaf4e93be852940
6
+ metadata.gz: fe97999070282dec6e2dc8354f8279be62bd353d88672b681615344010fdf5346dce5a317ba91d764ed4bfbc9db91a155a3a02da33f19239ac0e354337e1d394
7
+ data.tar.gz: 006759a05d2704e5331630d3abecf323b4d47d0f3507403f72e4ae235abd4a06f727461451185fff56ecd9a5f1192c9961ee1a4fcf05cdc867f57eda5806d9b1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ * 0.6.1
2
+ * Include insert module #16
3
+
1
4
  # 0.4.0
2
5
  * Added BigQuery::Client#insert_job. https://cloud.google.com/bigquery/docs/reference/v2/jobs/insert
3
6
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bigquery (0.5.0)
4
+ bigquery (0.6.1)
5
5
  google-api-client (~> 0.8.2)
6
6
 
7
7
  GEM
@@ -13,7 +13,7 @@ GEM
13
13
  minitest (~> 5.1)
14
14
  thread_safe (~> 0.3, >= 0.3.4)
15
15
  tzinfo (~> 1.1)
16
- addressable (2.3.6)
16
+ addressable (2.3.7)
17
17
  autoparse (0.3.3)
18
18
  addressable (>= 2.3.1)
19
19
  extlib (>= 0.9.15)
@@ -39,7 +39,7 @@ GEM
39
39
  signet (~> 0.6)
40
40
  i18n (0.7.0)
41
41
  json (1.8.2)
42
- jwt (1.2.0)
42
+ jwt (1.2.1)
43
43
  launchy (2.4.3)
44
44
  addressable (~> 2.3)
45
45
  method_source (0.8.2)
@@ -2,6 +2,7 @@ require 'big_query/client/errors'
2
2
  require 'big_query/client/query'
3
3
  require 'big_query/client/jobs'
4
4
  require 'big_query/client/tables'
5
+ require 'big_query/client/load'
5
6
 
6
7
  module BigQuery
7
8
  class Client
@@ -9,6 +10,7 @@ module BigQuery
9
10
  include BigQuery::Client::Query
10
11
  include BigQuery::Client::Jobs
11
12
  include BigQuery::Client::Tables
13
+ include BigQuery::Client::Insert
12
14
 
13
15
  attr_accessor :dataset, :project_id
14
16
 
@@ -1,3 +1,3 @@
1
1
  module BigQuery
2
- VERSION = '0.6.0'
2
+ VERSION = '0.6.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bigquery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Bronte
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-01-22 00:00:00.000000000 Z
12
+ date: 2015-02-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: google-api-client