chocolate_rain 0.0.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/.gitignore +4 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -0
- data/chocolate_rain.gemspec +26 -0
- data/generators/youtube_model/USAGE +3 -0
- data/generators/youtube_model/templates/config.yml +6 -0
- data/generators/youtube_model/templates/model.rb +17 -0
- data/generators/youtube_model/templates/unit_test.rb +7 -0
- data/generators/youtube_model/youtube_model_generator.rb +15 -0
- data/lib/.DS_Store +0 -0
- data/lib/chocolate_rain.rb +5 -0
- data/lib/chocolate_rain/version.rb +3 -0
- data/lib/gdata/auth/authsub.rb +161 -0
- data/lib/gdata/auth/clientlogin.rb +102 -0
- data/lib/gdata/client.rb +84 -0
- data/lib/gdata/client/apps.rb +27 -0
- data/lib/gdata/client/base.rb +182 -0
- data/lib/gdata/client/blogger.rb +28 -0
- data/lib/gdata/client/booksearch.rb +28 -0
- data/lib/gdata/client/calendar.rb +58 -0
- data/lib/gdata/client/contacts.rb +28 -0
- data/lib/gdata/client/doclist.rb +28 -0
- data/lib/gdata/client/finance.rb +28 -0
- data/lib/gdata/client/gbase.rb +28 -0
- data/lib/gdata/client/gmail.rb +28 -0
- data/lib/gdata/client/health.rb +28 -0
- data/lib/gdata/client/notebook.rb +28 -0
- data/lib/gdata/client/photos.rb +29 -0
- data/lib/gdata/client/spreadsheets.rb +28 -0
- data/lib/gdata/client/webmaster_tools.rb +28 -0
- data/lib/gdata/client/youtube.rb +47 -0
- data/lib/gdata/g_data.rb +22 -0
- data/lib/gdata/http.rb +18 -0
- data/lib/gdata/http/default_service.rb +82 -0
- data/lib/gdata/http/mime_body.rb +95 -0
- data/lib/gdata/http/request.rb +74 -0
- data/lib/gdata/http/response.rb +44 -0
- data/lib/youtube_helpers.rb +58 -0
- data/lib/youtube_model.rb +341 -0
- 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: []
|