jkarlsson-gdata 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.
Files changed (46) hide show
  1. data/LICENSE +202 -0
  2. data/README +97 -0
  3. data/Rakefile +64 -0
  4. data/lib/gdata.rb +22 -0
  5. data/lib/gdata/auth.rb +23 -0
  6. data/lib/gdata/auth/authsub.rb +161 -0
  7. data/lib/gdata/auth/clientlogin.rb +102 -0
  8. data/lib/gdata/auth/oauth.rb +129 -0
  9. data/lib/gdata/client.rb +84 -0
  10. data/lib/gdata/client/apps.rb +27 -0
  11. data/lib/gdata/client/base.rb +187 -0
  12. data/lib/gdata/client/blogger.rb +28 -0
  13. data/lib/gdata/client/booksearch.rb +28 -0
  14. data/lib/gdata/client/calendar.rb +58 -0
  15. data/lib/gdata/client/contacts.rb +28 -0
  16. data/lib/gdata/client/doclist.rb +28 -0
  17. data/lib/gdata/client/finance.rb +28 -0
  18. data/lib/gdata/client/gbase.rb +28 -0
  19. data/lib/gdata/client/gmail.rb +28 -0
  20. data/lib/gdata/client/health.rb +28 -0
  21. data/lib/gdata/client/notebook.rb +28 -0
  22. data/lib/gdata/client/photos.rb +29 -0
  23. data/lib/gdata/client/spreadsheets.rb +28 -0
  24. data/lib/gdata/client/webmaster_tools.rb +28 -0
  25. data/lib/gdata/client/youtube.rb +47 -0
  26. data/lib/gdata/http.rb +18 -0
  27. data/lib/gdata/http/default_service.rb +82 -0
  28. data/lib/gdata/http/mime_body.rb +106 -0
  29. data/lib/gdata/http/request.rb +74 -0
  30. data/lib/gdata/http/response.rb +44 -0
  31. data/test/tc_gdata_auth_authsub.rb +53 -0
  32. data/test/tc_gdata_auth_clientlogin.rb +59 -0
  33. data/test/tc_gdata_client_base.rb +37 -0
  34. data/test/tc_gdata_client_calendar.rb +40 -0
  35. data/test/tc_gdata_client_photos.rb +65 -0
  36. data/test/tc_gdata_client_youtube.rb +77 -0
  37. data/test/tc_gdata_http_mime_body.rb +46 -0
  38. data/test/tc_gdata_http_request.rb +36 -0
  39. data/test/test_config.yml.example +7 -0
  40. data/test/test_helper.rb +47 -0
  41. data/test/testimage.jpg +0 -0
  42. data/test/ts_gdata.rb +42 -0
  43. data/test/ts_gdata_auth.rb +25 -0
  44. data/test/ts_gdata_client.rb +29 -0
  45. data/test/ts_gdata_http.rb +25 -0
  46. metadata +111 -0
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jkarlsson-gdata
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 1
8
+ - 1
9
+ version: 1.1.1
10
+ platform: ruby
11
+ authors:
12
+ - Jeff Fisher
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-02-11 00:00:00 +01:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: |
22
+ This gem provides a set of wrappers designed to make it easy to work with
23
+ the Google Data APIs. This fork enables OAuth authentication
24
+
25
+ email: jfisher@youtube.com
26
+ executables: []
27
+
28
+ extensions: []
29
+
30
+ extra_rdoc_files:
31
+ - README
32
+ - LICENSE
33
+ files:
34
+ - LICENSE
35
+ - Rakefile
36
+ - README
37
+ - lib/gdata.rb
38
+ - lib/gdata/auth/authsub.rb
39
+ - lib/gdata/auth/oauth.rb
40
+ - lib/gdata/auth/clientlogin.rb
41
+ - lib/gdata/http/response.rb
42
+ - lib/gdata/http/mime_body.rb
43
+ - lib/gdata/http/request.rb
44
+ - lib/gdata/http/default_service.rb
45
+ - lib/gdata/client/spreadsheets.rb
46
+ - lib/gdata/client/finance.rb
47
+ - lib/gdata/client/calendar.rb
48
+ - lib/gdata/client/blogger.rb
49
+ - lib/gdata/client/health.rb
50
+ - lib/gdata/client/gmail.rb
51
+ - lib/gdata/client/youtube.rb
52
+ - lib/gdata/client/base.rb
53
+ - lib/gdata/client/notebook.rb
54
+ - lib/gdata/client/apps.rb
55
+ - lib/gdata/client/gbase.rb
56
+ - lib/gdata/client/webmaster_tools.rb
57
+ - lib/gdata/client/photos.rb
58
+ - lib/gdata/client/booksearch.rb
59
+ - lib/gdata/client/contacts.rb
60
+ - lib/gdata/client/doclist.rb
61
+ - lib/gdata/client.rb
62
+ - lib/gdata/auth.rb
63
+ - lib/gdata/http.rb
64
+ - test/tc_gdata_auth_authsub.rb
65
+ - test/testimage.jpg
66
+ - test/ts_gdata_auth.rb
67
+ - test/ts_gdata_http.rb
68
+ - test/ts_gdata.rb
69
+ - test/tc_gdata_client_youtube.rb
70
+ - test/tc_gdata_http_mime_body.rb
71
+ - test/tc_gdata_client_photos.rb
72
+ - test/test_config.yml.example
73
+ - test/tc_gdata_client_base.rb
74
+ - test/tc_gdata_http_request.rb
75
+ - test/ts_gdata_client.rb
76
+ - test/test_helper.rb
77
+ - test/tc_gdata_client_calendar.rb
78
+ - test/tc_gdata_auth_clientlogin.rb
79
+ has_rdoc: true
80
+ homepage: http://code.google.com/p/gdata-ruby-util
81
+ licenses: []
82
+
83
+ post_install_message:
84
+ rdoc_options:
85
+ - --main
86
+ - README
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ segments:
94
+ - 0
95
+ version: "0"
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ segments:
101
+ - 0
102
+ version: "0"
103
+ requirements:
104
+ - none
105
+ rubyforge_project: gdata
106
+ rubygems_version: 1.3.6
107
+ signing_key:
108
+ specification_version: 3
109
+ summary: Google Data APIs Ruby Utility Library
110
+ test_files:
111
+ - test/ts_gdata.rb