google-apis 0.1.5 → 0.1.6

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: b70c01bd4080d80b7f7d7d3784b67fc05f3a7e9e
4
- data.tar.gz: 8aa06cf24e59306e651bca149466b2c988f35585
3
+ metadata.gz: c7408540932588898e564b91fefa8603fca1378e
4
+ data.tar.gz: 02cddbaa50219cc1e69a9e50f020918455cab8ef
5
5
  SHA512:
6
- metadata.gz: b186f46c062f560695f5aedd2f49b29467f20b5984e590021d63cb642cdbefbf4b362f312b83ca0036dfb8219bd42001e86bb28d8ea6b39cfaaa7aef51acccbf
7
- data.tar.gz: b09cded1788098ad944c0e2629d0a1eb6932e00639311895acc31970b710232fe0d15e0b60880c26e9e430138c8e212476c41878df1ef3f028dab7936983423f
6
+ metadata.gz: c34945abf61611fd8ce5e751e8f3b4d1edbadde1b42b4e1c25ade6a65cbb5a1c250775ddcc8b9f32c40050109b4227418abc5af434ca269dd2993957c075b1c2
7
+ data.tar.gz: b34cea86d30792bc6e91aadca0d3b38a2066433130c35a51d90d001027786c2c8d5cc975f6e6aeb0a013e6f34cba5be7ef766efd9207ac3ae85295ec05380547
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,9 @@
1
1
  = Google APIs CHANGELOG
2
2
 
3
+ == Version 0.1.6 (May 27, 2015)
4
+
5
+ * Handling Google BigQuery NULL values correctly
6
+
3
7
  == Version 0.1.5 (April 22, 2015)
4
8
 
5
9
  * Also correcting passed params when invoking api#execute
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.5
1
+ 0.1.6
@@ -39,7 +39,7 @@ module GoogleApis
39
39
  private
40
40
 
41
41
  def parse_value(type, value)
42
- unless value == "NULL"
42
+ unless [nil, "NULL"].include?(value)
43
43
  case type
44
44
  when :string
45
45
  parse_string_value value
@@ -1,7 +1,7 @@
1
1
  module GoogleApis
2
2
  MAJOR = 0
3
3
  MINOR = 1
4
- TINY = 5
4
+ TINY = 6
5
5
 
6
6
  VERSION = [MAJOR, MINOR, TINY].join(".")
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Engel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-22 00:00:00.000000000 Z
11
+ date: 2015-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-api-client
@@ -184,7 +184,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
184
  version: '0'
185
185
  requirements: []
186
186
  rubyforge_project:
187
- rubygems_version: 2.2.2
187
+ rubygems_version: 2.4.3
188
188
  signing_key:
189
189
  specification_version: 4
190
190
  summary: A thin layer on top of Google::APIClient (google-api-client) for a more intuitive