google-api-client 0.8.1 → 0.8.2

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NGZjMGY0OWZhMzkxM2YyNjk0OTllZTVkYTYwYzg0ZTMzNzAyNmNiOA==
4
+ Yzk3YTYzM2JmNDBhNTAyODAyMjJiMDE1YTYzZjRjMjJhZTE1NjEzMQ==
5
5
  data.tar.gz: !binary |-
6
- YmM5NzYxMDhiZjg3M2Q4YjBlYjcxNDVkNmQ4MDgxZDdlYzcyY2ExYg==
6
+ ZGJlZTRjNzY4NzY0ZjU5NGY4N2EwYTM0Yzg1OTk1MzY1MDhiOGY2OA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZGFjYjdiOWUzYmUyODgwNmQ2M2Y1MzNmMWU0MDdlY2FhMTE5MzlhZDkwN2E4
10
- ZTg5MTcwNzY4Yjk5OTM3MmJmNWU4Mjg2ODc5MWM3N2JhZDUzYTA4ZGM1NzY5
11
- YmVjNTYyYTFkMWU3MDU3NmMzNjUyOTI2YWFiYzlmNDc3YzY3NGE=
9
+ N2I4M2JmYTQ5OTQ0ZjMyZTM4MmQyOGE3ZWQ5MDFiZmY5YjlkMmM4ZGRlN2M0
10
+ OWQzN2Q1MzVhZTNkM2M1MTkyYmNlMWY4ZGI4MTMyMzA3ZDI2YzQ5ZmYyZGZm
11
+ NTkwNTNiNGJiNzMxN2U2NmE4YWFjYWFjNGRhYmEzMmUxMmY3NGE=
12
12
  data.tar.gz: !binary |-
13
- M2MyNzI2NjNjYzM2M2ZkMDZhNzNhNzRjZjNhNmEwMDFjODViZTdhNWU1NTRi
14
- YzZjMGJhNWQ1YmNjYjJlYjMzMmQ0NGZiOWM4MjdmNTU3NzdiYTUyNWRlZGUy
15
- NTVlMjg1MTIxMzk2NzlhZjRmYmFlNmQ4NWJhNWM4MWU0ZmQxOTg=
13
+ MmYxMjg2MWYxOTg5ODExYWFhOGQxYmRmZDI4ZGVmOTkxZDExNzllYjViNzE3
14
+ ZDIzYTc0ZjEzYWU1M2I2YTc4MjdlZTVjOGNjMDY1NjEwZDJkMjYyNzc5Yzhi
15
+ OTkyMWQ3NzJjMjljOWQ2OTY1Nzk1ODFmMzU0NmM4MDA0MzdiMTQ=
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # 0.8.2
2
+ * Fixes for file storage and missing cacerts file
3
+
1
4
  # 0.8.1
2
5
  * Fix logger in rails
3
6
 
@@ -12,7 +15,7 @@
12
15
  * Added `:faraday_options` option to allow passthrough settings to Faraday connection
13
16
  * Drop 1.8.x support
14
17
  * This will be the last release with 1.9.x support
15
-
18
+
16
19
  # 0.7.1
17
20
  * Minor fix to update gem dependencies
18
21
 
@@ -62,7 +65,7 @@
62
65
 
63
66
  # 0.5.0
64
67
 
65
- * Beta candidate, potential incompatible changes with how requests are processed.
68
+ * Beta candidate, potential incompatible changes with how requests are processed.
66
69
  * All requests should be made using execute() or execute!()
67
70
  * :api_method in request can no longer be a string
68
71
  * Deprecated ResumableUpload.send_* methods.
data/README.md CHANGED
@@ -137,7 +137,7 @@ Example:
137
137
 
138
138
  ```ruby
139
139
  client = Google::APIClient.new
140
- urlshortener = client.discovered_api('urlshortner')
140
+ urlshortener = client.discovered_api('urlshortener')
141
141
 
142
142
  batch = Google::APIClient::BatchRequest.new do |result|
143
143
  puts result.data
@@ -14,6 +14,7 @@ Gem::Specification.new do |s|
14
14
  s.extra_rdoc_files = ["README.md"]
15
15
  s.files = %w(google-api-client.gemspec Rakefile LICENSE CHANGELOG.md README.md Gemfile)
16
16
  s.files += Dir.glob("lib/**/*.rb")
17
+ s.files += Dir.glob("lib/cacerts.pem")
17
18
  s.files += Dir.glob("spec/**/*.{rb,opts}")
18
19
  s.files += Dir.glob("vendor/**/*.rb")
19
20
  s.files += Dir.glob("tasks/**/*")
@@ -31,7 +32,7 @@ Gem::Specification.new do |s|
31
32
  s.add_runtime_dependency 'launchy', '~> 2.4'
32
33
  s.add_runtime_dependency 'retriable', '~> 1.4'
33
34
  s.add_runtime_dependency 'activesupport', '>= 3.2'
34
-
35
+
35
36
  s.add_development_dependency 'rake', '~> 10.0'
36
37
  s.add_development_dependency 'yard', '~> 0.8'
37
38
  s.add_development_dependency 'rspec', '~> 3.1'