bigquery 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +3 -3
- data/lib/big_query/client.rb +2 -0
- data/lib/big_query/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 824bbc3887e97db55942156f7296c826cdf02f3a
|
4
|
+
data.tar.gz: 7733ee438821ee73f1cafb422a37e0605180b5cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe97999070282dec6e2dc8354f8279be62bd353d88672b681615344010fdf5346dce5a317ba91d764ed4bfbc9db91a155a3a02da33f19239ac0e354337e1d394
|
7
|
+
data.tar.gz: 006759a05d2704e5331630d3abecf323b4d47d0f3507403f72e4ae235abd4a06f727461451185fff56ecd9a5f1192c9961ee1a4fcf05cdc867f57eda5806d9b1
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
bigquery (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.
|
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.
|
42
|
+
jwt (1.2.1)
|
43
43
|
launchy (2.4.3)
|
44
44
|
addressable (~> 2.3)
|
45
45
|
method_source (0.8.2)
|
data/lib/big_query/client.rb
CHANGED
@@ -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
|
|
data/lib/big_query/version.rb
CHANGED
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.
|
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-
|
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
|