public
Rubygem
Fork of jmhodges/rfeedparser
Description: rFeedParser is a translation of the Universal Feed Parser from Python into Ruby. It has nearly the exact same behavior.
Homepage: http://rfeedparser.rubyforge.org
Clone URL: git://github.com/technomancy/rfeedparser.git
using the rchardet gem not that it has a project page on rubyforge
Jeff Hodges (author)
Sat Mar 24 09:34:45 -0700 2007
commit  10c28f118eedbedb43bb4590958ce947034f25b0
tree    dd1888f641a057c0e33f9d191db3c4e7a3ba9042
parent  0b54a26a41159c685acbdf9541a2dc44b1d19458
  • LICENSE
  • LICENSE.chardet
  • LICENSE.feedparser
  • Rakefile
  • lib/chardet.rb
  • lib/chardet/big5freq.rb
  • lib/chardet/big5prober.rb
  • lib/chardet/chardistribution.rb
  • lib/chardet/charsetgroupprober.rb
  • lib/chardet/charsetprober.rb
  • lib/chardet/codingstatemachine.rb
  • lib/chardet/constants.rb
  • lib/chardet/escprober.rb
  • lib/chardet/escsm.rb
  • lib/chardet/eucjpprober.rb
  • lib/chardet/euckrfreq.rb
  • lib/chardet/euckrprober.rb
  • lib/chardet/euctwfreq.rb
  • lib/chardet/euctwprober.rb
  • lib/chardet/gb2312freq.rb
  • lib/chardet/gb2312prober.rb
  • lib/chardet/hebrewprober.rb
  • lib/chardet/jisfreq.rb
  • lib/chardet/jpcntx.rb
  • lib/chardet/langbulgarianmodel.rb
  • lib/chardet/langcyrillicmodel.rb
  • lib/chardet/langgreekmodel.rb
  • lib/chardet/langhebrewmodel.rb
  • lib/chardet/langhungarianmodel.rb
  • lib/chardet/langthaimodel.rb
  • lib/chardet/latin1prober.rb
  • lib/chardet/mbcharsetprober.rb
  • lib/chardet/mbcsgroupprober.rb
  • lib/chardet/mbcssm.rb
  • lib/chardet/sbcharsetprober.rb
  • lib/chardet/sbcsgroupprober.rb
  • lib/chardet/sjisprober.rb
  • lib/chardet/universaldetector.rb
  • lib/chardet/utf8prober.rb
  • lib/feedparser.rb
...
7
8
9
10
 
11
12
13
...
19
20
21
 
22
23
24
...
7
8
9
 
10
11
12
13
...
19
20
21
22
23
24
25
0
@@ -7,7 +7,7 @@ spec = Gem::Specification.new do |s|
0
     s.version = "0.9.7"
0
     s.author = "Jeff Hodges"
0
     s.email = "jeff at somethingsimilar dot com"
0
- s.homepage = "http://rubyforge.org/projects/rfeedparser"
0
+ s.homepage = "http://rfeedparser.rubyforge.org/"
0
     s.platform = Gem::Platform::RUBY
0
     s.summary = "Parse RSS and Atom feeds in Ruby"
0
     s.files = FileList["{lib,tests}/**/*"].exclude("rdoc").to_a
0
@@ -19,6 +19,7 @@ spec = Gem::Specification.new do |s|
0
     s.rubyforge_project = 'rfeedparser'
0
 
0
     # Dependencies
0
+ s.add_dependency('rchardet')
0
     s.add_dependency('activesupport', '>= 1.0')
0
     s.add_dependency('hpricot', '>= 0.5')
0
     s.add_dependency('character-encodings', '>= 0.2')
...
25
26
27
 
28
29
30
 
31
32
33
...
25
26
27
28
29
30
 
31
32
33
34
0
@@ -25,9 +25,10 @@ begin
0
   gem 'htmltools'
0
   gem 'htmlentities'
0
   gem 'activesupport'
0
+ gem 'chardet'
0
 rescue Gem::LoadError,LoadError
0
 end
0
-$: << "../lib"
0
+
0
 require 'chardet'
0
 $chardet = true
0
 

Comments

    No one has commented yet.