gdata 1.1.1 → 1.1.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.
- data/Rakefile +3 -3
- 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/test/test_config.yml.example +7 -0
- metadata +20 -7
data/Rakefile
CHANGED
|
@@ -36,13 +36,13 @@ end
|
|
|
36
36
|
|
|
37
37
|
spec = Gem::Specification.new do |s|
|
|
38
38
|
s.platform = Gem::Platform::RUBY
|
|
39
|
-
s.author = 'Jeff Fisher'
|
|
40
|
-
s.email = '
|
|
39
|
+
s.author = 'Jeff Fisher, Trevor Johns'
|
|
40
|
+
s.email = 'trevorjohns@google.com'
|
|
41
41
|
s.homepage = 'http://code.google.com/p/gdata-ruby-util'
|
|
42
42
|
s.summary = "Google Data APIs Ruby Utility Library"
|
|
43
43
|
s.rubyforge_project = 'gdata'
|
|
44
44
|
s.name = 'gdata'
|
|
45
|
-
s.version = '1.1.
|
|
45
|
+
s.version = '1.1.2'
|
|
46
46
|
s.requirements << 'none'
|
|
47
47
|
s.require_path = 'lib'
|
|
48
48
|
s.test_files = FileList['test/ts_gdata.rb']
|
|
@@ -20,7 +20,7 @@ module GData
|
|
|
20
20
|
|
|
21
21
|
def initialize(options = {})
|
|
22
22
|
options[:clientlogin_service] ||= 'print'
|
|
23
|
-
options[:authsub_scope] ||= '
|
|
23
|
+
options[:authsub_scope] ||= 'https://www.google.com/books/feeds/'
|
|
24
24
|
super(options)
|
|
25
25
|
end
|
|
26
26
|
end
|
|
@@ -23,7 +23,7 @@ module GData
|
|
|
23
23
|
|
|
24
24
|
def initialize(options = {})
|
|
25
25
|
options[:clientlogin_service] ||= 'cl'
|
|
26
|
-
options[:authsub_scope] ||= '
|
|
26
|
+
options[:authsub_scope] ||= 'https://www.google.com/calendar/feeds/'
|
|
27
27
|
super(options)
|
|
28
28
|
end
|
|
29
29
|
|
data/lib/gdata/client/doclist.rb
CHANGED
data/lib/gdata/client/gbase.rb
CHANGED
|
@@ -20,7 +20,7 @@ module GData
|
|
|
20
20
|
|
|
21
21
|
def initialize(options = {})
|
|
22
22
|
options[:clientlogin_service] ||= 'notebook'
|
|
23
|
-
options[:authsub_scope] ||= '
|
|
23
|
+
options[:authsub_scope] ||= 'https://www.google.com/notebook/feeds/'
|
|
24
24
|
super(options)
|
|
25
25
|
end
|
|
26
26
|
end
|
data/lib/gdata/client/photos.rb
CHANGED
|
@@ -20,7 +20,7 @@ module GData
|
|
|
20
20
|
|
|
21
21
|
def initialize(options = {})
|
|
22
22
|
options[:clientlogin_service] ||= 'lh2'
|
|
23
|
-
options[:authsub_scope] ||= '
|
|
23
|
+
options[:authsub_scope] ||= 'https://picasaweb.google.com/data/'
|
|
24
24
|
options[:version] ||= '1'
|
|
25
25
|
super(options)
|
|
26
26
|
end
|
|
@@ -20,7 +20,7 @@ module GData
|
|
|
20
20
|
|
|
21
21
|
def initialize(options = {})
|
|
22
22
|
options[:clientlogin_service] ||= 'wise'
|
|
23
|
-
options[:authsub_scope] ||= '
|
|
23
|
+
options[:authsub_scope] ||= 'https://spreadsheets.google.com/feeds/'
|
|
24
24
|
super(options)
|
|
25
25
|
end
|
|
26
26
|
end
|
|
@@ -20,7 +20,7 @@ module GData
|
|
|
20
20
|
|
|
21
21
|
def initialize(options = {})
|
|
22
22
|
options[:clientlogin_service] ||= 'sitemaps'
|
|
23
|
-
options[:authsub_scope] ||= '
|
|
23
|
+
options[:authsub_scope] ||= 'https://www.google.com/webmasters/tools/feeds/'
|
|
24
24
|
super(options)
|
|
25
25
|
end
|
|
26
26
|
end
|
metadata
CHANGED
|
@@ -1,15 +1,21 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gdata
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 23
|
|
5
|
+
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 1
|
|
8
|
+
- 1
|
|
9
|
+
- 2
|
|
10
|
+
version: 1.1.2
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
|
-
- Jeff Fisher
|
|
13
|
+
- Jeff Fisher, Trevor Johns
|
|
8
14
|
autorequire:
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date:
|
|
18
|
+
date: 2011-03-28 00:00:00 -07:00
|
|
13
19
|
default_executable:
|
|
14
20
|
dependencies: []
|
|
15
21
|
|
|
@@ -17,7 +23,7 @@ description: |
|
|
|
17
23
|
This gem provides a set of wrappers designed to make it easy to work with
|
|
18
24
|
the Google Data APIs.
|
|
19
25
|
|
|
20
|
-
email:
|
|
26
|
+
email: trevorjohns@google.com
|
|
21
27
|
executables: []
|
|
22
28
|
|
|
23
29
|
extensions: []
|
|
@@ -63,6 +69,7 @@ files:
|
|
|
63
69
|
- test/tc_gdata_client_youtube.rb
|
|
64
70
|
- test/tc_gdata_http_mime_body.rb
|
|
65
71
|
- test/tc_gdata_http_request.rb
|
|
72
|
+
- test/test_config.yml.example
|
|
66
73
|
- test/test_helper.rb
|
|
67
74
|
- test/testimage.jpg
|
|
68
75
|
- test/ts_gdata.rb
|
|
@@ -80,21 +87,27 @@ rdoc_options:
|
|
|
80
87
|
require_paths:
|
|
81
88
|
- lib
|
|
82
89
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
|
+
none: false
|
|
83
91
|
requirements:
|
|
84
92
|
- - ">="
|
|
85
93
|
- !ruby/object:Gem::Version
|
|
94
|
+
hash: 3
|
|
95
|
+
segments:
|
|
96
|
+
- 0
|
|
86
97
|
version: "0"
|
|
87
|
-
version:
|
|
88
98
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
|
+
none: false
|
|
89
100
|
requirements:
|
|
90
101
|
- - ">="
|
|
91
102
|
- !ruby/object:Gem::Version
|
|
103
|
+
hash: 3
|
|
104
|
+
segments:
|
|
105
|
+
- 0
|
|
92
106
|
version: "0"
|
|
93
|
-
version:
|
|
94
107
|
requirements:
|
|
95
108
|
- none
|
|
96
109
|
rubyforge_project: gdata
|
|
97
|
-
rubygems_version: 1.
|
|
110
|
+
rubygems_version: 1.6.2
|
|
98
111
|
signing_key:
|
|
99
112
|
specification_version: 3
|
|
100
113
|
summary: Google Data APIs Ruby Utility Library
|