rfeedreader 1.0.2 → 1.0.3

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/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 1.0.3 2007-11-21
2
+
3
+ * Solved: set special feed with other domains than google.com
4
+
5
+ == 1.0.1 2007-11-14
6
+
1
7
  == 1.0.2 2007-11-14
2
8
 
3
9
  * Add Rfeedreader.set_truncate_length(title = 45, description = 200) to manage tuncation size. No truncation: -1
@@ -2,7 +2,7 @@ module Rfeedreader #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/lib/rfeedreader.rb CHANGED
@@ -196,9 +196,9 @@ module Rfeedreader
196
196
  def source_type
197
197
  return "source_flickr" if @feed_url =~ /http:\/\/api\.flickr\.com/
198
198
  return "source_fotolog" if @feed_url =~ /\.fotolog\.com/
199
- return "source_google_video" if @feed_url =~ /http:\/\/video\.google\.com/
199
+ return "source_google_video" if @feed_url =~ /http:\/\/video\.google/
200
200
  return "source_jumpcut" if @feed_url =~ /http:\/\/rss\.jumpcut\.com/
201
- return "source_picasa" if @feed_url =~ /http:\/\/picasaweb\.google\.com/
201
+ return "source_picasa" if @feed_url =~ /http:\/\/picasaweb\.google/
202
202
  return "source_youtube" if @feed_url =~ /http:\/\/www\.youtube\.com\/rss\//
203
203
  return ""
204
204
  end
data/website/index.html CHANGED
@@ -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.2</a>
36
+ <a href="http://rubyforge.org/projects/rfeedreader" class="numbers">1.0.3</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.2
7
- date: 2007-11-20 00:00:00 +01:00
6
+ version: 1.0.3
7
+ date: 2007-11-21 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