<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>script/dbconsole</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -24,9 +24,8 @@ module Rails
       File.exist?(&quot;#{RAILS_ROOT}/vendor/rails&quot;)
     end
 
-    # FIXME : Ruby 1.9
     def preinitialize
-      load(preinitializer_path) if File.exists?(preinitializer_path)
+      load(preinitializer_path) if File.exist?(preinitializer_path)
     end
 
     def preinitializer_path
@@ -44,6 +43,7 @@ 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>@@ -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
@@ -14,30 +14,30 @@ ActiveRecord::Schema.define(:version =&gt; 23) do
   create_table &quot;configuration_parameters&quot;, :force =&gt; true do |t|
     t.string   &quot;name&quot;
     t.string   &quot;value&quot;
-    t.integer  &quot;project_id&quot;
-    t.integer  &quot;stage_id&quot;
+    t.integer  &quot;project_id&quot;,       :limit =&gt; 11
+    t.integer  &quot;stage_id&quot;,         :limit =&gt; 11
     t.string   &quot;type&quot;
     t.datetime &quot;created_at&quot;
     t.datetime &quot;updated_at&quot;
-    t.integer  &quot;prompt_on_deploy&quot;, :default =&gt; 0
+    t.integer  &quot;prompt_on_deploy&quot;, :limit =&gt; 11, :default =&gt; 0
   end
 
   create_table &quot;deployments&quot;, :force =&gt; true do |t|
     t.string   &quot;task&quot;
     t.text     &quot;log&quot;
-    t.integer  &quot;success&quot;,           :default =&gt; 0
-    t.integer  &quot;stage_id&quot;
+    t.integer  &quot;success&quot;,           :limit =&gt; 11, :default =&gt; 0
+    t.integer  &quot;stage_id&quot;,          :limit =&gt; 11
     t.datetime &quot;created_at&quot;
     t.datetime &quot;updated_at&quot;
     t.datetime &quot;completed_at&quot;
     t.text     &quot;description&quot;
-    t.integer  &quot;user_id&quot;
+    t.integer  &quot;user_id&quot;,           :limit =&gt; 11
     t.string   &quot;excluded_host_ids&quot;
   end
 
   create_table &quot;deployments_roles&quot;, :id =&gt; false, :force =&gt; true do |t|
-    t.integer &quot;deployment_id&quot;
-    t.integer &quot;role_id&quot;
+    t.integer &quot;deployment_id&quot;, :limit =&gt; 11
+    t.integer &quot;role_id&quot;,       :limit =&gt; 11
   end
 
   create_table &quot;hosts&quot;, :force =&gt; true do |t|
@@ -66,20 +66,20 @@ ActiveRecord::Schema.define(:version =&gt; 23) do
   end
 
   create_table &quot;recipes_stages&quot;, :id =&gt; false, :force =&gt; true do |t|
-    t.integer &quot;recipe_id&quot;
-    t.integer &quot;stage_id&quot;
+    t.integer &quot;recipe_id&quot;, :limit =&gt; 11
+    t.integer &quot;stage_id&quot;,  :limit =&gt; 11
   end
 
   create_table &quot;roles&quot;, :force =&gt; true do |t|
     t.string   &quot;name&quot;
-    t.integer  &quot;stage_id&quot;
-    t.integer  &quot;host_id&quot;
-    t.integer  &quot;primary&quot;,    :default =&gt; 0
+    t.integer  &quot;stage_id&quot;,   :limit =&gt; 11
+    t.integer  &quot;host_id&quot;,    :limit =&gt; 11
+    t.integer  &quot;primary&quot;,    :limit =&gt; 11, :default =&gt; 0
     t.datetime &quot;created_at&quot;
     t.datetime &quot;updated_at&quot;
-    t.integer  &quot;no_release&quot;, :default =&gt; 0
-    t.integer  &quot;ssh_port&quot;
-    t.integer  &quot;no_symlink&quot;, :default =&gt; 0
+    t.integer  &quot;no_release&quot;, :limit =&gt; 11, :default =&gt; 0
+    t.integer  &quot;ssh_port&quot;,   :limit =&gt; 11
+    t.integer  &quot;no_symlink&quot;, :limit =&gt; 11, :default =&gt; 0
   end
 
   create_table &quot;stage_configurations&quot;, :force =&gt; true do |t|
@@ -87,7 +87,7 @@ ActiveRecord::Schema.define(:version =&gt; 23) do
 
   create_table &quot;stages&quot;, :force =&gt; true do |t|
     t.string   &quot;name&quot;
-    t.integer  &quot;project_id&quot;
+    t.integer  &quot;project_id&quot;,   :limit =&gt; 11
     t.datetime &quot;created_at&quot;
     t.datetime &quot;updated_at&quot;
     t.text     &quot;alert_emails&quot;
@@ -102,7 +102,7 @@ ActiveRecord::Schema.define(:version =&gt; 23) do
     t.datetime &quot;updated_at&quot;
     t.string   &quot;remember_token&quot;
     t.datetime &quot;remember_token_expires_at&quot;
-    t.integer  &quot;admin&quot;,                                   :default =&gt; 0
+    t.integer  &quot;admin&quot;,                     :limit =&gt; 11, :default =&gt; 0
     t.string   &quot;time_zone&quot;,                               :default =&gt; &quot;UTC&quot;
   end
 </diff>
      <filename>db/schema.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+// Copyright (c) 2005-2008 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-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+// Copyright (c) 2005-2008 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-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+// Copyright (c) 2005-2008 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"/>
  <parents type="array">
    <parent>
      <id>23ade750aed49710c04ca735edef1c01c0ccffeb</id>
    </parent>
  </parents>
  <author>
    <name>Jonathan Weiss</name>
    <email>jw@innerewut.de</email>
  </author>
  <url>http://github.com/timshadel/webistrano/commit/b3c4c74b2d76dc4187529865a40500f1932fe2b0</url>
  <id>b3c4c74b2d76dc4187529865a40500f1932fe2b0</id>
  <committed-date>2008-06-13T13:55:12-07:00</committed-date>
  <authored-date>2008-06-13T13:55:12-07:00</authored-date>
  <message>Rails 2.1 updates

git-svn-id: http://labs.peritor.com/svn/webistrano/trunk@112 e1153f85-6c6c-dc11-afa8-0013d3c39b19</message>
  <tree>40342dca7cbb5b51f67df658792735d2ef18093e</tree>
  <committer>
    <name>Jonathan Weiss</name>
    <email>jw@innerewut.de</email>
  </committer>
</commit>
