<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>CHANGELOG</filename>
    </added>
    <added>
      <filename>MIT-LICENSE</filename>
    </added>
    <added>
      <filename>Rakefile</filename>
    </added>
    <added>
      <filename>init.rb</filename>
    </added>
    <added>
      <filename>lib/validates_constancy.rb</filename>
    </added>
    <added>
      <filename>lib/validates_constancy/constancy_validation.rb</filename>
    </added>
    <added>
      <filename>test/README.rdoc</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -2,41 +2,26 @@
 
 http://constancy.rubyforge.org
 
-Compatible with Rails v1.2.2 through v2.0.2 (Active Record v1.15.2 through
-v2.0.2)
+Compatible with Rails v1.2.2 through v2.0.4 (Active Record v1.15.2 through
+v2.0.4)
 
 
 === Introduction
 
-This RubyGem and Rails plugin adds a +validates_constancy_of+ validation to
-Active Record. It allows you to prevent particular database fields from being
-changed after a record is created. A validation error occurs on updates if an
-attribute of a model object is different from its value in the database.
+This Rails plugin adds a +validates_constancy_of+ validation to Active Record.
+It allows you to prevent particular database fields from being changed after a
+record is created. A validation error occurs on updates if an attribute of a
+model object is different from its value in the database.
 
 
 === Installing Validates Constancy
 
-The code is packaged as both a RubyGem and a Rails plugin. You can use either
-one, depending on what your needs are.
+The code is packaged as a Rails plugin. It is compatible with the latest
+released version of the Rails framework (and possibly also other versions -- see
+the 'test' branch of this repository). You can install the plugin with the
+command:
 
-&lt;b&gt;The Validates Constancy gem&lt;/b&gt; is compatible with various versions of Rails
-(Active Record) -- see the _test_ subdirectories of
-http://constancy.rubyforge.org/svn/gem/branches. You can install the gem with
-the command:
-
-  gem install validates_constancy
-
-&lt;b&gt;The Validates Constancy plugin&lt;/b&gt; is compatible with the latest released
-version of the Rails framework (and possibly also other versions -- see
-http://constancy.rubyforge.org/svn/plugin/test). You can install the plugin with
-the command:
-
-  ruby script/plugin install http://constancy.rubyforge.org/svn/plugin/validates_constancy
-
-Use the gem (http://constancy.rubyforge.org/svn/gem) if you're using Active
-Record apart from Rails, or for compatibility with a version of Rails (Active
-Record) that is not supported by the plugin. Use the plugin if your Rails
-version is up to date and if you like the convenience of a Rails plugin.
+  ruby script/plugin install git://github.com/njonsson/validates-constancy-rails-plugin.git
 
 
 === Using constancy validation
@@ -102,35 +87,14 @@ There's a suite of tests that exercises all the functionality of Validates
 Constancy. You can check out a version of the test suite from the repository
 according to the version of Rails (Active Record) it works with.
 
-==== Gem
-
-[&lt;b&gt;Rails v1.2.2 (Active Record v1.15.2)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/gem/branches/branch_1-x/test/rails_1-2-2
-[&lt;b&gt;Rails v1.2.3 (Active Record v1.15.3)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/gem/branches/branch_1-x/test/rails_1-2-3
-[&lt;b&gt;Rails v1.2.4 (Active Record v1.15.4)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/gem/branches/branch_1-x/test/rails_1-2-4
-[&lt;b&gt;Rails v1.2.5 (Active Record v1.15.5)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/gem/branches/branch_1-x/test/rails_1-2-5
-[&lt;b&gt;Rails v1.2.6 (Active Record v1.15.6)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/gem/branches/branch_1-x/test/rails_1-2-6
-[&lt;b&gt;Rails v2.0.0 (Active Record v2.0.0)&lt;/b&gt;]  Check out http://constancy.rubyforge.org/svn/gem/branches/branch_1-x/test/rails_2-0-0
-[&lt;b&gt;Rails v2.0.1 (Active Record v2.0.1)&lt;/b&gt;]  Check out http://constancy.rubyforge.org/svn/gem/branches/branch_1-x/test/rails_2-0-1
-[&lt;b&gt;Rails v2.0.2 (Active Record v2.0.2)&lt;/b&gt;]  Check out http://constancy.rubyforge.org/svn/gem/branches/branch_1-x/test/rails_2-0-2
-[&lt;b&gt;Edge Rails&lt;/b&gt;]                           Check out http://constancy.rubyforge.org/svn/gem/branches/branch_1-x/test/rails_edge
-
-==== Plugin
-
-[&lt;b&gt;Rails v1.2.2 (Active Record v1.15.2)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/plugin/test/rails_1-2-2
-[&lt;b&gt;Rails v1.2.3 (Active Record v1.15.3)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/plugin/test/rails_1-2-3
-[&lt;b&gt;Rails v1.2.4 (Active Record v1.15.4)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/plugin/test/rails_1-2-4
-[&lt;b&gt;Rails v1.2.5 (Active Record v1.15.5)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/plugin/test/rails_1-2-5
-[&lt;b&gt;Rails v1.2.6 (Active Record v1.15.6)&lt;/b&gt;] Check out http://constancy.rubyforge.org/svn/plugin/test/rails_1-2-6
-[&lt;b&gt;Rails v2.0.0 (Active Record v2.0.0)&lt;/b&gt;]  Check out http://constancy.rubyforge.org/svn/plugin/test/rails_2-0-0
-[&lt;b&gt;Rails v2.0.1 (Active Record v2.0.1)&lt;/b&gt;]  Check out http://constancy.rubyforge.org/svn/plugin/test/rails_2-0-1
-[&lt;b&gt;Rails v2.0.2 (Active Record v2.0.2)&lt;/b&gt;]  Check out http://constancy.rubyforge.org/svn/plugin/test/rails_2-0-2
-[&lt;b&gt;Edge Rails&lt;/b&gt;]                           Check out http://constancy.rubyforge.org/svn/plugin/test/rails_edge
+  git checkout test
+  git submodule update --init
 
 Then read rails_*/doc/README_FOR_APP for instructions on how to run the tests.
 
 
 === Credits
 
-Copyright &#169; 2007-2008 Nils Jonsson (mailto:nils@alumni.rice.edu)
+Copyright &#169; 2007-2009 Nils Jonsson (mailto:nils@alumni.rice.edu)
 
 Released under the MIT license.</diff>
      <filename>README.rdoc</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>test/rails_1-2-2/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_1-2-2/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_1-2-3/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_1-2-3/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_1-2-4/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_1-2-4/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_1-2-5/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_1-2-5/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_1-2-6/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_1-2-6/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-0/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-0/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-1/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-1/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-2/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-2/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-3/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-3/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-4/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_2-0-4/vendor/rails</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/README</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/Rakefile</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/app/controllers/application.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/app/helpers/application_helper.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/app/models/license_plate.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/app/models/person.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/app/models/schmoe.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/app/models/settings.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/app/models/very_important_person.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/app/views/layouts/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/config/boot.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/config/database.yml</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/config/environment.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/config/environments/development.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/config/environments/production.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/config/environments/test.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/config/initializers/inflections.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/config/initializers/mime_types.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/config/routes.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/db/migrate/001_create_people.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/db/migrate/002_create_license_plates.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/db/schema.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/doc/README_FOR_APP</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/lib/tasks/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/log/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/.htaccess</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/404.html</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/422.html</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/500.html</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/dispatch.cgi</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/dispatch.fcgi</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/dispatch.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/favicon.ico</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/images/rails.png</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/index.html</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/javascripts/application.js</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/javascripts/controls.js</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/javascripts/dragdrop.js</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/javascripts/effects.js</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/javascripts/prototype.js</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/robots.txt</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/public/stylesheets/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/about</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/console</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/destroy</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/generate</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/performance/benchmarker</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/performance/profiler</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/performance/request</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/plugin</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/process/inspector</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/process/reaper</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/process/spawner</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/runner</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/script/server</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/fixtures/license_plates.yml</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/fixtures/people.yml</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/functional/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/integration/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/mocks/development/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/mocks/test/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/test_helper.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/unit/license_plate_test.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/unit/person_test.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/unit/schmoe_test.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/test/unit/very_important_person_test.rb</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/tmp/cache/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/tmp/pids/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/tmp/sessions/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/tmp/sockets/.gitignore</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/vendor/plugins/validates_constancy</filename>
    </removed>
    <removed>
      <filename>test/rails_edge/vendor/rails</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>1590d549bec5a4a0d8cf4271ff320455526f49ad</id>
    </parent>
  </parents>
  <author>
    <name>Nils Jonsson</name>
    <email>nils@alumni.rice.edu</email>
  </author>
  <url>http://github.com/njonsson/validates-constancy-rails-plugin/commit/7a0fd3c8cfeed7b62e5155864703dda94ded45fb</url>
  <id>7a0fd3c8cfeed7b62e5155864703dda94ded45fb</id>
  <committed-date>2009-03-09T20:16:05-07:00</committed-date>
  <authored-date>2009-03-09T20:16:05-07:00</authored-date>
  <message>Delete tests, leaving only source. Update readme files for new repository structure</message>
  <tree>0a4d173b8202ce1b4cee9f0a83fa768a44473873</tree>
  <committer>
    <name>Nils Jonsson</name>
    <email>nils@alumni.rice.edu</email>
  </committer>
</commit>
