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