<?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: Rails Is A Tease</title>
	<atom:link href="http://thinkinginrails.com/2009/11/rails-is-a-tease/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinkinginrails.com/2009/11/rails-is-a-tease/</link>
	<description>A Perl Programmer&#039;s Exploration of The World of Ruby on Rails</description>
	<lastBuildDate>Thu, 12 Jan 2012 03:47:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Thinking In Rails &#187; Blog Archive &#187; Iterating My Way Forward &#8211; User Authentication Is Still A Bitch</title>
		<link>http://thinkinginrails.com/2009/11/rails-is-a-tease/comment-page-1/#comment-249</link>
		<dc:creator>Thinking In Rails &#187; Blog Archive &#187; Iterating My Way Forward &#8211; User Authentication Is Still A Bitch</dc:creator>
		<pubDate>Mon, 08 Mar 2010 06:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinginrails.com/?p=62#comment-249</guid>
		<description>[...] of rails. Hell, this is a new and hardly read or written blog and I&#8217;ve written about it two [...]</description>
		<content:encoded><![CDATA[<p>[...] of rails. Hell, this is a new and hardly read or written blog and I&#8217;ve written about it two [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Valim</title>
		<link>http://thinkinginrails.com/2009/11/rails-is-a-tease/comment-page-1/#comment-12</link>
		<dc:creator>José Valim</dc:creator>
		<pubDate>Fri, 06 Nov 2009 10:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinginrails.com/?p=62#comment-12</guid>
		<description>I found where you got stucked. It&#039;s our fault, you have to configure DeviseMailer.sender and Notifier.sender. I forgot to fix generator output when I renamed the model. :(</description>
		<content:encoded><![CDATA[<p>I found where you got stucked. It&#8217;s our fault, you have to configure DeviseMailer.sender and Notifier.sender. I forgot to fix generator output when I renamed the model. <img src='http://thinkinginrails.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://thinkinginrails.com/2009/11/rails-is-a-tease/comment-page-1/#comment-11</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Thu, 05 Nov 2009 22:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinginrails.com/?p=62#comment-11</guid>
		<description>I&#039;m working on a clean install of ruby and rails via RVM on my linux box now, and if I can duplicate the issue I had I&#039;ll email you directly with all versions and precise errors.</description>
		<content:encoded><![CDATA[<p>I&#8217;m working on a clean install of ruby and rails via RVM on my linux box now, and if I can duplicate the issue I had I&#8217;ll email you directly with all versions and precise errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Valim</title>
		<link>http://thinkinginrails.com/2009/11/rails-is-a-tease/comment-page-1/#comment-10</link>
		<dc:creator>José Valim</dc:creator>
		<pubDate>Thu, 05 Nov 2009 22:52:30 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinginrails.com/?p=62#comment-10</guid>
		<description>Ok, so it can maybe be related with Devise version (we had Notifier, but it was renamed to DeviseMailer). If you have a chance to try it again, please count on me to have it running!

Regards!</description>
		<content:encoded><![CDATA[<p>Ok, so it can maybe be related with Devise version (we had Notifier, but it was renamed to DeviseMailer). If you have a chance to try it again, please count on me to have it running!</p>
<p>Regards!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://thinkinginrails.com/2009/11/rails-is-a-tease/comment-page-1/#comment-9</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 05 Nov 2009 22:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinginrails.com/?p=62#comment-9</guid>
		<description>Holy crap, talk about fast response! :) 

Basically this was on a macbook using the latest stable rails 2.3.4 with the latest stable ruby (1.8.7).  We did:
 - Created the app with rails myapp
 - Installed the gem and completed the other instructions in the &#039;installation&#039; section of the readme.rdoc (http://github.com/plataformatec/devise/blob/master/README.rdoc) 
 - The instructions basically said to use the generators to make it all easy, so we ran &quot;ruby script/generate devise_install&quot; 
 - In the output instructions there it had 3 next steps to do.  The second, adding a Nofity.x.x (setting the sending email address for the mailing system I believe) to the config/application.rb was where things broke, and adding that line at the start, middle or end of the file would cause us to not be able to start the script/server and it would break with an error relating to an undefined something something (most likely to do with not pulling the ActionMailer into the proejct)

Unfortunately I don&#039;t have access to the same system right now and my attempt to duplicate the problem on my linux box is failing for other reasons (undefined method middleware).  *sigh*</description>
		<content:encoded><![CDATA[<p>Holy crap, talk about fast response! <img src='http://thinkinginrails.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Basically this was on a macbook using the latest stable rails 2.3.4 with the latest stable ruby (1.8.7).  We did:<br />
 &#8211; Created the app with rails myapp<br />
 &#8211; Installed the gem and completed the other instructions in the &#8216;installation&#8217; section of the readme.rdoc (<a href="http://github.com/plataformatec/devise/blob/master/README.rdoc" rel="nofollow">http://github.com/plataformatec/devise/blob/master/README.rdoc</a>)<br />
 &#8211; The instructions basically said to use the generators to make it all easy, so we ran &#8220;ruby script/generate devise_install&#8221;<br />
 &#8211; In the output instructions there it had 3 next steps to do.  The second, adding a Nofity.x.x (setting the sending email address for the mailing system I believe) to the config/application.rb was where things broke, and adding that line at the start, middle or end of the file would cause us to not be able to start the script/server and it would break with an error relating to an undefined something something (most likely to do with not pulling the ActionMailer into the proejct)</p>
<p>Unfortunately I don&#8217;t have access to the same system right now and my attempt to duplicate the problem on my linux box is failing for other reasons (undefined method middleware).  *sigh*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Valim</title>
		<link>http://thinkinginrails.com/2009/11/rails-is-a-tease/comment-page-1/#comment-8</link>
		<dc:creator>José Valim</dc:creator>
		<pubDate>Thu, 05 Nov 2009 22:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinginrails.com/?p=62#comment-8</guid>
		<description>Hey, I&#039;m José Valim, from Plataforma which released devise.

I&#039;m sorry you could not having it working through the README steps, maybe we forgot about something while writing it.

However, I cannot understand in which step you failed, which Rails version you were using and so on. So could you please provide more information, so other people don&#039;t get stuck like you unfortunately did?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hey, I&#8217;m José Valim, from Plataforma which released devise.</p>
<p>I&#8217;m sorry you could not having it working through the README steps, maybe we forgot about something while writing it.</p>
<p>However, I cannot understand in which step you failed, which Rails version you were using and so on. So could you please provide more information, so other people don&#8217;t get stuck like you unfortunately did?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

