<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>Recent Posts in Rails for PHP Developers | Pragmatic Forums</title>
    <link>http://forums.pragprog.com/forums/50/posts</link>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Errors running methods on page 125 posted by Derek DeVries @ Mon, 05 May 2008 17:03:43 -0000</title>
      <description>&lt;p&gt;The named routes helper methods aren&amp;#8217;t available within top level scope in the console. They are available within the view files (index.html.erb) because Rails automatically includes them as helpers within our controllers and views. To use these methods in the console you need to first include the &lt;code&gt;ActionController::UrlWriter&lt;/code&gt; module.&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;user_group&amp;gt; ruby script/console 
Loading development environment (Rails 2.0.2)
&amp;gt;&amp;gt; include ActionController::UrlWriter
=&amp;gt; Object
&amp;gt;&amp;gt; meeting_path(:id =&amp;gt; Meeting.find(1).id)
=&amp;gt; "/meetings/show/1" 
&lt;/code&gt;&lt;/pre&gt;</description>
      <pubDate>Mon, 05 May 2008 17:03:43 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:407:2734</guid>
      <author>Derek DeVries</author>
      <link>http://forums.pragprog.com/forums/50/topics/407</link>
    </item>
    <item>
      <title>Errors running methods on page 125 posted by Alan Bonde @ Sat, 03 May 2008 19:11:46 -0000</title>
      <description>&lt;p&gt;I haven&amp;#8217;t been able to get the proper results with the &lt;span class="caps"&gt;IRB&lt;/span&gt; using the &amp;#8220;meeting_path&amp;#8221; or &amp;#8220;meeting_url&amp;#8221; methods. I get the following results.&lt;br /&gt;&lt;pre&gt;
&lt;code&gt;
C:\ruby\work\user_group&amp;gt;ruby script/console
Loading development environment (Rails 2.0.2)
&amp;gt;&amp;gt; meeting = Meeting.find(1)
=&amp;gt; #&amp;lt;Meeting id: 1, meets_on: "2007-12-06", location: "University Library", desc
ription: "Rails Hackfest", created_at: "2008-04-30 16:29:33", updated_at: "2008-
04-30 16:32:22"&amp;gt;
&amp;gt;&amp;gt; meeting_path(:id =&amp;gt; meeting.id)
NoMethodError: undefined method `meeting_path' for #&amp;lt;Object:0x27bf9ec&amp;gt;
        from (irb):2
&lt;/code&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/p&gt;


	&lt;p&gt;I get the correct results when I implement them in the index.html.erb file as shown on page 126.&lt;/p&gt;


	&lt;p&gt;Any ideas?&lt;/p&gt;


	&lt;p&gt;Win XP, Rails 2.0.2, Ruby 1.8.6&lt;/p&gt;</description>
      <pubDate>Sat, 03 May 2008 19:11:46 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:407:2718</guid>
      <author>Alan Bonde</author>
      <link>http://forums.pragprog.com/forums/50/topics/407</link>
    </item>
    <item>
      <title>Install the sample code in environment posted by David Trasbo @ Sat, 12 Apr 2008 07:17:04 -0000</title>
      <description>&lt;p&gt;When I use the &lt;code&gt;rake db:create&lt;/code&gt; in the project folder I get the following error:&lt;/p&gt;


&lt;pre&gt;rake aborted!
uninitialized constant ActionView::Helpers::ActiveRecordHelper::Title&lt;/pre&gt;

	&lt;p&gt;I don&amp;#8217;t have any idea what this means.&lt;/p&gt;</description>
      <pubDate>Sat, 12 Apr 2008 07:17:04 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:363:2581</guid>
      <author>David Trasbo</author>
      <link>http://forums.pragprog.com/forums/50/topics/363</link>
    </item>
    <item>
      <title>Install the sample code in environment posted by Derek DeVries @ Fri, 11 Apr 2008 18:58:45 -0000</title>
      <description>&lt;p&gt;David,&lt;/p&gt;


	&lt;p&gt;The &lt;code&gt;rails&lt;/code&gt; command does not actually install anything, but instead generates some code snippets to start a new rails project. The user_group_7 directory you downloaded is a rails application in progress. You can view the source code by just opening the files in your text editor. If you want to see the sample rails application running in your browser you can do the following:&lt;/p&gt;


	&lt;p&gt;1. Move into the user_group_7 directory&lt;br /&gt;2. Use &lt;code&gt;rake db:create&lt;/code&gt; to create the database needed (user_group_development)&lt;br /&gt;3. Use &lt;code&gt;rake db:migrate&lt;/code&gt; to migrate the database&lt;br /&gt;4. Use &lt;code&gt;ruby script/server&lt;/code&gt; to start up the webserver&lt;br /&gt;5. navigate to &lt;a href="http://localhost:3000/meetings"&gt;http://localhost:3000/meetings&lt;/a&gt; to view the site&lt;/p&gt;


&lt;pre&gt;
cd user_group_7
rake db:create
rake db:migrate
ruby script/server
&lt;/pre&gt;

	&lt;p&gt;There is much more information on this process in the first chapter of the book. If this doesn&amp;#8217;t work out for you, paste in a snippet of the error you&amp;#8217;re getting, and I&amp;#8217;ll try to help.&lt;/p&gt;


	&lt;p&gt;Thanks,&lt;br /&gt;Derek&lt;/p&gt;</description>
      <pubDate>Fri, 11 Apr 2008 18:58:45 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:363:2578</guid>
      <author>Derek DeVries</author>
      <link>http://forums.pragprog.com/forums/50/topics/363</link>
    </item>
    <item>
      <title>Install the sample code in environment posted by David Trasbo @ Fri, 11 Apr 2008 18:10:25 -0000</title>
      <description>&lt;p&gt;How do i get the source code I&amp;#8217;ve downloaded from the unzipped zip-file into the Ruby environment? It might seem to be a stupid question, but I tried to copy and paste building_a_rails_app/user_group_7 into my Rails projects folder and then use the command:&lt;/p&gt;


&lt;pre&gt;rails user_group_7&lt;/pre&gt;

	&lt;p&gt;to &amp;#8220;install&amp;#8221; it, but it doesn&amp;#8217;t seem to work. When I start the server neither &amp;#8220;localhost:3000&amp;#8221; or &amp;#8220;0.0.0.0:3000&amp;#8221; respond. I also created the test database and tried the &lt;pre&gt;rake db:migrate&lt;/pre&gt; but it gives me a tricky error.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m a little lost now, could someone help me? Please tell me the right way to do it&amp;#8230;&lt;/p&gt;</description>
      <pubDate>Fri, 11 Apr 2008 18:10:25 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:363:2576</guid>
      <author>David Trasbo</author>
      <link>http://forums.pragprog.com/forums/50/topics/363</link>
    </item>
    <item>
      <title>Forbidden Access in Chapter 5 posted by Dustin Tigner @ Fri, 14 Mar 2008 23:51:56 -0000</title>
      <description>&lt;p&gt;I was able to get around this by going to:&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.pragprog.com/titles/ndphpr/source_code"&gt;http://www.pragprog.com/titles/ndphpr/source_code&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Download the source code for the entire book. Open: building_a_rails_app =&amp;gt; user_group_6 =&amp;gt; public =&amp;gt; images (or stylesheets).&lt;/p&gt;


	&lt;p&gt;~Dustin Tigner&lt;/p&gt;</description>
      <pubDate>Fri, 14 Mar 2008 23:51:56 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:320:2449</guid>
      <author>Dustin Tigner</author>
      <link>http://forums.pragprog.com/forums/50/topics/320</link>
    </item>
    <item>
      <title>Forbidden Access in Chapter 5 posted by Dustin Tigner @ Fri, 14 Mar 2008 23:33:31 -0000</title>
      <description>&lt;p&gt;Greetings,&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m following the user_groups example in chapter five, page 155 of the &lt;span class="caps"&gt;PDF&lt;/span&gt; book. The book states that you should go to the following pages to download the images and &lt;span class="caps"&gt;CSS&lt;/span&gt; code:&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://media.pragprog.com/titles/ndphpr/code/building_a_rails_app/user_group_6/public/stylesheets/"&gt;http://media.pragprog.com/titles/ndphpr/code/building_a_rails_app/user_group_6/public/stylesheets/&lt;/a&gt; &lt;br /&gt;&lt;a href="http://media.pragprog.com/titles/ndphpr/code/building_a_rails_app/user_group_6/public/images"&gt;http://media.pragprog.com/titles/ndphpr/code/building_a_rails_app/user_group_6/public/images&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;When I load these URLs, I am directed to a forbidden page that reads:&lt;/p&gt;


	&lt;p&gt;You don&amp;#8217;t have permission to access /titles/ndphpr/code/building_a_rails_app/user_group_6/public/stylesheets/ on this server.&lt;/p&gt;


	&lt;p&gt;Am I doing something wrong? Please let me know. Thanks!&lt;/p&gt;


	&lt;p&gt;~Dustin Tigner&lt;/p&gt;</description>
      <pubDate>Fri, 14 Mar 2008 23:33:31 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:320:2448</guid>
      <author>Dustin Tigner</author>
      <link>http://forums.pragprog.com/forums/50/topics/320</link>
    </item>
    <item>
      <title>Example application in Ch.1 posted by Dustin Tigner @ Sat, 23 Feb 2008 21:59:48 -0000</title>
      <description>&lt;p&gt;Mike,&lt;/p&gt;


	&lt;p&gt;Thanks for the clarification. I thought I had downloaded an older version. I must have read over it since it did not pertain to me at that moment. Perhaps with the second version of the book, this little note could be provided after: &amp;#8220;Without this template, we are shown the error in Figure 1.4, on the previous page.&amp;#8221; on page 37 of the &lt;span class="caps"&gt;PDF&lt;/span&gt;. It could read: &amp;#8220;Remember, if you receive a redirecting error message, you may have to restart your server.&amp;#8221; Just a suggestion. :)&lt;/p&gt;


	&lt;p&gt;Thanks again for your help! :)&lt;/p&gt;


	&lt;p&gt;~Dustin Tigner&lt;/p&gt;</description>
      <pubDate>Sat, 23 Feb 2008 21:59:48 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:183:2321</guid>
      <author>Dustin Tigner</author>
      <link>http://forums.pragprog.com/forums/50/topics/183</link>
    </item>
    <item>
      <title>Example application in Ch.1 posted by Mike Naberezny @ Sat, 23 Feb 2008 18:40:08 -0000</title>
      <description>&lt;p&gt;Dustin,&lt;/p&gt;


	&lt;p&gt;These notes are found under &amp;#8220;Starting Up the Server&amp;#8221;.  In the latest &lt;span class="caps"&gt;PDF&lt;/span&gt;, that&amp;#8217;s on page 29.  In the printed book, it&amp;#8217;s page 14.&lt;/p&gt;


	&lt;p&gt;Mike&lt;/p&gt;</description>
      <pubDate>Sat, 23 Feb 2008 18:40:08 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:183:2320</guid>
      <author>Mike Naberezny</author>
      <link>http://forums.pragprog.com/forums/50/topics/183</link>
    </item>
    <item>
      <title>Example application in Ch.1 posted by Dustin Tigner @ Sat, 23 Feb 2008 06:31:59 -0000</title>
      <description>&lt;p&gt;Hey guys,&lt;br /&gt;I just ran into the same problem and I&amp;#8217;m on Mac &lt;span class="caps"&gt;OS 10&lt;/span&gt;.4.11. I&amp;#8217;ve been stuck on this for a while. I&amp;#8217;m glad I found this post! I don&amp;#8217;t recall any note stating that I should restart my WEBrick, and I should have a final version&amp;#8230; could you tell me what page this note is on?&lt;/p&gt;


	&lt;p&gt;Does this mean I need to restart the WEBrick server for every model I add? How does this affect live servers?&lt;/p&gt;


	&lt;p&gt;~Dustin Tigner&lt;/p&gt;</description>
      <pubDate>Sat, 23 Feb 2008 06:31:59 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:183:2318</guid>
      <author>Dustin Tigner</author>
      <link>http://forums.pragprog.com/forums/50/topics/183</link>
    </item>
    <item>
      <title>ruby script/server problem posted by Dustin Tigner @ Sat, 23 Feb 2008 04:03:53 -0000</title>
      <description>&lt;p&gt;After my last post, I really thought it had to do something with the path on my computer. To this end, I re-read the ruby installation part again. It states that you must set the path, which is what I did. However, it states that I should edit or create a .bash_login and add:&lt;/p&gt;


	&lt;p&gt;export &lt;span class="caps"&gt;PATH&lt;/span&gt;=&amp;#8221;/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:$PATH&amp;#8221;&lt;/p&gt;


	&lt;p&gt;to it. I did this, though it doesn&amp;#8217;t seem to do anything. I did notice a .bash_profile file (since there was no a .bash_login file originally). I added the above path code to it and now my path reads:&lt;/p&gt;


	&lt;p&gt;/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/bin:/sbin:/usr/bin:/usr/sbin:usr/local/bin:/usr/local/bin&lt;/p&gt;


	&lt;p&gt;After making this change I am able to see the newest version of Ruby. As far as I know, everything works now. If you see something wrong with the solution, or have advice for anything else I should do (such as cleaning up my path). Please let me know. Thanks!&lt;/p&gt;


	&lt;p&gt;~Dustin Tigner&lt;/p&gt;</description>
      <pubDate>Sat, 23 Feb 2008 04:03:53 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:271:2317</guid>
      <author>Dustin Tigner</author>
      <link>http://forums.pragprog.com/forums/50/topics/271</link>
    </item>
    <item>
      <title>ruby script/server problem posted by Dustin Tigner @ Sat, 23 Feb 2008 03:52:38 -0000</title>
      <description>&lt;p&gt;It seems I am having a problem with installing the most recent version of Ruby. I followed all instructions from this article: &lt;a href="http://hivelogic.com/articles/ruby-rails-mongrel-mysql-osx/"&gt;http://hivelogic.com/articles/ruby-rails-mongrel-mysql-osx/&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;This is the article the Ruby website recommends. It details how to install the newest version of Ruby. However, when I do everything and check my version afterwards, it states that my version is still 1.8.2. This is the second time I have installed the most recent version.&lt;/p&gt;


	&lt;p&gt;Could this be a path problem? My path is: /bin:/sbin:/usr/bin:/usr/sbin:usr/local/bin:/usr/local/bin&lt;/p&gt;


	&lt;p&gt;I noticed that there is two usr/local/bin, should I remove the (supposed) duplicate?&lt;/p&gt;


	&lt;p&gt;Sorry for being so newbish. I really wish to start learning Ruby and Rails, though I seem to always come across walls that take forever to cross. I hope we can resolve this! Thank you for your help and time!&lt;/p&gt;


	&lt;p&gt;~Dustin Tigner&lt;/p&gt;</description>
      <pubDate>Sat, 23 Feb 2008 03:52:38 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:271:2316</guid>
      <author>Dustin Tigner</author>
      <link>http://forums.pragprog.com/forums/50/topics/271</link>
    </item>
    <item>
      <title>ruby script/server problem posted by Dustin Tigner @ Fri, 22 Feb 2008 18:27:34 -0000</title>
      <description>&lt;p&gt;Ah, I see. I actually thought I had 1.8.6 till I made that post last night. I&amp;#8217;ll set out to update my ruby version. Thanks for the help!&lt;/p&gt;


	&lt;p&gt;~Dustin&lt;/p&gt;</description>
      <pubDate>Fri, 22 Feb 2008 18:27:34 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:271:2315</guid>
      <author>Dustin Tigner</author>
      <link>http://forums.pragprog.com/forums/50/topics/271</link>
    </item>
    <item>
      <title>ruby script/server problem posted by Derek DeVries @ Fri, 22 Feb 2008 16:59:16 -0000</title>
      <description>&lt;p&gt;Dustin,&lt;/p&gt;


	&lt;p&gt;RubyGems 1.0.1 requires Ruby &amp;gt; 1.8.2. This is probably why it isn&amp;#8217;t working correctly. Ruby 1.8.6 is the current recommended version for Rails.&lt;/p&gt;


	&lt;p&gt;Derek&lt;/p&gt;</description>
      <pubDate>Fri, 22 Feb 2008 16:59:16 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:271:2314</guid>
      <author>Derek DeVries</author>
      <link>http://forums.pragprog.com/forums/50/topics/271</link>
    </item>
    <item>
      <title>ruby script/server problem posted by Dustin Tigner @ Fri, 22 Feb 2008 04:07:33 -0000</title>
      <description>&lt;p&gt;Hello guys,&lt;br /&gt;I&amp;#8217;ve just started and it seems I&amp;#8217;m already off the road. I&amp;#8217;m on chapter 1 and am suppose to run: &lt;code&gt;ruby script/server&lt;/code&gt; from within the newsletter directory. When I do this, I receive the following error:&lt;/p&gt;


	&lt;p&gt;Rails requires RubyGems &amp;gt;= 0.9.4. Please install RubyGems and try again: &lt;a href="http://rubygems.rubyforge.org"&gt;http://rubygems.rubyforge.org&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;The only thing is, I have RubyGems 1.0.1 running, which is what it says when I run &lt;code&gt;ruby -v&lt;/code&gt;. I&amp;#8217;m not sure why it thinks I&amp;#8217;m running a version of RubyGems that is less than 0.9.4.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m on Mac: 10.4.11, running RoR: 2.0.2, Ruby: 1.8.2&lt;/p&gt;


	&lt;p&gt;Let me know if you have any questions. Thank you for the help!&lt;/p&gt;


	&lt;p&gt;~Dustin&lt;/p&gt;</description>
      <pubDate>Fri, 22 Feb 2008 04:07:33 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:271:2309</guid>
      <author>Dustin Tigner</author>
      <link>http://forums.pragprog.com/forums/50/topics/271</link>
    </item>
    <item>
      <title>protect_from_forgery problems with example app in chapter 1 posted by Mike Naberezny @ Sun, 10 Feb 2008 03:16:50 -0000</title>
      <description>&lt;p&gt;Brandon,&lt;/p&gt;


	&lt;p&gt;Yes, the example was updated in the second beta release of our &amp;#8220;Rails for &lt;span class="caps"&gt;PHP&lt;/span&gt; Developers&amp;#8221; book.&lt;/p&gt;


	&lt;p&gt;On this website, visit &amp;#8220;Your Account&amp;#8221; and then select &amp;#8220;Regenerate a &lt;span class="caps"&gt;PDF&lt;/span&gt;&amp;#8221; from the sidebar.  From there, you can select to generate the latest &lt;span class="caps"&gt;PDF&lt;/span&gt; for &amp;#8220;Rails for &lt;span class="caps"&gt;PHP&lt;/span&gt; Developers&amp;#8221; that includes this change and quite a few others.&lt;/p&gt;


	&lt;p&gt;Regards,&lt;br /&gt;Mike&lt;/p&gt;</description>
      <pubDate>Sun, 10 Feb 2008 03:16:50 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:168:2276</guid>
      <author>Mike Naberezny</author>
      <link>http://forums.pragprog.com/forums/50/topics/168</link>
    </item>
    <item>
      <title>protect_from_forgery problems with example app in chapter 1 posted by brandon shi @ Sun, 10 Feb 2008 02:03:48 -0000</title>
      <description>&lt;p&gt;Derek, are you talking about the Beta version of the Rails book? I can&amp;#8217;t seem to find it in my account for download.&lt;/p&gt;</description>
      <pubDate>Sun, 10 Feb 2008 02:03:48 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:168:2275</guid>
      <author>brandon shi</author>
      <link>http://forums.pragprog.com/forums/50/topics/168</link>
    </item>
    <item>
      <title>Book just arrived... I'm a little disappointed posted by Erik Runyon @ Sat, 09 Feb 2008 16:08:32 -0000</title>
      <description>&lt;p&gt;Just unwrapped it last night. The first thing I noticed is that all of the nice code coloring and such that was in the pdf is absent from the book. I think it lost a lot of aesthetic appeal. I&amp;#8217;ll assume it was a matter of production cost, but it&amp;#8217;s still unfortunate.&lt;/p&gt;</description>
      <pubDate>Sat, 09 Feb 2008 16:08:32 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:257:2274</guid>
      <author>Erik Runyon</author>
      <link>http://forums.pragprog.com/forums/50/topics/257</link>
    </item>
    <item>
      <title>What version of Rails is used posted by Ivan Such&#253; @ Fri, 08 Feb 2008 07:21:41 -0000</title>
      <description>&lt;p&gt;Thanks, John.&lt;/p&gt;</description>
      <pubDate>Fri, 08 Feb 2008 07:21:41 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:254:2271</guid>
      <author>Ivan Such&#253;</author>
      <link>http://forums.pragprog.com/forums/50/topics/254</link>
    </item>
    <item>
      <title>What version of Rails is used posted by John Fiala @ Thu, 07 Feb 2008 18:39:21 -0000</title>
      <description>&lt;p&gt;It&amp;#8217;s the version 2.0 &amp;#8211; I was able to follow the book quite well using the latest and greatest rails gems.&lt;/p&gt;</description>
      <pubDate>Thu, 07 Feb 2008 18:39:21 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:254:2269</guid>
      <author>John Fiala</author>
      <link>http://forums.pragprog.com/forums/50/topics/254</link>
    </item>
    <item>
      <title>What version of Rails is used posted by Ivan Such&#253; @ Thu, 07 Feb 2008 17:23:22 -0000</title>
      <description>&lt;p&gt;in this book?&lt;/p&gt;</description>
      <pubDate>Thu, 07 Feb 2008 17:23:22 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:254:2266</guid>
      <author>Ivan Such&#253;</author>
      <link>http://forums.pragprog.com/forums/50/topics/254</link>
    </item>
    <item>
      <title>User authentication unit test? posted by Derek DeVries @ Mon, 07 Jan 2008 02:49:30 -0000</title>
      <description>&lt;p&gt;At the top of that page there is a link to &lt;a href="http://www.pragprog.com/titles/ndphpr/errata/add"&gt;submit it&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 07 Jan 2008 02:49:30 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:203:2135</guid>
      <author>Derek DeVries</author>
      <link>http://forums.pragprog.com/forums/50/topics/203</link>
    </item>
    <item>
      <title>User authentication unit test? posted by John Fiala @ Mon, 07 Jan 2008 01:37:51 -0000</title>
      <description>&lt;p&gt;How do I submit them to the page?  I went to the link you provided, and although I see a lot of errata I can read, I don&amp;#8217;t see anyway to add information?&lt;/p&gt;</description>
      <pubDate>Mon, 07 Jan 2008 01:37:51 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:203:2134</guid>
      <author>John Fiala</author>
      <link>http://forums.pragprog.com/forums/50/topics/203</link>
    </item>
    <item>
      <title>User authentication unit test? posted by Derek DeVries @ Sun, 06 Jan 2008 19:34:10 -0000</title>
      <description>&lt;p&gt;John,&lt;/p&gt;


	&lt;p&gt;We&amp;#8217;re glad you&amp;#8217;re enjoying the book!&lt;/p&gt;


	&lt;p&gt;You&amp;#8217;re right, it seems we jumped ahead with authentication test. We&amp;#8217;ll have to fix that. ActiveSupport::TestCase was recently added to Rails 2.0, and as you&amp;#8217;ve seen it doesn&amp;#8217;t affect the functionality of the tests shown in the book. We&amp;#8217;ll hopefully have these examples updated for the next version.&lt;/p&gt;


	&lt;p&gt;The second issue you mention is because we meant to show only a section of the users controller on page 179/180, and not the entire controller. That was a mistake on our part, and we&amp;#8217;ll have to fix this code example.&lt;/p&gt;


	&lt;p&gt;Thanks for your feedback! We&amp;#8217;ll do our best to address these for the next version. If you find any more errata, feel free to submit them to our &lt;a href="http://www.pragprog.com/titles/ndphpr/errata"&gt;errata page&lt;/a&gt; for the book.&lt;/p&gt;</description>
      <pubDate>Sun, 06 Jan 2008 19:34:10 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:203:2132</guid>
      <author>Derek DeVries</author>
      <link>http://forums.pragprog.com/forums/50/topics/203</link>
    </item>
    <item>
      <title>Example application in Ch.1 posted by Mike Naberezny @ Sun, 06 Jan 2008 05:59:22 -0000</title>
      <description>&lt;p&gt;John,&lt;/p&gt;


	&lt;p&gt;You&amp;#8217;re right, it turned out not to be a Windows-specific issue.  It was just a coincidence that the first two users to experience it were on Windows.  We&amp;#8217;ve added a note to the newest version of the book (not released yet) that restarting the web server might be necessary.&lt;/p&gt;


	&lt;p&gt;Mike&lt;/p&gt;</description>
      <pubDate>Sun, 06 Jan 2008 05:59:22 -0000</pubDate>
      <guid isPermaLink="false">forums.pragprog.com:50:183:2129</guid>
      <author>Mike Naberezny</author>
      <link>http://forums.pragprog.com/forums/50/topics/183</link>
    </item>
  </channel>
</rss>
