<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Beginners Tutorial: Routing in Rails 2.0 (with REST) &#8211; Part 1 of n</title>
	<atom:link href="http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/feed/" rel="self" type="application/rss+xml" />
	<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/</link>
	<description></description>
	<lastBuildDate>Sat, 07 Nov 2009 13:46:32 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Understanding RoR Routing &#187; Rodrigo Reyes Blog</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-571</link>
		<dc:creator>Understanding RoR Routing &#187; Rodrigo Reyes Blog</dc:creator>
		<pubDate>Sat, 07 Nov 2009 13:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-571</guid>
		<description>[...] of its rounting system is a must. So when I started to look for information, I found this great article from http://darynholmes.wordpress.com. Worth a [...]</description>
		<content:encoded><![CDATA[<p>[...] of its rounting system is a must. So when I started to look for information, I found this great article from <a href="http://darynholmes.wordpress.com" rel="nofollow">http://darynholmes.wordpress.com</a>. Worth a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rails: Routes in &#8220;irb&#8221; &#171; Jin-Kang Cheng</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-563</link>
		<dc:creator>Rails: Routes in &#8220;irb&#8221; &#171; Jin-Kang Cheng</dc:creator>
		<pubDate>Tue, 25 Aug 2009 03:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-563</guid>
		<description>[...] just went through a fabulous tutorial by Daryn Holmes about routes. It is written for 2.0.2, but I found that nothing had changed for [...]</description>
		<content:encoded><![CDATA[<p>[...] just went through a fabulous tutorial by Daryn Holmes about routes. It is written for 2.0.2, but I found that nothing had changed for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-559</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Mon, 17 Aug 2009 18:05:21 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-559</guid>
		<description>Very good job. Keep it going. I am new to Ruby on Rails and found this to be very useful. Suggestion! Try to make it simplier. Example: it would be great if you started you teaching with an example. 

EXAMPLE. The developer has developed a web site using rails a link it to be added to the main page called LEARN_RUBY_By_Joe. In the main page of the site you would place a Link_to command. Once you have done this you now need to create a route for the link. Here&#039;s how you would do it.</description>
		<content:encoded><![CDATA[<p>Very good job. Keep it going. I am new to Ruby on Rails and found this to be very useful. Suggestion! Try to make it simplier. Example: it would be great if you started you teaching with an example. </p>
<p>EXAMPLE. The developer has developed a web site using rails a link it to be added to the main page called LEARN_RUBY_By_Joe. In the main page of the site you would place a Link_to command. Once you have done this you now need to create a route for the link. Here&#8217;s how you would do it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Himanshu</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-558</link>
		<dc:creator>Himanshu</dc:creator>
		<pubDate>Thu, 06 Aug 2009 06:09:01 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-558</guid>
		<description>I have notice when I am creating custom method for :POST method then it is working fine. Only when making :GET request blank will be inserted into URL.</description>
		<content:encoded><![CDATA[<p>I have notice when I am creating custom method for <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> OST method then it is working fine. Only when making :GET request blank will be inserted into URL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Himanshu</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-557</link>
		<dc:creator>Himanshu</dc:creator>
		<pubDate>Thu, 06 Aug 2009 05:38:23 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-557</guid>
		<description>Darynholmes,
I need to create a custom method which will do a GET request.
I am using:
map.resources :entities, :member =&gt; {:my_custom_method =&gt; :get)
Model&#039;s(which is inherited from ActiveResource class) method definition is:

  def my_custom_method data
    gett :my_custom_method, :params =&gt; data
  end

Controller code for invoking this method is:

 entity = Entity.new()
 @en = entity.my_custom_method(params[:entity])

but this is redirecting to 
/entities//my_custom_method.xml instead of
/entities/my_custom_method.xml

I wonder how a blank is getting appended in this URL?
Where I am doing wrong?

Thanks</description>
		<content:encoded><![CDATA[<p>Darynholmes,<br />
I need to create a custom method which will do a GET request.<br />
I am using:<br />
map.resources :entities, :member =&gt; {:my_custom_method =&gt; :get)<br />
Model&#8217;s(which is inherited from ActiveResource class) method definition is:</p>
<p>  def my_custom_method data<br />
    gett :my_custom_method, :params =&gt; data<br />
  end</p>
<p>Controller code for invoking this method is:</p>
<p> entity = Entity.new()<br />
 @en = entity.my_custom_method(params[:entity])</p>
<p>but this is redirecting to<br />
/entities//my_custom_method.xml instead of<br />
/entities/my_custom_method.xml</p>
<p>I wonder how a blank is getting appended in this URL?<br />
Where I am doing wrong?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Debty</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-554</link>
		<dc:creator>Debty</dc:creator>
		<pubDate>Sun, 26 Jul 2009 21:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-554</guid>
		<description>Ahaan... I will follow.</description>
		<content:encoded><![CDATA[<p>Ahaan&#8230; I will follow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jin-Kang CHENG &#187; Rails routes</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-546</link>
		<dc:creator>Jin-Kang CHENG &#187; Rails routes</dc:creator>
		<pubDate>Wed, 17 Jun 2009 02:19:37 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-546</guid>
		<description>[...] just went through a fabulous tutorial by Daryn Holmes about routes. It is written for 2.0.2, but I found that nothing had changed for [...]</description>
		<content:encoded><![CDATA[<p>[...] just went through a fabulous tutorial by Daryn Holmes about routes. It is written for 2.0.2, but I found that nothing had changed for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rails routes &#124; Thinks Free</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-531</link>
		<dc:creator>Rails routes &#124; Thinks Free</dc:creator>
		<pubDate>Sun, 03 May 2009 04:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-531</guid>
		<description>[...] just went through a fabulous tutorial by Daryn Holmes about routes. It is written for 2.0.2, but I found that nothing had changed for [...]</description>
		<content:encoded><![CDATA[<p>[...] just went through a fabulous tutorial by Daryn Holmes about routes. It is written for 2.0.2, but I found that nothing had changed for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ReZa</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-524</link>
		<dc:creator>ReZa</dc:creator>
		<pubDate>Fri, 24 Apr 2009 11:22:25 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-524</guid>
		<description>reload! works, there is no need to exit irb

&gt;&gt; reload!
Reloading...
=&gt; true
&gt;&gt; puts rts.routes
=&gt; nil</description>
		<content:encoded><![CDATA[<p>reload! works, there is no need to exit irb</p>
<p>&gt;&gt; reload!<br />
Reloading&#8230;<br />
=&gt; true<br />
&gt;&gt; puts rts.routes<br />
=&gt; nil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: skob</title>
		<link>http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/#comment-521</link>
		<dc:creator>skob</dc:creator>
		<pubDate>Thu, 16 Apr 2009 14:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://darynholmes.wordpress.com/?p=35#comment-521</guid>
		<description>nice tutorial, thx for writing.

just didn&#039;t get exactly how the thing with format works out of your explanation.
the REST is clear ;-)</description>
		<content:encoded><![CDATA[<p>nice tutorial, thx for writing.</p>
<p>just didn&#8217;t get exactly how the thing with format works out of your explanation.<br />
the REST is clear <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
