Neeraj Kumar
2006-Jun-07 08:51 UTC
[Rails] How to test RSS feeds while developing it on localhost
Hi, I am developing on windows xp and am trying to create RSS feed for an app using RoR. How do I test my RSS feed while I am developing it. I don''t know of any feed reader that would accept localhost as the input. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060607/38af3b75/attachment-0001.html
Damien
2006-Jun-07 14:07 UTC
[Rails] Re: How to test RSS feeds while developing it on localhost
try using 127.0.0.1 instead of localhost -- Posted via http://www.ruby-forum.com/.
Mark
2006-Jun-07 14:36 UTC
[Rails] Re: How to test RSS feeds while developing it on localhost
Damien wrote:> try using 127.0.0.1 instead of localhostYou can also put an entry into your hosts file to route a ficticious domain name back to 127.0.0.1 -- Posted via http://www.ruby-forum.com/.
Charlie Bowman
2006-Jun-07 14:52 UTC
[Rails] Re: How to test RSS feeds while developing it on localhost
On Wed, 2006-06-07 at 16:35 +0200, Mark wrote:> Damien wrote: > > try using 127.0.0.1 instead of localhost > > You can also put an entry into your hosts file to route a ficticious > domain name back to 127.0.0.1or sign up with a free service such as dyndsn. I prefer this method so that I can access my site from anywhere without having to remember my IP. Charlie Bowman http://www.recentrambles.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060607/bf27b893/attachment-0001.html
Alex Wayne
2006-Jun-07 16:23 UTC
[Rails] Re: How to test RSS feeds while developing it on localhost
Neeraj Kumar wrote:> Hi, > > I am developing on windows xp and am trying to create RSS feed for an > app > using RoR. How do I test my RSS feed while I am developing it. I don''t > know > of any feed reader that would accept localhost as the input. > > ThanksThunderbird RSS feeds can be localhost just fine. -- Posted via http://www.ruby-forum.com/.
Ross
2006-Jun-07 16:45 UTC
[Rails] Re: How to test RSS feeds while developing it on localhost
Neeraj Kumar wrote:> Hi, > > I am developing on windows xp and am trying to create RSS feed for an > app using RoR. How do I test my RSS feed while I am developing it. I > don''t know of any feed reader that would accept localhost as the input. > > Thanks > > > ------------------------------------------------------------------------ > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/railsIf you have python installed, you can run feed validator on the command line: http://feedvalidator.org/docs/howto/install_and_run.html -Ross