<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>script/dbconsole</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -43,6 +43,7 @@ gdonald@gmail.com
 http://destiney.com/
 
 Contributors:
+
 Jacek Panachida
 jacek.panachida@gmail.com
 </diff>
      <filename>README.txt</filename>
    </modified>
    <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>@@ -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.1.0' unless defined? RAILS_GEM_VERSION
 
 # Bootstrap the Rails environment, frameworks, and default configuration
 require File.join(File.dirname(__FILE__), 'boot')
@@ -23,7 +23,7 @@ Rails::Initializer.run do |config|
   # To use Rails without a database, you must remove the Active Record framework
   # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
 
-  # Only load the plugins named here, in the order given. By default, all plugins 
+  # Only load the plugins named here, in the order given. By default, all plugins
   # in vendor/plugins are loaded in alphabetical order.
   # :all can be used as a placeholder for all plugins not explicitly named
   # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
@@ -37,7 +37,7 @@ Rails::Initializer.run do |config|
 
   # Your secret key for verifying cookie session data integrity.
   # If you change this key, all old sessions will become invalid!
-  # Make sure the secret is at least 30 characters and all random, 
+  # Make sure the secret is at least 30 characters and all random,
   # no regular words or you'll be exposed to dictionary attacks.
   # config.action_controller.session = {
   #   :session_key =&gt; '_railsdb_session',</diff>
      <filename>config/environment.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</diff>
      <filename>db/schema.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,16 +1,16 @@
 == RailsDB
 
-{RailsDB}[http://railsdb.org/] is a web application written in Ruby using the Ruby on Rails web framework to provide a generic interface to popular open source databases such as MySQL, PostgreSQL, and SQLite.
+{RailsDB}[http://railsdb.org/] is a web application written in Ruby using the Ruby on Rails web framework to provide a generic interface to popular databases such as SQLite, MySQL, PostgreSQL, and Oracle.
 
 === Prerequisites and Assumptions
 
-- {Ruby}[http://www.ruby-lang.org/] and {Ruby on Rails}[http://rubyonrails.com/] are required to run RailsDB.  Please visit those sites for installation instructions.
-- Rails depends on a stable version of Ruby, {version 1.8.6 is being recommended}[http://rubyonrails.com/down] currently.
+- {Ruby}[http://www.ruby-lang.org/] and {Ruby on Rails}[http://rubyonrails.com/] are required to run RailsDB. Please visit those sites for installation instructions.
+- Rails depends on a stable version of Ruby, {version 1.8.7 is being recommended for Rails 2.1.0}[http://rubyonrails.com/down] currently.
 - RailsDB may at any time depend on a specific version of Rails. Using something close to that version will usually work as well.  Check or update the RAILS_GEM_VERSION in config/environment.db as required.
 
 - You can install a specific version of Rails using gem, for example:
 
-    gem install rails -v=2.0.2
+    gem install rails -v=2.1.0
 
 - RailsDB is installed using rake commands.  Install rake:
 
@@ -23,15 +23,21 @@
 - Using RailsDB with MySQL requires the mysql gem.
 
     gem install mysql
-    
+
     or
-    
+
     gem install mysql -- --with-mysql-dir=/usr/local/mysql
 
 - Using RailsDB with PostgreSQL requires the postgres gem.
 
     gem install postgres
-    
+
+- Using RailsDB with Oracle requires the oracle gem.
+
+    gem install activerecord-oracle-adapter
+
+- You will also need to install individual Ruby database drivers as required.
+
 - RailsDB requires the paginator gem.
 
     gem install paginator
@@ -45,11 +51,15 @@
     RAILS_ENV=development rake db:migrate
 
 - If something goes wrong or you need to try again you can undo the migration back to the beginning:
-    
+
     RAILS_ENV=development rake db:migrate VERSION=0
-    
+
+    or
+
+    rm -f db/development.sqlite3
+
 - If you do not wish to use SQLite, then have a look at config/database.yml and setup another option.
-    
+
 - Start server:
 
     script/server
@@ -63,4 +73,6 @@
 
 === Finally..
 
-Run &quot;rake doc:app&quot; to regenerate API documentation for the models, controllers, helpers, and libraries.
+Run &quot;rake doc:app&quot; to regenerate API documentation for the models, controllers, helpers, and libraries.  Then visit railsdb/doc/app/index.html in your browser.
+
+Run &quot;rake test:coverage&quot; to execute the test suite.  Then visit: http://localhost:3000/coverage
\ No newline at end of file</diff>
      <filename>doc/README_FOR_APP</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>f8f0ea619a2ac9e3f7cf984f219da40cb47feee2</id>
    </parent>
  </parents>
  <author>
    <name>Greg Donald</name>
    <email>gdonald@gmail.com</email>
  </author>
  <url>http://github.com/gdonald/railsdb/commit/17dafcc446479d23472ee65dce3b4b94ea1ea928</url>
  <id>17dafcc446479d23472ee65dce3b4b94ea1ea928</id>
  <committed-date>2008-06-23T21:19:08-07:00</committed-date>
  <authored-date>2008-06-23T21:19:08-07:00</authored-date>
  <message>rails 2.1.0 updates</message>
  <tree>847e22441f7bd322958785f4940551205b2900fd</tree>
  <committer>
    <name>Greg Donald</name>
    <email>gdonald@gmail.com</email>
  </committer>
</commit>
