yyyc514-syndication 0.6.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +10 -0
- data/DEVELOPER +5 -0
- data/IMPLEMENTATION +55 -0
- data/README +228 -0
- data/examples/apple.rb +24 -0
- data/examples/google.rb +23 -0
- data/examples/yahoo.rb +21 -0
- data/lib/syndication/atom.rb +531 -0
- data/lib/syndication/common.rb +289 -0
- data/lib/syndication/content.rb +44 -0
- data/lib/syndication/dublincore.rb +98 -0
- data/lib/syndication/feedburner.rb +18 -0
- data/lib/syndication/google.rb +58 -0
- data/lib/syndication/podcast.rb +90 -0
- data/lib/syndication/rss.rb +332 -0
- data/lib/syndication/syndication.rb +49 -0
- data/lib/syndication/tagsoup.rb +51 -0
- data/rakefile +60 -0
- data/test/atomtest.rb +190 -0
- data/test/feedburntest.rb +79 -0
- data/test/google.rb +91 -0
- data/test/rsstest.rb +422 -0
- data/test/tagsouptest.rb +86 -0
- metadata +83 -0
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: yyyc514-syndication
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.6.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- mathew
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-03-26 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: A web syndication parser for Atom and RSS with a uniform API
|
17
|
+
email: meta@pobox.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README
|
24
|
+
- IMPLEMENTATION
|
25
|
+
- CHANGES
|
26
|
+
- DEVELOPER
|
27
|
+
files:
|
28
|
+
- lib/syndication
|
29
|
+
- lib/syndication/dublincore.rb
|
30
|
+
- lib/syndication/common.rb
|
31
|
+
- lib/syndication/podcast.rb
|
32
|
+
- lib/syndication/content.rb
|
33
|
+
- lib/syndication/tagsoup.rb
|
34
|
+
- lib/syndication/google.rb
|
35
|
+
- lib/syndication/rss.rb
|
36
|
+
- lib/syndication/syndication.rb
|
37
|
+
- lib/syndication/atom.rb
|
38
|
+
- lib/syndication/feedburner.rb
|
39
|
+
- test/feedburntest.rb
|
40
|
+
- test/tagsouptest.rb
|
41
|
+
- test/google.rb
|
42
|
+
- test/rsstest.rb
|
43
|
+
- test/atomtest.rb
|
44
|
+
- examples/apple.rb
|
45
|
+
- examples/yahoo.rb
|
46
|
+
- examples/google.rb
|
47
|
+
- rakefile
|
48
|
+
- README
|
49
|
+
- IMPLEMENTATION
|
50
|
+
- CHANGES
|
51
|
+
- DEVELOPER
|
52
|
+
has_rdoc: true
|
53
|
+
homepage: http://rubyforge.org/projects/syndication/
|
54
|
+
post_install_message:
|
55
|
+
rdoc_options: []
|
56
|
+
|
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:
|
74
|
+
rubygems_version: 1.2.0
|
75
|
+
signing_key:
|
76
|
+
specification_version: 2
|
77
|
+
summary: A web syndication parser for Atom and RSS with a uniform API
|
78
|
+
test_files:
|
79
|
+
- test/atomtest.rb
|
80
|
+
- test/rsstest.rb
|
81
|
+
- test/google.rb
|
82
|
+
- test/rsstest.rb
|
83
|
+
- test/tagsouptest.rb
|