gdata 1.1.0 → 1.1.1
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 +2 -10
- data/lib/gdata/client/base.rb +1 -1
- data/lib/gdata/http/mime_body.rb +2 -2
- metadata +10 -6
- data/test/test_config.yml.example +0 -7
data/Rakefile
CHANGED
@@ -26,15 +26,7 @@ end
|
|
26
26
|
task :prepdoc do
|
27
27
|
all_doc_files = FileList.new('doc/**/*')
|
28
28
|
all_doc_files.each do |file|
|
29
|
-
system "
|
30
|
-
end
|
31
|
-
doc_files = FileList.new('doc/**/*.html')
|
32
|
-
doc_files.each do |file|
|
33
|
-
system "svn propset svn:mime-type 'text/html' #{file}"
|
34
|
-
end
|
35
|
-
css_files = FileList.new('doc/**/*.css')
|
36
|
-
css_files.each do |file|
|
37
|
-
system "svn propset svn:mime-type 'text/css' #{file}"
|
29
|
+
system "hg add #{file}"
|
38
30
|
end
|
39
31
|
end
|
40
32
|
|
@@ -50,7 +42,7 @@ spec = Gem::Specification.new do |s|
|
|
50
42
|
s.summary = "Google Data APIs Ruby Utility Library"
|
51
43
|
s.rubyforge_project = 'gdata'
|
52
44
|
s.name = 'gdata'
|
53
|
-
s.version = '1.1.
|
45
|
+
s.version = '1.1.1'
|
54
46
|
s.requirements << 'none'
|
55
47
|
s.require_path = 'lib'
|
56
48
|
s.test_files = FileList['test/ts_gdata.rb']
|
data/lib/gdata/client/base.rb
CHANGED
data/lib/gdata/http/mime_body.rb
CHANGED
@@ -62,7 +62,7 @@ module GData
|
|
62
62
|
wrapped_entry = "--#{@boundary}\r\n"
|
63
63
|
wrapped_entry += "Content-Type: application/atom+xml\r\n\r\n"
|
64
64
|
wrapped_entry += entry
|
65
|
-
wrapped_entry += "--#{@boundary}\r\n"
|
65
|
+
wrapped_entry += "\r\n--#{@boundary}\r\n"
|
66
66
|
wrapped_entry += "Content-Type: #{file_mime_type}\r\n\r\n"
|
67
67
|
return MimeBodyString.new(wrapped_entry)
|
68
68
|
end
|
@@ -92,4 +92,4 @@ module GData
|
|
92
92
|
end
|
93
93
|
end
|
94
94
|
end
|
95
|
-
end
|
95
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gdata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Fisher
|
@@ -9,11 +9,14 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-11-09 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description:
|
16
|
+
description: |
|
17
|
+
This gem provides a set of wrappers designed to make it easy to work with
|
18
|
+
the Google Data APIs.
|
19
|
+
|
17
20
|
email: jfisher@youtube.com
|
18
21
|
executables: []
|
19
22
|
|
@@ -60,7 +63,6 @@ files:
|
|
60
63
|
- test/tc_gdata_client_youtube.rb
|
61
64
|
- test/tc_gdata_http_mime_body.rb
|
62
65
|
- test/tc_gdata_http_request.rb
|
63
|
-
- test/test_config.yml.example
|
64
66
|
- test/test_helper.rb
|
65
67
|
- test/testimage.jpg
|
66
68
|
- test/ts_gdata.rb
|
@@ -69,6 +71,8 @@ files:
|
|
69
71
|
- test/ts_gdata_http.rb
|
70
72
|
has_rdoc: true
|
71
73
|
homepage: http://code.google.com/p/gdata-ruby-util
|
74
|
+
licenses: []
|
75
|
+
|
72
76
|
post_install_message:
|
73
77
|
rdoc_options:
|
74
78
|
- --main
|
@@ -90,9 +94,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
94
|
requirements:
|
91
95
|
- none
|
92
96
|
rubyforge_project: gdata
|
93
|
-
rubygems_version: 1.3.
|
97
|
+
rubygems_version: 1.3.5
|
94
98
|
signing_key:
|
95
|
-
specification_version:
|
99
|
+
specification_version: 3
|
96
100
|
summary: Google Data APIs Ruby Utility Library
|
97
101
|
test_files:
|
98
102
|
- test/ts_gdata.rb
|