rfeedreader 1.0.10 → 1.0.11

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,4 +1,8 @@
1
- == 1.0.9 2008-03-05
1
+ == 1.0.11 2008-03-05
2
+
3
+ * Remove: word cut is a bad idea without enough testing
4
+
5
+ == 1.0.10 2008-03-05
2
6
 
3
7
  * Add: cut long words
4
8
 
@@ -2,7 +2,7 @@ module Rfeedreader #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- TINY = 10
5
+ TINY = 11
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/lib/rfeedreader.rb CHANGED
@@ -15,12 +15,12 @@ module Rfeedreader
15
15
  class TextyHelper
16
16
 
17
17
  def TextyHelper.split_str(str, len = 10)
18
- if str !~ /http:\/\//
19
- fragment = /.{#{len}}/
20
- str.split(/(\s+)/).map! { |word|
21
- (/\s/ === word) ? word : word.gsub(fragment, '\0<wbr />')
22
- }.join
23
- end
18
+ # if str !~ /http:\/\//
19
+ # fragment = /.{#{len}}/
20
+ # str.split(/(\s+)/).map! { |word|
21
+ # (/\s/ === word) ? word : word.gsub(fragment, '\0<wbr />')
22
+ # }.join
23
+ # end
24
24
  end
25
25
 
26
26
  def TextyHelper.clean(text, length)
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.10</a>
36
+ <a href="http://rubyforge.org/projects/rfeedreader" class="numbers">1.0.11</a>
37
37
  </div>
38
38
  <h2>What</h2>
39
39
 
metadata CHANGED
@@ -3,7 +3,7 @@ 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.10
6
+ version: 1.0.11
7
7
  date: 2008-03-05 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: