<?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 on: A Rails 2.1 case study: upgrading the Insoshi social networking platform</title>
	<atom:link href="http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/</link>
	<description>Michael Hartl&#039;s tech blog</description>
	<lastBuildDate>Sat, 06 Mar 2010 17:10:54 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Michael Hartl</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-228</link>
		<dc:creator>Michael Hartl</dc:creator>
		<pubDate>Wed, 07 Oct 2009 22:19:47 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-228</guid>
		<description>Nope, we never did figure it out. After running the one-time fix, there wasn&#039;t any compelling reason to try.</description>
		<content:encoded><![CDATA[<p>Nope, we never did figure it out. After running the one-time fix, there wasn&#8217;t any compelling reason to try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terri I.</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-227</link>
		<dc:creator>Terri I.</dc:creator>
		<pubDate>Wed, 07 Oct 2009 18:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-227</guid>
		<description>Did you ever figure out why your schema_migrations table was not populated automatically?  We just had same problem and would like to understand what happened.  The schema_migrations table was created but not updated with the values that had been in the schema_info table (this was part of an upgrade from 1.2 to 2.3).</description>
		<content:encoded><![CDATA[<p>Did you ever figure out why your schema_migrations table was not populated automatically?  We just had same problem and would like to understand what happened.  The schema_migrations table was created but not updated with the values that had been in the schema_info table (this was part of an upgrade from 1.2 to 2.3).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jedford Seculles</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-210</link>
		<dc:creator>Jedford Seculles</dc:creator>
		<pubDate>Fri, 05 Jun 2009 05:04:44 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-210</guid>
		<description>we ran into the same prob as you guys did in your production server; that is - the new schema tables didn&#039;t create successfully. We had to do this manually

If you&#039;re on oracle do this (assuming the schema_info version is 200):

declare
  v_target integer := 200;
  v_cnt integer := 0;
begin
  while v_cnt&lt;v_target loop
    v_cnt := v_cnt + 1;
    insert into schema_migrations values (v_cnt);
  end loop;
end;</description>
		<content:encoded><![CDATA[<p>we ran into the same prob as you guys did in your production server; that is &#8211; the new schema tables didn&#8217;t create successfully. We had to do this manually</p>
<p>If you&#8217;re on oracle do this (assuming the schema_info version is 200):</p>
<p>declare<br />
  v_target integer := 200;<br />
  v_cnt integer := 0;<br />
begin<br />
  while v_cnt&lt;v_target loop<br />
    v_cnt := v_cnt + 1;<br />
    insert into schema_migrations values (v_cnt);<br />
  end loop;<br />
end;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Leverington</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-174</link>
		<dc:creator>Alex Leverington</dc:creator>
		<pubDate>Tue, 24 Feb 2009 21:47:33 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-174</guid>
		<description>Thanks for your post. Your notes were useful for us when upgrading to Rails 2.2.2! Another note to add is that if you generate fields with form helper tags and you name the field &#039;name[field]&#039;, Rails222 will generate a field with an id of name_field instead (the name is still &#039;name[field]&#039;). This creates a problem if you&#039;ve got manual JS pointing to &#039;name[field]&#039;. The solution is to manually specify the :id field and/or nest the field in a rails generated form and let rails assign the name/id, or, change all the refs to name_field.</description>
		<content:encoded><![CDATA[<p>Thanks for your post. Your notes were useful for us when upgrading to Rails 2.2.2! Another note to add is that if you generate fields with form helper tags and you name the field &#8216;name[field]&#8216;, Rails222 will generate a field with an id of name_field instead (the name is still &#8216;name[field]&#8216;). This creates a problem if you&#8217;ve got manual JS pointing to &#8216;name[field]&#8216;. The solution is to manually specify the :id field and/or nest the field in a rails generated form and let rails assign the name/id, or, change all the refs to name_field.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mhartl</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-77</link>
		<dc:creator>mhartl</dc:creator>
		<pubDate>Tue, 19 Aug 2008 00:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-77</guid>
		<description>@Brian: I don&#039;t think so, but maybe try asking at the &lt;a href=&quot;http://groups.google.com/group/insoshi&quot; rel=&quot;nofollow&quot;&gt;Google group&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>@Brian: I don&#8217;t think so, but maybe try asking at the <a href="http://groups.google.com/group/insoshi" rel="nofollow">Google group</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-76</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 19 Aug 2008 00:18:50 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-76</guid>
		<description>All my routing tests failing with the following basic message:

NoMethodError in &#039;ItemsController route recognition should generate params { :controller =&gt; &#039;items&#039;, action =&gt; &#039;index&#039; } from GET /items&#039;
undefined method `to_plain_segments&#039; for #

Anyone else see or have this issue?</description>
		<content:encoded><![CDATA[<p>All my routing tests failing with the following basic message:</p>
<p>NoMethodError in &#8216;ItemsController route recognition should generate params { :controller =&gt; &#8216;items&#8217;, action =&gt; &#8216;index&#8217; } from GET /items&#8217;<br />
undefined method `to_plain_segments&#8217; for #</p>
<p>Anyone else see or have this issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mhartl</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-75</link>
		<dc:creator>mhartl</dc:creator>
		<pubDate>Tue, 19 Aug 2008 00:16:34 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-75</guid>
		<description>@Brian: weird; I thought I cut-and-pasted that, but you&#039;re right: the current RubyGems version is 1.2.0.  I&#039;ve updated the post accordingly.</description>
		<content:encoded><![CDATA[<p>@Brian: weird; I thought I cut-and-pasted that, but you&#8217;re right: the current RubyGems version is 1.2.0.  I&#8217;ve updated the post accordingly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-74</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Mon, 18 Aug 2008 23:56:17 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-74</guid>
		<description>Is rubygems 1.2.1 out?  On rubyforge, I only see 1.2.0 - when I did the gem system update, I ended up on that 1.2.0 version.</description>
		<content:encoded><![CDATA[<p>Is rubygems 1.2.1 out?  On rubyforge, I only see 1.2.0 &#8211; when I did the gem system update, I ended up on that 1.2.0 version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Running Rails tests with autotest (ZenTest) and RSpec &#171; Insoshi Ruby on Rails blog</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-57</link>
		<dc:creator>Running Rails tests with autotest (ZenTest) and RSpec &#171; Insoshi Ruby on Rails blog</dc:creator>
		<pubDate>Mon, 28 Jul 2008 20:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-57</guid>
		<description>[...] autotest &#8212; mhartl @ 1:12 pm   I recently ran into a problem with autotest (ZenTest) after upgrading to Rails 2.1 and RSpec 1.4.1. Solving it was annoying, so I hope I can save others some trouble. Here’s the [...]</description>
		<content:encoded><![CDATA[<p>[...] autotest &#8212; mhartl @ 1:12 pm   I recently ran into a problem with autotest (ZenTest) after upgrading to Rails 2.1 and RSpec 1.4.1. Solving it was annoying, so I hope I can save others some trouble. Here’s the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mhartl</title>
		<link>http://blog.mhartl.com/2008/07/03/a-rails-21-case-study-upgrading-the-insoshi-social-networking-platform/#comment-43</link>
		<dc:creator>mhartl</dc:creator>
		<pubDate>Fri, 18 Jul 2008 20:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://insoshi.wordpress.com/?p=13#comment-43</guid>
		<description>@Evan: Thanks.  Fixed.  (N.B.  I&#039;m pretty sure you meant to leave this comment at &lt;a href=&quot;http://blog.insoshi.com/2008/07/17/searching-a-ruby-on-rails-application-with-sphinx-and-ultrasphinx/&quot; rel=&quot;nofollow&quot;&gt;Searching a Ruby on Rails application with Sphinx and Ultrasphinx&lt;/a&gt;. :-)</description>
		<content:encoded><![CDATA[<p>@Evan: Thanks.  Fixed.  (N.B.  I&#8217;m pretty sure you meant to leave this comment at <a href="http://blog.insoshi.com/2008/07/17/searching-a-ruby-on-rails-application-with-sphinx-and-ultrasphinx/" rel="nofollow">Searching a Ruby on Rails application with Sphinx and Ultrasphinx</a>. :-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
