<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Kansas City on Rails</title>
	<atom:link href="http://kconrails.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kconrails.com</link>
	<description>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;Adventures of Jaime Bellmyer, A Freelance Ruby on Rails Developer in Kansas City</description>
	<lastBuildDate>Wed, 19 Oct 2011 02:07:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Nested Comments in Ruby on Rails, Part 1: Models by Febry Ramadhan</title>
		<link>http://kconrails.com/2010/10/23/nested-comments-in-ruby-on-rails-1-models/#comment-4357</link>
		<dc:creator><![CDATA[Febry Ramadhan]]></dc:creator>
		<pubDate>Wed, 19 Oct 2011 02:07:23 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=329#comment-4357</guid>
		<description><![CDATA[Nice!!]]></description>
		<content:encoded><![CDATA[<p>Nice!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nested Comments in Ruby on Rails, Part 1: Models by Bryan Jacobson (@BryanJacobson6)</title>
		<link>http://kconrails.com/2010/10/23/nested-comments-in-ruby-on-rails-1-models/#comment-4062</link>
		<dc:creator><![CDATA[Bryan Jacobson (@BryanJacobson6)]]></dc:creator>
		<pubDate>Wed, 07 Sep 2011 13:48:29 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=329#comment-4062</guid>
		<description><![CDATA[This was so helpful! Thank you so much!]]></description>
		<content:encoded><![CDATA[<p>This was so helpful! Thank you so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Routing in Ruby on Rails 3 by saathi</title>
		<link>http://kconrails.com/2010/12/02/routing-in-ruby-on-rails-3/#comment-3713</link>
		<dc:creator><![CDATA[saathi]]></dc:creator>
		<pubDate>Sun, 07 Aug 2011 05:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=435#comment-3713</guid>
		<description><![CDATA[Thanks. Helpful article]]></description>
		<content:encoded><![CDATA[<p>Thanks. Helpful article</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Routing in Ruby on Rails 3 by Andy</title>
		<link>http://kconrails.com/2010/12/02/routing-in-ruby-on-rails-3/#comment-3082</link>
		<dc:creator><![CDATA[Andy]]></dc:creator>
		<pubDate>Wed, 01 Jun 2011 23:28:58 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=435#comment-3082</guid>
		<description><![CDATA[ok this is not a problem anymore.
if anybody get the same troubles, you&#039;ll have to edit your views to the new routes structure presented here.
eg. you&#039;d have to write %= link_to &#039;Destroy&#039;, post_comment_path(comment.post.id, comment.id), :confirm =&gt; &#039;Are you sure?&#039;, :method =&gt; :delete % instead of %= link_to &#039;Destroy&#039;, comment, :confirm =&gt; &#039;Are you sure?&#039;, :method =&gt; :delete %
*** Disclaimer: I&#039;m like 90% noob and may be 100% wrong ;)]]></description>
		<content:encoded><![CDATA[<p>ok this is not a problem anymore.<br />
if anybody get the same troubles, you&#8217;ll have to edit your views to the new routes structure presented here.<br />
eg. you&#8217;d have to write %= link_to &#8216;Destroy&#8217;, post_comment_path(comment.post.id, comment.id), :confirm =&gt; &#8216;Are you sure?&#8217;, :method =&gt; :delete % instead of %= link_to &#8216;Destroy&#8217;, comment, :confirm =&gt; &#8216;Are you sure?&#8217;, :method =&gt; :delete %<br />
*** Disclaimer: I&#8217;m like 90% noob and may be 100% wrong ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Routing in Ruby on Rails 3 by Andy</title>
		<link>http://kconrails.com/2010/12/02/routing-in-ruby-on-rails-3/#comment-3081</link>
		<dc:creator><![CDATA[Andy]]></dc:creator>
		<pubDate>Wed, 01 Jun 2011 22:49:26 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=435#comment-3081</guid>
		<description><![CDATA[Hey bellmyer. First of all thank you very much for this post.
But as you may have guessed, almost nobody writes if everything ist fine. So to get it out: I looked at your github code and found out, that your controllers are structured in this nested way but your views are not.
Maybe this was your intention, anyway, i modified my comment&#039;s index view to something like %= link_to &#039;Show&#039;, post_comment_path(comment.post.id, comment.id) %  which is working... is this the way it should be done or am i wrong? i mean... sure i am showing a comment which is unique even without post.id, but then (with comment_path(comment.id)) there is an exeption &quot;no controller found&quot;, which is justified i guess.
i would be happy if you could clear my thoughts up a bit]]></description>
		<content:encoded><![CDATA[<p>Hey bellmyer. First of all thank you very much for this post.<br />
But as you may have guessed, almost nobody writes if everything ist fine. So to get it out: I looked at your github code and found out, that your controllers are structured in this nested way but your views are not.<br />
Maybe this was your intention, anyway, i modified my comment&#8217;s index view to something like %= link_to &#8216;Show&#8217;, post_comment_path(comment.post.id, comment.id) %  which is working&#8230; is this the way it should be done or am i wrong? i mean&#8230; sure i am showing a comment which is unique even without post.id, but then (with comment_path(comment.id)) there is an exeption &#8220;no controller found&#8221;, which is justified i guess.<br />
i would be happy if you could clear my thoughts up a bit</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Routing in Ruby on Rails 3 by Ogredude</title>
		<link>http://kconrails.com/2010/12/02/routing-in-ruby-on-rails-3/#comment-2845</link>
		<dc:creator><![CDATA[Ogredude]]></dc:creator>
		<pubDate>Thu, 05 May 2011 00:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=435#comment-2845</guid>
		<description><![CDATA[When you&#039;re using nested routes, make sure to change all form_for(@comment) to form_for([@post, @comment]) and all redirect_to(@comment) to redirect_to([@post, @comment])

It&#039;s a bit different because we&#039;ve got to pass a post object along with a comment object.

Also, link_to paths might need to be changed up, because we don&#039;t have a comments_path, instead we have a post_comments_path, etc.]]></description>
		<content:encoded><![CDATA[<p>When you&#8217;re using nested routes, make sure to change all form_for(@comment) to form_for([@post, @comment]) and all redirect_to(@comment) to redirect_to([@post, @comment])</p>
<p>It&#8217;s a bit different because we&#8217;ve got to pass a post object along with a comment object.</p>
<p>Also, link_to paths might need to be changed up, because we don&#8217;t have a comments_path, instead we have a post_comments_path, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Columns and Default Data to Existing Models by Rory Walker</title>
		<link>http://kconrails.com/2010/01/25/adding-columns-and-default-data-to-existing-models-in-ruby-on-rails/#comment-2675</link>
		<dc:creator><![CDATA[Rory Walker]]></dc:creator>
		<pubDate>Sat, 16 Apr 2011 02:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=224#comment-2675</guid>
		<description><![CDATA[Thanks Jamie. Fixed my error :)]]></description>
		<content:encoded><![CDATA[<p>Thanks Jamie. Fixed my error :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Show Intent with Better Naming by Jaime Bellmyer</title>
		<link>http://kconrails.com/2011/03/08/show-intent-with-better-naming/#comment-2359</link>
		<dc:creator><![CDATA[Jaime Bellmyer]]></dc:creator>
		<pubDate>Fri, 11 Mar 2011 01:52:24 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=640#comment-2359</guid>
		<description><![CDATA[Wow, very true! Unlike self-documenting code or a working test suite, comments have no obligation to be accurate.]]></description>
		<content:encoded><![CDATA[<p>Wow, very true! Unlike self-documenting code or a working test suite, comments have no obligation to be accurate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Show Intent with Better Naming by jim</title>
		<link>http://kconrails.com/2011/03/08/show-intent-with-better-naming/#comment-2358</link>
		<dc:creator><![CDATA[jim]]></dc:creator>
		<pubDate>Thu, 10 Mar 2011 21:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=640#comment-2358</guid>
		<description><![CDATA[Cool post, I like the idea of showing intent in method names.   This can help reduce comments and use self-documenting code instead.  I&#039;ve seen so many out-of-date misleading comments in old code that I rarely trust comments anymore.]]></description>
		<content:encoded><![CDATA[<p>Cool post, I like the idea of showing intent in method names.   This can help reduce comments and use self-documenting code instead.  I&#8217;ve seen so many out-of-date misleading comments in old code that I rarely trust comments anymore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Show Intent with Better Naming by Dan Carper</title>
		<link>http://kconrails.com/2011/03/08/show-intent-with-better-naming/#comment-2357</link>
		<dc:creator><![CDATA[Dan Carper]]></dc:creator>
		<pubDate>Thu, 10 Mar 2011 21:40:03 +0000</pubDate>
		<guid isPermaLink="false">http://kconrails.com/?p=640#comment-2357</guid>
		<description><![CDATA[I had the very same experience. Was at a code retreat hosted by Corey. Thought I had written some great code.. Took Corey 2 seconds to break my code but not my tests..

Good stuff!

Dan]]></description>
		<content:encoded><![CDATA[<p>I had the very same experience. Was at a code retreat hosted by Corey. Thought I had written some great code.. Took Corey 2 seconds to break my code but not my tests..</p>
<p>Good stuff!</p>
<p>Dan</p>
]]></content:encoded>
	</item>
</channel>
</rss>

