yehezkielbs-gdata 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.
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 +114 -0
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yehezkielbs-gdata
3
+ version: !ruby/object:Gem::Version
4
+ hash: 23
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 1
9
+ - 2
10
+ version: 1.1.2
11
+ platform: ruby
12
+ authors:
13
+ - Jeff Fisher, Trevor Johns, JKarlsson
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-07-02 00:00:00 Z
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: trevorjohns@google.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/auth/authsub.rb
38
+ - lib/gdata/auth/clientlogin.rb
39
+ - lib/gdata/auth/oauth.rb
40
+ - lib/gdata/auth.rb
41
+ - lib/gdata/client/apps.rb
42
+ - lib/gdata/client/base.rb
43
+ - lib/gdata/client/blogger.rb
44
+ - lib/gdata/client/booksearch.rb
45
+ - lib/gdata/client/calendar.rb
46
+ - lib/gdata/client/contacts.rb
47
+ - lib/gdata/client/doclist.rb
48
+ - lib/gdata/client/finance.rb
49
+ - lib/gdata/client/gbase.rb
50
+ - lib/gdata/client/gmail.rb
51
+ - lib/gdata/client/health.rb
52
+ - lib/gdata/client/notebook.rb
53
+ - lib/gdata/client/photos.rb
54
+ - lib/gdata/client/spreadsheets.rb
55
+ - lib/gdata/client/webmaster_tools.rb
56
+ - lib/gdata/client/youtube.rb
57
+ - lib/gdata/client.rb
58
+ - lib/gdata/http/default_service.rb
59
+ - lib/gdata/http/mime_body.rb
60
+ - lib/gdata/http/request.rb
61
+ - lib/gdata/http/response.rb
62
+ - lib/gdata/http.rb
63
+ - lib/gdata.rb
64
+ - test/tc_gdata_auth_authsub.rb
65
+ - test/tc_gdata_auth_clientlogin.rb
66
+ - test/tc_gdata_client_base.rb
67
+ - test/tc_gdata_client_calendar.rb
68
+ - test/tc_gdata_client_photos.rb
69
+ - test/tc_gdata_client_youtube.rb
70
+ - test/tc_gdata_http_mime_body.rb
71
+ - test/tc_gdata_http_request.rb
72
+ - test/test_config.yml.example
73
+ - test/test_helper.rb
74
+ - test/testimage.jpg
75
+ - test/ts_gdata.rb
76
+ - test/ts_gdata_auth.rb
77
+ - test/ts_gdata_client.rb
78
+ - test/ts_gdata_http.rb
79
+ homepage: https://github.com/yehezkielbs/gdata-ruby-util
80
+ licenses: []
81
+
82
+ post_install_message:
83
+ rdoc_options:
84
+ - --main
85
+ - README
86
+ require_paths:
87
+ - lib
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ hash: 3
94
+ segments:
95
+ - 0
96
+ version: "0"
97
+ required_rubygems_version: !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ hash: 3
103
+ segments:
104
+ - 0
105
+ version: "0"
106
+ requirements:
107
+ - none
108
+ rubyforge_project: gdata
109
+ rubygems_version: 1.8.24
110
+ signing_key:
111
+ specification_version: 3
112
+ summary: Google Data APIs Ruby Utility Library
113
+ test_files:
114
+ - test/ts_gdata.rb