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
fall back on expat if libxml is not present
technomancy (author)
Tue May 06 15:03:39 -0700 2008
commit  16bf0cf0be319a248fc409bda93013b59dbe064f
tree    3d99ea9338e9daa0ac8205ac0927021a8b452dba
parent  8113d0a1ace05e28a47b93fc609c491046787ead
...
68
69
70
71
 
72
73
74
...
68
69
70
 
71
72
73
74
0
@@ -68,7 +68,7 @@ end
0
 
0
 begin
0
   require 'rfeedparser/expat_parser'
0
- StrictFeedParser = FeedParser::Expat::StrictFeedParser
0
+ StrictFeedParser = FeedParser::Expat::StrictFeedParser unless defined? StrictFeedParser
0
 rescue LoadError
0
 end
0
 

Comments

    No one has commented yet.