bridgeutopia-simple-rss 1.2.4
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +429 -0
- data/README +44 -0
- data/Rakefile +212 -0
- data/install.rb +40 -0
- data/lib/simple-rss.rb +164 -0
- data/simple-rss.gemspec +12 -0
- data/test/base/base_test.rb +72 -0
- data/test/data/atom.xml +45 -0
- data/test/data/not-rss.xml +8 -0
- data/test/data/rss09.rdf +79 -0
- data/test/data/rss20.xml +818 -0
- data/test/test_helper.rb +4 -0
- metadata +68 -0
data/test/test_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bridgeutopia-simple-rss
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 1.2.4
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Lucas Carlson
|
9
|
+
- Katherine Pe
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
|
14
|
+
date: 2010-07-06 00:00:00 +08:00
|
15
|
+
default_executable:
|
16
|
+
dependencies: []
|
17
|
+
|
18
|
+
description: A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation.
|
19
|
+
email: lucas@rufy.com
|
20
|
+
executables: []
|
21
|
+
|
22
|
+
extensions: []
|
23
|
+
|
24
|
+
extra_rdoc_files: []
|
25
|
+
|
26
|
+
files:
|
27
|
+
- install.rb
|
28
|
+
- lib/simple-rss.rb
|
29
|
+
- LICENSE
|
30
|
+
- Rakefile
|
31
|
+
- README
|
32
|
+
- simple-rss.gemspec
|
33
|
+
- test/base/base_test.rb
|
34
|
+
- test/data/atom.xml
|
35
|
+
- test/data/not-rss.xml
|
36
|
+
- test/data/rss09.rdf
|
37
|
+
- test/data/rss20.xml
|
38
|
+
- test/test_helper.rb
|
39
|
+
has_rdoc: true
|
40
|
+
homepage: http://github.com/cardmagic/simple-rss
|
41
|
+
licenses: []
|
42
|
+
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options: []
|
45
|
+
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: "0"
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
60
|
+
requirements: []
|
61
|
+
|
62
|
+
rubyforge_project:
|
63
|
+
rubygems_version: 1.5.2
|
64
|
+
signing_key:
|
65
|
+
specification_version: 3
|
66
|
+
summary: A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation.
|
67
|
+
test_files: []
|
68
|
+
|