<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -15,14 +15,14 @@ class Database &lt; ActiveRecord::Base
 
   validates_length_of   :name,
                         :maximum    =&gt; 64,
-                        :message    =&gt; 'must be less than %d characters in length'
+                        :message    =&gt; 'must be less than {count} characters in length'
 
   validates_presence_of :description,
                         :message    =&gt; 'description required'
 
   validates_length_of   :description,
                         :maximum    =&gt; 255,
-                        :message    =&gt; 'must be less than %d characters in length'
+                        :message    =&gt; 'must be less than {count} characters in length'
 
   validates_presence_of :path,
                         :if         =&gt; Proc.new { |database| database.driver &amp;&amp; database.driver.name == 'sqlite3' },
@@ -40,7 +40,7 @@ class Database &lt; ActiveRecord::Base
   validates_length_of   :host,
                         :if         =&gt; Proc.new { |database| database.driver &amp;&amp; database.driver.name != 'sqlite3' },
                         :maximum    =&gt; 255,
-                        :message    =&gt; 'must be less than %d characters in length'
+                        :message    =&gt; 'must be less than {count} characters in length'
 
   validates_presence_of :username,
                         :if         =&gt; Proc.new { |database| database.driver &amp;&amp; database.driver.name != 'sqlite3' },
@@ -49,12 +49,12 @@ class Database &lt; ActiveRecord::Base
   validates_length_of   :username,
                         :if         =&gt; Proc.new { |database| database.driver &amp;&amp; database.driver.name != 'sqlite3' },
                         :maximum    =&gt; 32,
-                        :message    =&gt; 'must be less than %d characters in length'
+                        :message    =&gt; 'must be less than {count} characters in length'
 
   validates_length_of   :password,
                         :allow_nil  =&gt; true,
                         :maximum    =&gt; 40,
-                        :message    =&gt; 'must be less than %d characters in length'
+                        :message    =&gt; 'must be less than {count} characters in length'
 
   #
   #</diff>
      <filename>app/models/database.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,6 +7,6 @@ class Driver &lt; ActiveRecord::Base
 
   validates_length_of   :name,
                         :maximum =&gt; 16,
-                        :message =&gt; 'must be %d characters or less'
+                        :message =&gt; 'must be {count} characters or less'
 
 end</diff>
      <filename>app/models/driver.rb</filename>
    </modified>
    <modified>
      <diff>@@ -24,8 +24,9 @@ module Rails
       File.exist?(&quot;#{RAILS_ROOT}/vendor/rails&quot;)
     end
 
+    # FIXME : Ruby 1.9
     def preinitialize
-      load(preinitializer_path) if File.exist?(preinitializer_path)
+      load(preinitializer_path) if File.exists?(preinitializer_path)
     end
 
     def preinitializer_path
@@ -43,7 +44,6 @@ module Rails
   class VendorBoot &lt; Boot
     def load_initializer
       require &quot;#{RAILS_ROOT}/vendor/rails/railties/lib/initializer&quot;
-      Rails::Initializer.run(:install_gem_spec_stubs)
     end
   end
 </diff>
      <filename>config/boot.rb</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@
 # ENV['RAILS_ENV'] ||= 'production'
 
 # Specifies gem version of Rails to use when vendor/rails is not present
-RAILS_GEM_VERSION = '2.0.2' unless defined? RAILS_GEM_VERSION
+RAILS_GEM_VERSION = '2.2.2' unless defined? RAILS_GEM_VERSION
 
 # Bootstrap the Rails environment, frameworks, and default configuration
 require File.join(File.dirname(__FILE__), 'boot')
@@ -77,11 +77,6 @@ PER_PAGE = 20
 LINK_SPAN = 4
 
 #
-# Fixes for irregular pluralizations
-#
-Inflector.inflections.irregular 'database', 'databases'
-
-#
 # Dynamic table names can't override core Ruby/Rails classes
 #
 ALT_TABLE_NAMES = { 'proc'      =&gt; 'proc_renamed',      # mysql</diff>
      <filename>config/environment.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,10 +1,3 @@
-# Be sure to restart your server when you modify this file.
-
-# Add new inflection rules using the following format 
-# (all these examples are active by default):
-# Inflector.inflections do |inflect|
-#   inflect.plural /^(ox)$/i, '\1en'
-#   inflect.singular /^(ox)en/i, '\1'
-#   inflect.irregular 'person', 'people'
-#   inflect.uncountable %w( fish sheep )
-# end
+ActiveSupport::Inflector.inflections do |inflect|
+  inflect.irregular 'database', 'databases'
+end</diff>
      <filename>config/initializers/inflections.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # This file is auto-generated from the current state of the database. Instead of editing this file, 
-# please use the migrations feature of ActiveRecord to incrementally modify your database, and
+# please use the migrations feature of Active Record to incrementally modify your database, and
 # then regenerate this schema definition.
 #
 # Note that this schema.rb definition is the authoritative source for your database schema. If you need
@@ -34,9 +34,7 @@ ActiveRecord::Schema.define(:version =&gt; 9) do
   end
 
   create_table &quot;drivers&quot;, :force =&gt; true do |t|
-    t.string   &quot;name&quot;,       :limit =&gt; 64
-    t.datetime &quot;created_at&quot;
-    t.datetime &quot;updated_at&quot;
+    t.string &quot;name&quot;, :limit =&gt; 16, :null =&gt; false
   end
 
   create_table &quot;group_permissions&quot;, :force =&gt; true do |t|
@@ -72,8 +70,8 @@ ActiveRecord::Schema.define(:version =&gt; 9) do
     t.datetime &quot;updated_at&quot;
   end
 
-  add_index &quot;sessions&quot;, [&quot;updated_at&quot;], :name =&gt; &quot;index_sessions_on_updated_at&quot;
   add_index &quot;sessions&quot;, [&quot;session_id&quot;], :name =&gt; &quot;index_sessions_on_session_id&quot;
+  add_index &quot;sessions&quot;, [&quot;updated_at&quot;], :name =&gt; &quot;index_sessions_on_updated_at&quot;
 
   create_table &quot;user_groups&quot;, :force =&gt; true do |t|
     t.integer  &quot;user_id&quot;,    :null =&gt; false
@@ -95,7 +93,7 @@ ActiveRecord::Schema.define(:version =&gt; 9) do
     t.datetime &quot;updated_at&quot;
   end
 
-  add_index &quot;users&quot;, [&quot;username&quot;], :name =&gt; &quot;index_users_on_username&quot;, :unique =&gt; true
   add_index &quot;users&quot;, [&quot;email&quot;], :name =&gt; &quot;index_users_on_email&quot;, :unique =&gt; true
+  add_index &quot;users&quot;, [&quot;username&quot;], :name =&gt; &quot;index_users_on_username&quot;, :unique =&gt; true
 
 end</diff>
      <filename>db/schema.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
 //           (c) 2005-2007 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
 //           (c) 2005-2007 Jon Tirsen (http://www.tirsen.com)
 // Contributors:</diff>
      <filename>public/javascripts/controls.js</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
 //           (c) 2005-2007 Sammi Williams (http://www.oriontransfer.co.nz, sammi@oriontransfer.co.nz)
 // 
 // script.aculo.us is freely distributable under the terms of an MIT-style license.</diff>
      <filename>public/javascripts/dragdrop.js</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
 // Contributors:
 //  Justin Palmer (http://encytemedia.com/)
 //  Mark Pilgrim (http://diveintomark.org/)</diff>
      <filename>public/javascripts/effects.js</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>log/mongrel.log</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>79e6be29eff7c8269dc469f5be0aa0e8aba84211</id>
    </parent>
  </parents>
  <author>
    <name>Greg Donald</name>
    <email>destiney@neptune.local</email>
  </author>
  <url>http://github.com/gdonald/railsdb/commit/f6ab653eb0d9912667419488a46bf9ac6f8de520</url>
  <id>f6ab653eb0d9912667419488a46bf9ac6f8de520</id>
  <committed-date>2008-12-31T22:13:56-08:00</committed-date>
  <authored-date>2008-12-31T22:13:56-08:00</authored-date>
  <message>rails 2.2.2 fixes</message>
  <tree>670ff55b2194f39ff2360de8c24da26d945038ba</tree>
  <committer>
    <name>Greg Donald</name>
    <email>destiney@neptune.local</email>
  </committer>
</commit>
