<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
	>
<channel>
	<title>Comments on: Upgrading Rails 3.0 Beta4 to Rails 3.0 Release Candidate</title>
	<atom:link href="http://teachmetocode.com/screencasts/upgrading-rails-3-0-beta4-to-rails-3-0-release-candidate/feed/" rel="self" type="application/rss+xml" />
	<link>http://teachmetocode.com/screencasts/upgrading-rails-3-0-beta4-to-rails-3-0-release-candidate/</link>
	<description>Writing Code is the Easy Part</description>
	<lastBuildDate>Sun, 20 May 2012 19:27:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Aaron Tinio</title>
		<link>http://teachmetocode.com/screencasts/upgrading-rails-3-0-beta4-to-rails-3-0-release-candidate/#comment-164</link>
		<dc:creator>Aaron Tinio</dc:creator>
		<pubDate>Wed, 28 Jul 2010 06:01:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.teachmetocode.com/screencasts/50#comment-164</guid>
		<description>In your Rakefile, Rails::Application needs to be changed to YourAppName::Application</description>
		<content:encoded><![CDATA[<p>In your Rakefile, Rails::Application needs to be changed to YourAppName::Application</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron Tinio</title>
		<link>http://teachmetocode.com/screencasts/upgrading-rails-3-0-beta4-to-rails-3-0-release-candidate/#comment-165</link>
		<dc:creator>Aaron Tinio</dc:creator>
		<pubDate>Wed, 28 Jul 2010 04:58:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.teachmetocode.com/screencasts/50#comment-165</guid>
		<description>Running `rake rails:update` helped me zero in on the cause of the deprecation warning.  You may also want to run `bundle update` (replaces lock and unlock) to update your gems.</description>
		<content:encoded><![CDATA[<p>Running `rake rails:update` helped me zero in on the cause of the deprecation warning.  You may also want to run `bundle update` (replaces lock and unlock) to update your gems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: woody2shoes</title>
		<link>http://teachmetocode.com/screencasts/upgrading-rails-3-0-beta4-to-rails-3-0-release-candidate/#comment-168</link>
		<dc:creator>woody2shoes</dc:creator>
		<pubDate>Wed, 28 Jul 2010 04:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.teachmetocode.com/screencasts/50#comment-168</guid>
		<description>Thanks for the help. Feedback like this helps everyone and it&#039;s why I released a video without the answer in it.</description>
		<content:encoded><![CDATA[<p>Thanks for the help. Feedback like this helps everyone and it&#39;s why I released a video without the answer in it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrius Chamentauskas</title>
		<link>http://teachmetocode.com/screencasts/upgrading-rails-3-0-beta4-to-rails-3-0-release-candidate/#comment-166</link>
		<dc:creator>Andrius Chamentauskas</dc:creator>
		<pubDate>Wed, 28 Jul 2010 00:38:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.teachmetocode.com/screencasts/50#comment-166</guid>
		<description>I really didn&#039;t check new Rails routing thoroughly, but I noticed you have &quot;routes.draw do &#124;map&#124;&quot;. If I had to guess, I&#039;d guess the &quot;&#124;map&#124;&quot; part is the one giving you deprecation warnings.</description>
		<content:encoded><![CDATA[<p>I really didn&#39;t check new Rails routing thoroughly, but I noticed you have &#8220;routes.draw do |map|&#8221;. If I had to guess, I&#39;d guess the &#8220;|map|&#8221; part is the one giving you deprecation warnings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: billsaysthis</title>
		<link>http://teachmetocode.com/screencasts/upgrading-rails-3-0-beta4-to-rails-3-0-release-candidate/#comment-167</link>
		<dc:creator>billsaysthis</dc:creator>
		<pubDate>Tue, 27 Jul 2010 21:54:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.teachmetocode.com/screencasts/50#comment-167</guid>
		<description>For the DSL deprecation warning just take the &#124;map&#124; off the end of the start of the routing block:&lt;br&gt;&lt;br&gt;YourApp::Application.routes.draw do&lt;br&gt;&lt;br&gt;instead of &lt;br&gt;&lt;br&gt;YourApp::Application.routes.draw do &#124;map&#124;</description>
		<content:encoded><![CDATA[<p>For the DSL deprecation warning just take the |map| off the end of the start of the routing block:</p>
<p>YourApp::Application.routes.draw do</p>
<p>instead of </p>
<p>YourApp::Application.routes.draw do |map|</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://teachmetocode.com/screencasts/upgrading-rails-3-0-beta4-to-rails-3-0-release-candidate/#comment-169</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 27 Jul 2010 21:54:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.teachmetocode.com/screencasts/50#comment-169</guid>
		<description>Maybe the routes deprecation error is caused by the block variable &#039;map&#039; that is passed? It&#039;s not needed anymore..</description>
		<content:encoded><![CDATA[<p>Maybe the routes deprecation error is caused by the block variable &#39;map&#39; that is passed? It&#39;s not needed anymore..</p>
]]></content:encoded>
	</item>
</channel>
</rss>

