rfeedreader 1.0.7 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ == 1.0.8 2007-01-11
2
+
3
+ * Add: alias Entry.url for Entry.link
4
+
1
5
  == 1.0.7 2007-12-20
2
6
 
3
7
  * Solve: Remove 
 html entity
@@ -209,6 +209,7 @@ module Rfeedreader
209
209
 
210
210
  class Entry
211
211
  attr_accessor :title, :link, :description, :charset, :hpricot_item
212
+ alias :url :link
212
213
 
213
214
  TITLE_LENGTH = 45
214
215
  DESCRIPTION_LENGTH = 250
@@ -269,7 +270,7 @@ module Rfeedreader
269
270
  end
270
271
 
271
272
  def to_s
272
- "Entry: title: #{@title} - link: #{@link}\n\rdescription: #{@description}"
273
+ "Entry: title: #{@title} - link: #{@url}\n\rdescription: #{@description}"
273
274
  end
274
275
  end
275
276
 
@@ -2,7 +2,7 @@ module Rfeedreader #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- TINY = 7
5
+ TINY = 8
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -228,7 +228,7 @@ class TestRfeedreader < Test::Unit::TestCase
228
228
  end
229
229
 
230
230
  def test_bbvablogs
231
- read_first "http://centroinnovacion.bbvablogs.com/feed/"
231
+ read_first "http://centroinnovacion.bbvablogs.com/"
232
232
  end
233
233
 
234
234
  def test_ul_list
@@ -33,7 +33,7 @@
33
33
  <h1>rfeedreader</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/rfeedreader"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/rfeedreader" class="numbers">1.0.7</a>
36
+ <a href="http://rubyforge.org/projects/rfeedreader" class="numbers">1.0.8</a>
37
37
  </div>
38
38
  <h2>What</h2>
39
39
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: rfeedreader
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.7
7
- date: 2007-12-20 00:00:00 +01:00
6
+ version: 1.0.8
7
+ date: 2008-01-11 00:00:00 +01:00
8
8
  summary: Feed parser to read feed and return first posts of this feed. Special parsing from sources like Flickr, Jumcut, Google video, ...
9
9
  require_paths:
10
10
  - lib