gdata_19 1.1.2 → 1.1.3
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.
- data/README +1 -1
- data/VERSION +1 -1
- data/{gdata19.gemspec → gdata_19.gemspec} +7 -7
- data/lib/gdata/client/booksearch.rb +1 -1
- data/lib/gdata/client/calendar.rb +1 -1
- data/lib/gdata/client/contacts.rb +1 -1
- data/lib/gdata/client/doclist.rb +1 -1
- data/lib/gdata/client/gbase.rb +1 -1
- data/lib/gdata/client/notebook.rb +1 -1
- data/lib/gdata/client/photos.rb +1 -1
- data/lib/gdata/client/spreadsheets.rb +1 -1
- data/lib/gdata/client/webmaster_tools.rb +1 -1
- data/pkg/gdata_19-1.1.2.gem +0 -0
- metadata +6 -11
- data/pkg/gdata19-1.1.2.gem +0 -0
data/README
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.3
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name = %q{
|
|
8
|
-
s.version = "1.1.
|
|
7
|
+
s.name = %q{gdata_19}
|
|
8
|
+
s.version = "1.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jeff Fisher"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-08-31}
|
|
13
13
|
s.default_executable = %q{test_captcha.rb}
|
|
14
14
|
s.description = %q{This gem provides a set of wrappers designed to make it easy to work with
|
|
15
15
|
the Google Data APIs with 1.9 compat}
|
|
@@ -228,7 +228,7 @@ Gem::Specification.new do |s|
|
|
|
228
228
|
"doc/fr_method_index.html",
|
|
229
229
|
"doc/index.html",
|
|
230
230
|
"doc/rdoc-style.css",
|
|
231
|
-
"
|
|
231
|
+
"gdata_19.gemspec",
|
|
232
232
|
"lib/gdata.rb",
|
|
233
233
|
"lib/gdata/auth.rb",
|
|
234
234
|
"lib/gdata/auth/authsub.rb",
|
|
@@ -255,7 +255,7 @@ Gem::Specification.new do |s|
|
|
|
255
255
|
"lib/gdata/http/mime_body.rb",
|
|
256
256
|
"lib/gdata/http/request.rb",
|
|
257
257
|
"lib/gdata/http/response.rb",
|
|
258
|
-
"pkg/
|
|
258
|
+
"pkg/gdata_19-1.1.2.gem",
|
|
259
259
|
"test/tc_gdata_auth_authsub.rb",
|
|
260
260
|
"test/tc_gdata_auth_clientlogin.rb",
|
|
261
261
|
"test/tc_gdata_client_base.rb",
|
|
@@ -275,7 +275,7 @@ Gem::Specification.new do |s|
|
|
|
275
275
|
s.homepage = %q{http://github.com/tokumine/GData}
|
|
276
276
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
277
277
|
s.require_paths = ["lib"]
|
|
278
|
-
s.rubygems_version = %q{1.3.
|
|
278
|
+
s.rubygems_version = %q{1.3.6}
|
|
279
279
|
s.summary = %q{Google Data APIs Ruby Utility Library}
|
|
280
280
|
s.test_files = [
|
|
281
281
|
"test/ts_gdata.rb"
|
|
@@ -285,7 +285,7 @@ Gem::Specification.new do |s|
|
|
|
285
285
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
286
286
|
s.specification_version = 3
|
|
287
287
|
|
|
288
|
-
if Gem::Version.new(Gem::
|
|
288
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
289
289
|
else
|
|
290
290
|
end
|
|
291
291
|
else
|
|
@@ -21,7 +21,7 @@ module GData
|
|
|
21
21
|
|
|
22
22
|
def initialize(options = {})
|
|
23
23
|
options[:clientlogin_service] ||= 'print'
|
|
24
|
-
options[:authsub_scope] ||= '
|
|
24
|
+
options[:authsub_scope] ||= 'https://www.google.com/books/feeds/'
|
|
25
25
|
super(options)
|
|
26
26
|
end
|
|
27
27
|
end
|
|
@@ -24,7 +24,7 @@ module GData
|
|
|
24
24
|
|
|
25
25
|
def initialize(options = {})
|
|
26
26
|
options[:clientlogin_service] ||= 'cl'
|
|
27
|
-
options[:authsub_scope] ||= '
|
|
27
|
+
options[:authsub_scope] ||= 'https://www.google.com/calendar/feeds/'
|
|
28
28
|
super(options)
|
|
29
29
|
end
|
|
30
30
|
|
data/lib/gdata/client/doclist.rb
CHANGED
data/lib/gdata/client/gbase.rb
CHANGED
|
@@ -21,7 +21,7 @@ module GData
|
|
|
21
21
|
|
|
22
22
|
def initialize(options = {})
|
|
23
23
|
options[:clientlogin_service] ||= 'notebook'
|
|
24
|
-
options[:authsub_scope] ||= '
|
|
24
|
+
options[:authsub_scope] ||= 'https://www.google.com/notebook/feeds/'
|
|
25
25
|
super(options)
|
|
26
26
|
end
|
|
27
27
|
end
|
data/lib/gdata/client/photos.rb
CHANGED
|
@@ -21,7 +21,7 @@ module GData
|
|
|
21
21
|
|
|
22
22
|
def initialize(options = {})
|
|
23
23
|
options[:clientlogin_service] ||= 'lh2'
|
|
24
|
-
options[:authsub_scope] ||= '
|
|
24
|
+
options[:authsub_scope] ||= 'https://picasaweb.google.com/data/'
|
|
25
25
|
options[:version] ||= '1'
|
|
26
26
|
super(options)
|
|
27
27
|
end
|
|
@@ -21,7 +21,7 @@ module GData
|
|
|
21
21
|
|
|
22
22
|
def initialize(options = {})
|
|
23
23
|
options[:clientlogin_service] ||= 'wise'
|
|
24
|
-
options[:authsub_scope] ||= '
|
|
24
|
+
options[:authsub_scope] ||= 'https://spreadsheets.google.com/feeds/'
|
|
25
25
|
super(options)
|
|
26
26
|
end
|
|
27
27
|
end
|
|
@@ -21,7 +21,7 @@ module GData
|
|
|
21
21
|
|
|
22
22
|
def initialize(options = {})
|
|
23
23
|
options[:clientlogin_service] ||= 'sitemaps'
|
|
24
|
-
options[:authsub_scope] ||= '
|
|
24
|
+
options[:authsub_scope] ||= 'https://www.google.com/webmasters/tools/feeds/'
|
|
25
25
|
super(options)
|
|
26
26
|
end
|
|
27
27
|
end
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gdata_19
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash: 23
|
|
5
4
|
prerelease: false
|
|
6
5
|
segments:
|
|
7
6
|
- 1
|
|
8
7
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 1.1.
|
|
8
|
+
- 3
|
|
9
|
+
version: 1.1.3
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- Jeff Fisher
|
|
@@ -15,7 +14,7 @@ autorequire:
|
|
|
15
14
|
bindir: bin
|
|
16
15
|
cert_chain: []
|
|
17
16
|
|
|
18
|
-
date:
|
|
17
|
+
date: 2011-08-31 00:00:00 +01:00
|
|
19
18
|
default_executable: test_captcha.rb
|
|
20
19
|
dependencies: []
|
|
21
20
|
|
|
@@ -239,7 +238,7 @@ files:
|
|
|
239
238
|
- doc/fr_method_index.html
|
|
240
239
|
- doc/index.html
|
|
241
240
|
- doc/rdoc-style.css
|
|
242
|
-
-
|
|
241
|
+
- gdata_19.gemspec
|
|
243
242
|
- lib/gdata.rb
|
|
244
243
|
- lib/gdata/auth.rb
|
|
245
244
|
- lib/gdata/auth/authsub.rb
|
|
@@ -266,7 +265,7 @@ files:
|
|
|
266
265
|
- lib/gdata/http/mime_body.rb
|
|
267
266
|
- lib/gdata/http/request.rb
|
|
268
267
|
- lib/gdata/http/response.rb
|
|
269
|
-
- pkg/
|
|
268
|
+
- pkg/gdata_19-1.1.2.gem
|
|
270
269
|
- test/tc_gdata_auth_authsub.rb
|
|
271
270
|
- test/tc_gdata_auth_clientlogin.rb
|
|
272
271
|
- test/tc_gdata_client_base.rb
|
|
@@ -292,27 +291,23 @@ rdoc_options:
|
|
|
292
291
|
require_paths:
|
|
293
292
|
- lib
|
|
294
293
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
295
|
-
none: false
|
|
296
294
|
requirements:
|
|
297
295
|
- - ">="
|
|
298
296
|
- !ruby/object:Gem::Version
|
|
299
|
-
hash: 3
|
|
300
297
|
segments:
|
|
301
298
|
- 0
|
|
302
299
|
version: "0"
|
|
303
300
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
304
|
-
none: false
|
|
305
301
|
requirements:
|
|
306
302
|
- - ">="
|
|
307
303
|
- !ruby/object:Gem::Version
|
|
308
|
-
hash: 3
|
|
309
304
|
segments:
|
|
310
305
|
- 0
|
|
311
306
|
version: "0"
|
|
312
307
|
requirements: []
|
|
313
308
|
|
|
314
309
|
rubyforge_project:
|
|
315
|
-
rubygems_version: 1.3.
|
|
310
|
+
rubygems_version: 1.3.6
|
|
316
311
|
signing_key:
|
|
317
312
|
specification_version: 3
|
|
318
313
|
summary: Google Data APIs Ruby Utility Library
|
data/pkg/gdata19-1.1.2.gem
DELETED
|
Binary file
|