rfeedreader 1.0.6 → 1.0.7
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 +4 -0
- data/lib/rfeedreader/version.rb +1 -1
- data/lib/rfeedreader.rb +1 -0
- data/test/test_rfeedreader.rb +4 -0
- data/website/index.html +1 -1
- metadata +2 -2
    
        data/History.txt
    CHANGED
    
    
    
        data/lib/rfeedreader/version.rb
    CHANGED
    
    
    
        data/lib/rfeedreader.rb
    CHANGED
    
    | @@ -20,6 +20,7 @@ module Rfeedreader | |
| 20 20 | 
             
                    # Strip html tags, tabs and new lines
         | 
| 21 21 | 
             
                    text.gsub!(/<[^>]*>/s, " ")
         | 
| 22 22 | 
             
                    text.gsub!(/<strong>/, " ")
         | 
| 23 | 
            +
                    text.gsub!(/
/, '')
         | 
| 23 24 | 
             
                    # strip any comments, and if they have a newline at the end (ie. line with
         | 
| 24 25 | 
             
                    # only a comment) strip that too
         | 
| 25 26 | 
             
                    text.gsub!(/<!--(.*?)-->[\n]?/m, "")
         | 
    
        data/test/test_rfeedreader.rb
    CHANGED
    
    
    
        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. | 
| 36 | 
            +
                  <a href="http://rubyforge.org/projects/rfeedreader" class="numbers">1.0.7</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 | 
            -
            date: 2007-12- | 
| 6 | 
            +
              version: 1.0.7
         | 
| 7 | 
            +
            date: 2007-12-20 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
         |