chocolate_rain 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile +4 -0
  3. data/Rakefile +1 -0
  4. data/chocolate_rain.gemspec +26 -0
  5. data/generators/youtube_model/USAGE +3 -0
  6. data/generators/youtube_model/templates/config.yml +6 -0
  7. data/generators/youtube_model/templates/model.rb +17 -0
  8. data/generators/youtube_model/templates/unit_test.rb +7 -0
  9. data/generators/youtube_model/youtube_model_generator.rb +15 -0
  10. data/lib/.DS_Store +0 -0
  11. data/lib/chocolate_rain.rb +5 -0
  12. data/lib/chocolate_rain/version.rb +3 -0
  13. data/lib/gdata/auth/authsub.rb +161 -0
  14. data/lib/gdata/auth/clientlogin.rb +102 -0
  15. data/lib/gdata/client.rb +84 -0
  16. data/lib/gdata/client/apps.rb +27 -0
  17. data/lib/gdata/client/base.rb +182 -0
  18. data/lib/gdata/client/blogger.rb +28 -0
  19. data/lib/gdata/client/booksearch.rb +28 -0
  20. data/lib/gdata/client/calendar.rb +58 -0
  21. data/lib/gdata/client/contacts.rb +28 -0
  22. data/lib/gdata/client/doclist.rb +28 -0
  23. data/lib/gdata/client/finance.rb +28 -0
  24. data/lib/gdata/client/gbase.rb +28 -0
  25. data/lib/gdata/client/gmail.rb +28 -0
  26. data/lib/gdata/client/health.rb +28 -0
  27. data/lib/gdata/client/notebook.rb +28 -0
  28. data/lib/gdata/client/photos.rb +29 -0
  29. data/lib/gdata/client/spreadsheets.rb +28 -0
  30. data/lib/gdata/client/webmaster_tools.rb +28 -0
  31. data/lib/gdata/client/youtube.rb +47 -0
  32. data/lib/gdata/g_data.rb +22 -0
  33. data/lib/gdata/http.rb +18 -0
  34. data/lib/gdata/http/default_service.rb +82 -0
  35. data/lib/gdata/http/mime_body.rb +95 -0
  36. data/lib/gdata/http/request.rb +74 -0
  37. data/lib/gdata/http/response.rb +44 -0
  38. data/lib/youtube_helpers.rb +58 -0
  39. data/lib/youtube_model.rb +341 -0
  40. metadata +84 -0
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chocolate_rain
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Kevin Hopkins
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-11-22 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: YouTube API wrapper for 1.9.2 compatible with Rails >= 3.1
15
+ email:
16
+ - kevin@wearefound.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - Gemfile
23
+ - Rakefile
24
+ - chocolate_rain.gemspec
25
+ - generators/youtube_model/USAGE
26
+ - generators/youtube_model/templates/config.yml
27
+ - generators/youtube_model/templates/model.rb
28
+ - generators/youtube_model/templates/unit_test.rb
29
+ - generators/youtube_model/youtube_model_generator.rb
30
+ - lib/.DS_Store
31
+ - lib/chocolate_rain.rb
32
+ - lib/chocolate_rain/version.rb
33
+ - lib/gdata/auth/authsub.rb
34
+ - lib/gdata/auth/clientlogin.rb
35
+ - lib/gdata/client.rb
36
+ - lib/gdata/client/apps.rb
37
+ - lib/gdata/client/base.rb
38
+ - lib/gdata/client/blogger.rb
39
+ - lib/gdata/client/booksearch.rb
40
+ - lib/gdata/client/calendar.rb
41
+ - lib/gdata/client/contacts.rb
42
+ - lib/gdata/client/doclist.rb
43
+ - lib/gdata/client/finance.rb
44
+ - lib/gdata/client/gbase.rb
45
+ - lib/gdata/client/gmail.rb
46
+ - lib/gdata/client/health.rb
47
+ - lib/gdata/client/notebook.rb
48
+ - lib/gdata/client/photos.rb
49
+ - lib/gdata/client/spreadsheets.rb
50
+ - lib/gdata/client/webmaster_tools.rb
51
+ - lib/gdata/client/youtube.rb
52
+ - lib/gdata/g_data.rb
53
+ - lib/gdata/http.rb
54
+ - lib/gdata/http/default_service.rb
55
+ - lib/gdata/http/mime_body.rb
56
+ - lib/gdata/http/request.rb
57
+ - lib/gdata/http/response.rb
58
+ - lib/youtube_helpers.rb
59
+ - lib/youtube_model.rb
60
+ homepage: ''
61
+ licenses: []
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ! '>='
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: 1.8.6
78
+ requirements: []
79
+ rubyforge_project: chocolate_rain
80
+ rubygems_version: 1.8.6
81
+ signing_key:
82
+ specification_version: 3
83
+ summary: YouTube API wrapper for 1.9.2 compatible with Rails >= 3.1
84
+ test_files: []