gdata 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +202 -0
- data/README +71 -0
- data/Rakefile +72 -0
- data/lib/gdata.rb +19 -0
- data/lib/gdata/auth.rb +22 -0
- data/lib/gdata/auth/authsub.rb +168 -0
- data/lib/gdata/auth/clientlogin.rb +102 -0
- data/lib/gdata/client.rb +49 -0
- data/lib/gdata/client/gdata.rb +165 -0
- data/lib/gdata/client/youtube.rb +49 -0
- data/lib/gdata/http.rb +17 -0
- data/lib/gdata/http/default_service.rb +64 -0
- data/lib/gdata/http/request.rb +75 -0
- data/lib/gdata/http/response.rb +29 -0
- data/test/tc_gdata_auth_authsub.rb +53 -0
- data/test/tc_gdata_auth_clientlogin.rb +38 -0
- data/test/tc_gdata_client_base.rb +29 -0
- data/test/tc_gdata_client_youtube.rb +76 -0
- data/test/tc_gdata_http_request.rb +36 -0
- data/test/test_config.yml.example +7 -0
- data/test/test_helper.rb +47 -0
- data/test/ts_gdata.rb +31 -0
- data/test/ts_gdata_auth.rb +25 -0
- data/test/ts_gdata_client.rb +25 -0
- data/test/ts_gdata_http.rb +23 -0
- metadata +79 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
# Copyright (C) 2008 Google Inc.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require 'tc_gdata_client_base'
|
16
|
+
require 'tc_gdata_client_youtube'
|
17
|
+
|
18
|
+
class TS_GData_Client
|
19
|
+
def self.suite
|
20
|
+
suite = Test::Unit::TestSuite.new
|
21
|
+
suite << TC_GData_Client_Base.suite
|
22
|
+
suite << TC_GData_Client_YouTube.suite
|
23
|
+
return suite
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Copyright (C) 2008 Google Inc.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require 'tc_gdata_http_request'
|
16
|
+
|
17
|
+
class TS_GData_HTTP
|
18
|
+
def self.suite
|
19
|
+
suite = Test::Unit::TestSuite.new
|
20
|
+
suite << TC_GData_HTTP_Request.suite
|
21
|
+
return suite
|
22
|
+
end
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gdata
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jeff Fisher
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-12-15 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: This gem provides a set of wrappers designed to make it easy to work with the Google Data APIs.
|
17
|
+
email: jfisher@youtube.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README
|
24
|
+
- LICENSE
|
25
|
+
files:
|
26
|
+
- LICENSE
|
27
|
+
- Rakefile
|
28
|
+
- README
|
29
|
+
- lib/gdata/auth/authsub.rb
|
30
|
+
- lib/gdata/auth/clientlogin.rb
|
31
|
+
- lib/gdata/auth.rb
|
32
|
+
- lib/gdata/client/gdata.rb
|
33
|
+
- lib/gdata/client/youtube.rb
|
34
|
+
- lib/gdata/client.rb
|
35
|
+
- lib/gdata/http/default_service.rb
|
36
|
+
- lib/gdata/http/request.rb
|
37
|
+
- lib/gdata/http/response.rb
|
38
|
+
- lib/gdata/http.rb
|
39
|
+
- lib/gdata.rb
|
40
|
+
- test/tc_gdata_auth_authsub.rb
|
41
|
+
- test/tc_gdata_auth_clientlogin.rb
|
42
|
+
- test/tc_gdata_client_base.rb
|
43
|
+
- test/tc_gdata_client_youtube.rb
|
44
|
+
- test/tc_gdata_http_request.rb
|
45
|
+
- test/test_config.yml.example
|
46
|
+
- test/test_helper.rb
|
47
|
+
- test/ts_gdata.rb
|
48
|
+
- test/ts_gdata_auth.rb
|
49
|
+
- test/ts_gdata_client.rb
|
50
|
+
- test/ts_gdata_http.rb
|
51
|
+
has_rdoc: true
|
52
|
+
homepage: http://code.google.com/p/gdata-ruby-util
|
53
|
+
post_install_message:
|
54
|
+
rdoc_options:
|
55
|
+
- --main
|
56
|
+
- README
|
57
|
+
require_paths:
|
58
|
+
- lib
|
59
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: "0"
|
64
|
+
version:
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: "0"
|
70
|
+
version:
|
71
|
+
requirements:
|
72
|
+
- none
|
73
|
+
rubyforge_project: gdata
|
74
|
+
rubygems_version: 1.3.1
|
75
|
+
signing_key:
|
76
|
+
specification_version: 2
|
77
|
+
summary: Google Data APIs Ruby Utility Library
|
78
|
+
test_files:
|
79
|
+
- test/ts_gdata.rb
|