gdata 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
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 = 'jfisher@youtube.com'
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.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] ||= 'http://www.google.com/books/feeds/'
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] ||= 'http://www.google.com/calendar/feeds/'
26
+ options[:authsub_scope] ||= 'https://www.google.com/calendar/feeds/'
27
27
  super(options)
28
28
  end
29
29
 
@@ -20,7 +20,7 @@ module GData
20
20
 
21
21
  def initialize(options = {})
22
22
  options[:clientlogin_service] ||= 'cp'
23
- options[:authsub_scope] ||= 'http://www.google.com/m8/feeds/'
23
+ options[:authsub_scope] ||= 'https://www.google.com/m8/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] ||= 'writely'
23
- options[:authsub_scope] ||= 'http://docs.google.com/feeds/'
23
+ options[:authsub_scope] ||= 'https://docs.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] ||= 'gbase'
23
- options[:authsub_scope] ||= 'http://www.google.com/base/feeds/'
23
+ options[:authsub_scope] ||= 'https://www.google.com/base/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] ||= 'notebook'
23
- options[:authsub_scope] ||= 'http://www.google.com/notebook/feeds/'
23
+ options[:authsub_scope] ||= 'https://www.google.com/notebook/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] ||= 'lh2'
23
- options[:authsub_scope] ||= 'http://picasaweb.google.com/data/'
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] ||= 'http://spreadsheets.google.com/feeds/'
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] ||= 'http://www.google.com/webmasters/tools/feeds/'
23
+ options[:authsub_scope] ||= 'https://www.google.com/webmasters/tools/feeds/'
24
24
  super(options)
25
25
  end
26
26
  end
@@ -0,0 +1,7 @@
1
+ ---
2
+ username: myaccount
3
+ password: mypassword
4
+ # uncomment to test authsub
5
+ #authsub_token: someauthsubtoken
6
+ # uncomment to test secure authsub
7
+ #authsub_private_key: /path/to/private/key
metadata CHANGED
@@ -1,15 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gdata
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
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: 2009-11-09 00:00:00 -08:00
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: jfisher@youtube.com
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.3.5
110
+ rubygems_version: 1.6.2
98
111
  signing_key:
99
112
  specification_version: 3
100
113
  summary: Google Data APIs Ruby Utility Library