<?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 for captured sparks</title>
	<atom:link href="http://capturedsparks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://capturedsparks.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 12 May 2012 08:00:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Creating monthly archives in Rails by Robin Fisher</title>
		<link>http://capturedsparks.com/2008/02/creating-monthly-archives-in-rails/comment-page-1/#comment-7101</link>
		<dc:creator>Robin Fisher</dc:creator>
		<pubDate>Sat, 12 May 2012 08:00:02 +0000</pubDate>
		<guid isPermaLink="false">http://cs.local/?p=95#comment-7101</guid>
		<description>Hi Paul,

I have a method in the Entry model called month_year (effectively stripping the month and year of the entry from the created_at date). Rails then creates a dynamic finder called &quot;find_all_by_month_year&quot; based on this method.

Robin</description>
		<content:encoded><![CDATA[<p>Hi Paul,</p>
<p>I have a method in the Entry model called month_year (effectively stripping the month and year of the entry from the created_at date). Rails then creates a dynamic finder called &#8220;find_all_by_month_year&#8221; based on this method.</p>
<p>Robin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building a todo list with Rails 3 &#8211; Part Two by Tony</title>
		<link>http://capturedsparks.com/2010/05/building-a-todo-list-with-rails-3-part-two/comment-page-1/#comment-7100</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Fri, 11 May 2012 20:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://capturedsparks.com/?p=226#comment-7100</guid>
		<description>@Sonya

I had the same issue and I did what Johnny had suggested and in one of his suggestions he did have the &#039;show&#039; action duplicated. so, instead of this:

def show
@list = List.find(params[:id])
@task = @list.tasks.new
end

CHANGE TO:
def show
@list = List.find(params[:id])
end


THEN CHANGE:
form_for [@list, @task] do &#124;form&#124;

TO:
form_for [@list, @list.tasks.new] do &#124;form&#124;

Hope it helps ;)

BTW, Robin, thanks for this great Tutorial ;)</description>
		<content:encoded><![CDATA[<p>@Sonya</p>
<p>I had the same issue and I did what Johnny had suggested and in one of his suggestions he did have the &#8217;show&#8217; action duplicated. so, instead of this:</p>
<p>def show<br />
@list = List.find(params[:id])<br />
@task = @list.tasks.new<br />
end</p>
<p>CHANGE TO:<br />
def show<br />
@list = List.find(params[:id])<br />
end</p>
<p>THEN CHANGE:<br />
form_for [@list, @task] do |form|</p>
<p>TO:<br />
form_for [@list, @list.tasks.new] do |form|</p>
<p>Hope it helps <img src='http://capturedsparks.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>BTW, Robin, thanks for this great Tutorial <img src='http://capturedsparks.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating monthly archives in Rails by Paul</title>
		<link>http://capturedsparks.com/2008/02/creating-monthly-archives-in-rails/comment-page-1/#comment-7099</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Mon, 07 May 2012 17:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://cs.local/?p=95#comment-7099</guid>
		<description>Hi Robin,

Nice job. But I do have one question. You did not define find_all_by_month_year&#039; in the application.</description>
		<content:encoded><![CDATA[<p>Hi Robin,</p>
<p>Nice job. But I do have one question. You did not define find_all_by_month_year&#8217; in the application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Receiving emails with Ruby on Rails by Robin Fisher</title>
		<link>http://capturedsparks.com/2008/06/receiving-emails-with-ruby-on-rails/comment-page-1/#comment-7096</link>
		<dc:creator>Robin Fisher</dc:creator>
		<pubDate>Mon, 16 Apr 2012 08:21:22 +0000</pubDate>
		<guid isPermaLink="false">http://cs.local/?p=114#comment-7096</guid>
		<description>Hi Faisal,

I don&#039;t actually create the email address. For each event created, it would be given a downcased name e.g. robinsbirthday.  Emails sent to robinsbirthday@mydomain.com would be routed into the application and then I strip out the part before the @ sign and find the relevant event e.g. Event.find_by_downcased_name

Robin</description>
		<content:encoded><![CDATA[<p>Hi Faisal,</p>
<p>I don&#8217;t actually create the email address. For each event created, it would be given a downcased name e.g. robinsbirthday.  Emails sent to <a href="mailto:robinsbirthday@mydomain.com">robinsbirthday@mydomain.com</a> would be routed into the application and then I strip out the part before the @ sign and find the relevant event e.g. Event.find_by_downcased_name</p>
<p>Robin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Receiving emails with Ruby on Rails by Faisal Khalid</title>
		<link>http://capturedsparks.com/2008/06/receiving-emails-with-ruby-on-rails/comment-page-1/#comment-7095</link>
		<dc:creator>Faisal Khalid</dc:creator>
		<pubDate>Sun, 15 Apr 2012 17:05:32 +0000</pubDate>
		<guid isPermaLink="false">http://cs.local/?p=114#comment-7095</guid>
		<description>Hi,

Many thanks for this very useful guide!

I had a question; you mentioned that for every user that signs up on your website, you automatically create an anonymous email like 12345@mydomain.com. How do do this? 

If you could share code/guidelines for doing this, that would be awesome as I am relatively new to rails.

Thank you,


Faisal</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Many thanks for this very useful guide!</p>
<p>I had a question; you mentioned that for every user that signs up on your website, you automatically create an anonymous email like <a href="mailto:12345@mydomain.com">12345@mydomain.com</a>. How do do this? </p>
<p>If you could share code/guidelines for doing this, that would be awesome as I am relatively new to rails.</p>
<p>Thank you,</p>
<p>Faisal</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Receiving emails with Ruby on Rails by Robin Fisher</title>
		<link>http://capturedsparks.com/2008/06/receiving-emails-with-ruby-on-rails/comment-page-1/#comment-7091</link>
		<dc:creator>Robin Fisher</dc:creator>
		<pubDate>Sat, 17 Mar 2012 09:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://cs.local/?p=114#comment-7091</guid>
		<description>Hi Tripp,

I haven&#039;t sent emails directly from one of my servers for a while.

My preferred method is to pass this off to an external service.  I&#039;m currently using Amazon Simple Email Service but I hear good things about &lt;a href=&quot;http://postmarkapp.com/&quot; rel=&quot;nofollow&quot;&gt;Postmark&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Hi Tripp,</p>
<p>I haven&#8217;t sent emails directly from one of my servers for a while.</p>
<p>My preferred method is to pass this off to an external service.  I&#8217;m currently using Amazon Simple Email Service but I hear good things about <a href="http://postmarkapp.com/" rel="nofollow">Postmark</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Receiving emails with Ruby on Rails by Tripp</title>
		<link>http://capturedsparks.com/2008/06/receiving-emails-with-ruby-on-rails/comment-page-1/#comment-7090</link>
		<dc:creator>Tripp</dc:creator>
		<pubDate>Tue, 13 Mar 2012 18:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://cs.local/?p=114#comment-7090</guid>
		<description>Is there a way to do the same thing, but for smtp outgoing emails as well with postfix?</description>
		<content:encoded><![CDATA[<p>Is there a way to do the same thing, but for smtp outgoing emails as well with postfix?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building a todo list with Rails 3 &#8211; Part Two by John Cozen</title>
		<link>http://capturedsparks.com/2010/05/building-a-todo-list-with-rails-3-part-two/comment-page-1/#comment-7088</link>
		<dc:creator>John Cozen</dc:creator>
		<pubDate>Sat, 28 Jan 2012 10:39:55 +0000</pubDate>
		<guid isPermaLink="false">http://capturedsparks.com/?p=226#comment-7088</guid>
		<description>I know it&#039;s been said but your videos are just fantastic. Thanks for putting this together, it&#039;s really helpful, well explained and paced perfectly.</description>
		<content:encoded><![CDATA[<p>I know it&#8217;s been said but your videos are just fantastic. Thanks for putting this together, it&#8217;s really helpful, well explained and paced perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building a todo list with Rails 3 &#8211; Part Two by Sonya</title>
		<link>http://capturedsparks.com/2010/05/building-a-todo-list-with-rails-3-part-two/comment-page-1/#comment-7087</link>
		<dc:creator>Sonya</dc:creator>
		<pubDate>Fri, 30 Dec 2011 09:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://capturedsparks.com/?p=226#comment-7087</guid>
		<description>Hi Robin!  This is my first attempt at any rails code EVER!  I&#039;ve been following along quite smoothly until I hit the same error message as Ryan and Johnny.

.....   No route matches {:controller=&gt;&quot;tasks&quot;, :action=&gt;&quot;complete&quot;, :list_id=&gt;2, :id=&gt;nil}

I have rails v 3.1.3  Johnny posted a fix which I attempted to implement but it does not seem to work for me - the error message remains exactly the same.

Could Johnny perhaps have made an error in his post?  His fix for the ListController Show method doesn&#039;t seem to change your code in any way.

QUOTE:

   i changed my ListController show method from:

   def show
   @list = List.find(params[:id])
   @task = @list.tasks.new
   end

   to :

  def show
  @list = List.find(params[:id])
  @task = @list.tasks.new
  end

Those two bits seem to be identical?

Please help - I was so enjoying the tutorial and would love to complete it before my holiday is over :)

Thanks a million!</description>
		<content:encoded><![CDATA[<p>Hi Robin!  This is my first attempt at any rails code EVER!  I&#8217;ve been following along quite smoothly until I hit the same error message as Ryan and Johnny.</p>
<p>&#8230;..   No route matches {:controller=&gt;&#8221;tasks&#8221;, :action=&gt;&#8221;complete&#8221;, :list_id=&gt;2, :id=&gt;nil}</p>
<p>I have rails v 3.1.3  Johnny posted a fix which I attempted to implement but it does not seem to work for me &#8211; the error message remains exactly the same.</p>
<p>Could Johnny perhaps have made an error in his post?  His fix for the ListController Show method doesn&#8217;t seem to change your code in any way.</p>
<p>QUOTE:</p>
<p>   i changed my ListController show method from:</p>
<p>   def show<br />
   @list = List.find(params[:id])<br />
   @task = @list.tasks.new<br />
   end</p>
<p>   to :</p>
<p>  def show<br />
  @list = List.find(params[:id])<br />
  @task = @list.tasks.new<br />
  end</p>
<p>Those two bits seem to be identical?</p>
<p>Please help &#8211; I was so enjoying the tutorial and would love to complete it before my holiday is over <img src='http://capturedsparks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks a million!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autocomplete with Rails and Prototype by Cumpanasu Florin</title>
		<link>http://capturedsparks.com/2009/11/autocomplete-with-rails-and-prototype/comment-page-1/#comment-7086</link>
		<dc:creator>Cumpanasu Florin</dc:creator>
		<pubDate>Thu, 10 Nov 2011 03:24:13 +0000</pubDate>
		<guid isPermaLink="false">http://cs.local/?p=133#comment-7086</guid>
		<description>I try to create a autocomplete that folow the input cursor. Have somebody something styled like that?</description>
		<content:encoded><![CDATA[<p>I try to create a autocomplete that folow the input cursor. Have somebody something styled like that?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

