<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Agile RSS Aggregator in Ruby</title>
	<atom:link href="http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/</link>
	<description>A goal is a dream with a deadline.</description>
	<pubDate>Fri, 12 Mar 2010 22:39:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ilya Grigorik</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-217569</link>
		<dc:creator>Ilya Grigorik</dc:creator>
		<pubDate>Wed, 30 Sep 2009 00:05:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-217569</guid>
		<description>Keith, that's a hard one to diagnose without more information, but by the sounds of it, either it hangs on downloading external data (big feed?) or it can't open the connection at all. Since it could be either or, try adding some debugging output into the process to see where it's stalling.</description>
		<content:encoded><![CDATA[<p>Keith, that&#8217;s a hard one to diagnose without more information, but by the sounds of it, either it hangs on downloading external data (big feed?) or it can&#8217;t open the connection at all. Since it could be either or, try adding some debugging output into the process to see where it&#8217;s stalling.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keith</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-217149</link>
		<dc:creator>keith</dc:creator>
		<pubDate>Mon, 28 Sep 2009 17:40:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-217149</guid>
		<description>Kind of a noob question here but...  I'm running the script from command line on a server, initially got the errors requiring erubis and feed-normalizer, but got those installed and added require 'rubygems', then changed the Mongrel::HttpServer params to ("0.0.0.0", "3000") to get past "Address already in use" error.

So, now the script executes without errors, but simply stops at some point, before outputting a file.  Guessing that it opens the connection, but then leaves it open and just waits.  Checking the processes running on the server shows the script continuing, and only killing the PID will terminate it...

Any ideas?</description>
		<content:encoded><![CDATA[<p>Kind of a noob question here but&#8230;  I&#8217;m running the script from command line on a server, initially got the errors requiring erubis and feed-normalizer, but got those installed and added require &#8216;rubygems&#8217;, then changed the Mongrel::HttpServer params to (&#8221;0.0.0.0&#8243;, &#8220;3000&#8243;) to get past &#8220;Address already in use&#8221; error.</p>
<p>So, now the script executes without errors, but simply stops at some point, before outputting a file.  Guessing that it opens the connection, but then leaves it open and just waits.  Checking the processes running on the server shows the script continuing, and only killing the PID will terminate it&#8230;</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ilya Grigorik</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-210798</link>
		<dc:creator>Ilya Grigorik</dc:creator>
		<pubDate>Tue, 01 Sep 2009 13:22:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-210798</guid>
		<description>raghubetter: I believe all of those gems are on rubyforge, try that instead.</description>
		<content:encoded><![CDATA[<p>raghubetter: I believe all of those gems are on rubyforge, try that instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raghubetter</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-210797</link>
		<dc:creator>raghubetter</dc:creator>
		<pubDate>Tue, 01 Sep 2009 13:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-210797</guid>
		<description>I am unable to find these gems, so when i do gem sources -a github, url... its says not processing ....... please help me with all required dependencies..</description>
		<content:encoded><![CDATA[<p>I am unable to find these gems, so when i do gem sources -a github, url&#8230; its says not processing &#8230;&#8230;. please help me with all required dependencies..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ilya Grigorik</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-154123</link>
		<dc:creator>Ilya Grigorik</dc:creator>
		<pubDate>Wed, 24 Dec 2008 23:50:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-154123</guid>
		<description>Tereza, I wouldn't use this as a general purpose feed reader, there are probably easier to use solutions out there. Having said that, if you want to set it up: download all the files, ensure that all the gems are installed (gem install name), create a feeds.txt file which contains the urls of the RSS feeds you want to fetch, and then run the aggregator (ruby file.rb). Once that is running, open your browser and point it to: http://localhost. If you see a web page, success!</description>
		<content:encoded><![CDATA[<p>Tereza, I wouldn&#8217;t use this as a general purpose feed reader, there are probably easier to use solutions out there. Having said that, if you want to set it up: download all the files, ensure that all the gems are installed (gem install name), create a feeds.txt file which contains the urls of the RSS feeds you want to fetch, and then run the aggregator (ruby file.rb). Once that is running, open your browser and point it to: <a href="http://localhost" rel="nofollow">http://localhost</a>. If you see a web page, success!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pelkin</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-153737</link>
		<dc:creator>Pelkin</dc:creator>
		<pubDate>Mon, 22 Dec 2008 22:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-153737</guid>
		<description>Hey, Tereza, not sure if this will help, but I would first try and get this up and running on your local machine.  This is what is meant by "localhost."  It seems to help me when I set something up locally before I push it "Live" onto the server.  It might also help if you provided who you are hosting your web with, maybe someone here hosts there and can give you some quick instructions on how to get started.</description>
		<content:encoded><![CDATA[<p>Hey, Tereza, not sure if this will help, but I would first try and get this up and running on your local machine.  This is what is meant by &#8220;localhost.&#8221;  It seems to help me when I set something up locally before I push it &#8220;Live&#8221; onto the server.  It might also help if you provided who you are hosting your web with, maybe someone here hosts there and can give you some quick instructions on how to get started.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-153700</link>
		<dc:creator>david</dc:creator>
		<pubDate>Mon, 22 Dec 2008 19:45:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-153700</guid>
		<description>great work! I've easily get the RSS Aggregator running, but haven't been able to fetch the images from the feeds - is it possible to do so? thanks!</description>
		<content:encoded><![CDATA[<p>great work! I&#8217;ve easily get the RSS Aggregator running, but haven&#8217;t been able to fetch the images from the feeds - is it possible to do so? thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tereza</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-153574</link>
		<dc:creator>Tereza</dc:creator>
		<pubDate>Mon, 22 Dec 2008 00:13:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-153574</guid>
		<description>I am a newbie.  Started working on news aggregators fro my site just recently.  Your rss feeder sounds great.  Can anyone tell me in plain language how to go about getting this to work.  My hosting provider has Ruby Gems and Ruby on Rails, and I don't have a clue on how it works.  I've downloaded feedtools and feedreader gems and could not figure it out.  The files are usually placed in Ruby directory instead of public_html, which is where I've uploaded your Rss-Aggregator to.  Any hints would be challenging.  What do you mean "simply run the feed.rb, and then point your browser to http://localhost."  If you can clue me in somehow I would appreciate it.  Thanks.</description>
		<content:encoded><![CDATA[<p>I am a newbie.  Started working on news aggregators fro my site just recently.  Your rss feeder sounds great.  Can anyone tell me in plain language how to go about getting this to work.  My hosting provider has Ruby Gems and Ruby on Rails, and I don&#8217;t have a clue on how it works.  I&#8217;ve downloaded feedtools and feedreader gems and could not figure it out.  The files are usually placed in Ruby directory instead of public_html, which is where I&#8217;ve uploaded your Rss-Aggregator to.  Any hints would be challenging.  What do you mean &#8220;simply run the feed.rb, and then point your browser to <a href="http://localhost" rel="nofollow">http://localhost</a>.&#8221;  If you can clue me in somehow I would appreciate it.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S Woodside</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-152294</link>
		<dc:creator>S Woodside</dc:creator>
		<pubDate>Sat, 13 Dec 2008 22:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-152294</guid>
		<description>Hi Ilya, Based on your advice I originally wrote my aggregator at http://simonwoodside.com/ using feed_normalizer. Since then I've found that it doesn't do a very good job of handling crappy feeds, like the one that I pull in from flickr. So I switched to FeedTools, which is great but really slow. I finally developed a &lt;a href="http://simonwoodside.com/weblog/2008/12/7/ruby_on_rails_feedrss_aggregator/" rel="nofollow"&gt;complete solution (in Rails) for feed aggregation&lt;/a&gt; (with cache). Hopefully people will find it useful.</description>
		<content:encoded><![CDATA[<p>Hi Ilya, Based on your advice I originally wrote my aggregator at <a href="http://simonwoodside.com/" rel="nofollow">http://simonwoodside.com/</a> using feed_normalizer. Since then I&#8217;ve found that it doesn&#8217;t do a very good job of handling crappy feeds, like the one that I pull in from flickr. So I switched to FeedTools, which is great but really slow. I finally developed a <a href="http://simonwoodside.com/weblog/2008/12/7/ruby_on_rails_feedrss_aggregator/" rel="nofollow">complete solution (in Rails) for feed aggregation</a> (with cache). Hopefully people will find it useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ilya Grigorik</title>
		<link>http://www.igvita.com/2007/03/22/agile-rss-aggregator-in-ruby/comment-page-2/#comment-141522</link>
		<dc:creator>Ilya Grigorik</dc:creator>
		<pubDate>Wed, 22 Oct 2008 12:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.igvita.com/blog/2007/03/22/agile-rss-aggregator-in-ruby/#comment-141522</guid>
		<description>AP, glad you got it working!</description>
		<content:encoded><![CDATA[<p>AP, glad you got it working!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
