bradgessler-birdfeed 0.1.4 → 0.1.5
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/VERSION.yml +1 -1
- data/lib/birdfeed/format/rss20.rb +1 -0
- data/spec/fixtures/cnn_topstories.rss +1 -0
- data/spec/specs/format/rss_20_spec.rb +2 -2
- metadata +2 -2
data/VERSION.yml
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
</image>
|
|
18
18
|
<thespringbox:skin xmlns:thespringbox="http://www.thespringbox.com/dtds/thespringbox-1.0.dtd">http://rss.cnn.com/rss/cnn_topstories?format=skin</thespringbox:skin><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://rss.cnn.com/rss/cnn_topstories" type="application/rss+xml" /><item>
|
|
19
19
|
<title>Recession lands men in 'Devil's Cave'</title>
|
|
20
|
+
<author>Billy Fleenor</author>
|
|
20
21
|
<guid isPermaLink="false">http://www.cnn.com/2009/US/01/29/porch.cave/index.html?eref=rss_topstories</guid>
|
|
21
22
|
<link>http://rss.cnn.com/~r/rss/cnn_topstories/~3/wpPskrTYfzg/index.html</link>
|
|
22
23
|
<description>Enter the "Devil's Cave" by pulling aside the wooden grate beneath the porch of the abandoned suburban New Jersey home. Crawl inside to see the filthy, mismatched blankets and the garbage and empty soda and alcohol bottles strewn about. Catch your breath against the smell. For a group of Latin American men, the "Devil's Cave" was home for as they hunted work in tough economic times.<div class="feedflare">
|
|
@@ -81,8 +81,8 @@ describe Rss20, "item parser" do
|
|
|
81
81
|
@item.description.should match(/^Enter the "Devil's Cave" by pulling aside the wooden grate beneath the porch of the abandoned suburban New Jersey home/)
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
it "should have
|
|
85
|
-
@item.author.should
|
|
84
|
+
it "should have author" do
|
|
85
|
+
@item.author.should eql('Billy Fleenor')
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
it "should have published_at" do
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bradgessler-birdfeed
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brad Gessler
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-01
|
|
12
|
+
date: 2009-02-01 00:00:00 -08:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|