<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -15,10 +15,7 @@ require File.join(crt, &quot;rake_task_requires&quot;)
   s.files = FileList['lib/**/*.*', 'README', 'doc/**/*.*', 'bin/**/*.*']
   s.require_paths &lt;&lt; 'lib'
 
-  # s.add_dependency(&quot;dm-core&quot;, &quot;0.9.2&quot;)
-  # s.add_dependency(&quot;dm-migrations&quot;, &quot;0.9.2&quot;)
-  # s.add_dependency(&quot;dm-validations&quot;, &quot;0.9.2&quot;)
-  s.add_dependency(&quot;data_mapper&quot;, &quot;0.9.2&quot;)
+  s.add_dependency(&quot;data_mapper&quot;, &quot;0.9.3&quot;)
   s.extra_rdoc_files = [&quot;README&quot;]
   s.has_rdoc = true
   s.required_ruby_version = &quot;&gt;= 1.8.6&quot;</diff>
      <filename>mack-data_mapper/Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,23 +1,9 @@
 module DataMapper # :nodoc:
   module MigrationRunner # :nodoc:
     
-    def reset!
+    def self.reset!
       @@migrations = []
     end
     
   end
-end
-
-module SQL # :nodoc:
-  class TableCreator # :nodoc:
-    class Column # :nodoc:
-
-      def build_type(type_class)
-        schema = {:name =&gt; @name, :quote_column_name =&gt; quoted_name}.merge(@opts)
-        schema = @adapter.class.type_map[type_class].merge(schema)
-        @adapter.property_schema_statement(schema)
-      end
-
-    end
-  end
-end
+end
\ No newline at end of file</diff>
      <filename>mack-data_mapper/lib/dm_patches/migrations.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,4 @@ whiny_config_missing: false
 
 mack::session_id: _fake_application_session_id
 
-orm: data_mapper
-
 mack::testing_framework: rspec
\ No newline at end of file</diff>
      <filename>mack-data_mapper/spec/fake_application/config/app_config/default.yml</filename>
    </modified>
    <modified>
      <diff>@@ -10,3 +10,5 @@ require_gems do |gem|
   # gem.add :termios
   # gem.add :rubyzip, :source =&gt; &quot;http://gems.rubyforge.org&quot;
 end
+
+require File.join(Mack.root, &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;mack-data_mapper&quot;)</diff>
      <filename>mack-data_mapper/spec/fake_application/config/initializers/gems.rb</filename>
    </modified>
    <modified>
      <diff>@@ -33,40 +33,34 @@ describe &quot;rake&quot; do
       
         it &quot;should create a db for the current environment&quot; do
           repository(:mysql_test_tmp) do |repo|
-            repo.adapter.query(&quot;show databases;&quot;).should_not include(&quot;mack_data_mapper_test&quot;)
+            repository(:mysql_test_tmp).adapter.query(&quot;show databases;&quot;).should_not include(&quot;mack_data_mapper_test&quot;)
             rake_task(&quot;db:recreate&quot;)
-            repo.adapter.query(&quot;show databases;&quot;).should include(&quot;mack_data_mapper_test&quot;)
+            repository(:mysql_test_tmp).adapter.query(&quot;show databases;&quot;).should include(&quot;mack_data_mapper_test&quot;)
           end
         end
       
         it &quot;should drop/create a db if it already exists for the current environment&quot; do
-          repository(:mysql_test_tmp) do |repo|
-            rake_task(&quot;db:recreate&quot;)
-            Zombie.should_not be_storage_exists
-            Zombie.auto_migrate!
-            Zombie.should be_storage_exist
-            rake_task(&quot;db:recreate&quot;)
-            Zombie.should_not be_storage_exists
-          end
+          rake_task(&quot;db:recreate&quot;)
+          Zombie.should_not be_storage_exists
+          Zombie.auto_migrate!
+          Zombie.should be_storage_exist
+          rake_task(&quot;db:recreate&quot;)
+          Zombie.should_not be_storage_exists
         end
       
         it &quot;should create a db for the specified environment&quot; do
-          repository(:mysql_test_tmp) do |repo|
-            repo.adapter.query(&quot;show databases;&quot;).should_not include(&quot;mack_data_mapper_production&quot;)
-            rake_task(&quot;db:recreate&quot;, &quot;MACK_ENV&quot; =&gt; &quot;production&quot;)
-            repo.adapter.query(&quot;show databases;&quot;).should include(&quot;mack_data_mapper_production&quot;)
-          end
+          repository(:mysql_test_tmp).adapter.query(&quot;show databases;&quot;).should_not include(&quot;mack_data_mapper_production&quot;)
+          rake_task(&quot;db:recreate&quot;, &quot;MACK_ENV&quot; =&gt; &quot;production&quot;)
+          repository(:mysql_test_tmp).adapter.query(&quot;show databases;&quot;).should include(&quot;mack_data_mapper_production&quot;)
         end
       
         it &quot;should drop/create a db if it already exists for the specified environment&quot; do
-          repository(:mysql_test_tmp) do |repo|
-            rake_task(&quot;db:recreate&quot;, &quot;MACK_ENV&quot; =&gt; &quot;production&quot;)
-            Zombie.should_not be_storage_exists
-            Zombie.auto_migrate!
-            Zombie.should be_storage_exist
-            rake_task(&quot;db:recreate&quot;, &quot;MACK_ENV&quot; =&gt; &quot;production&quot;)
-            Zombie.should_not be_storage_exists
-          end
+          rake_task(&quot;db:recreate&quot;, &quot;MACK_ENV&quot; =&gt; &quot;production&quot;)
+          Zombie.should_not be_storage_exists
+          Zombie.auto_migrate!
+          Zombie.should be_storage_exist
+          rake_task(&quot;db:recreate&quot;, &quot;MACK_ENV&quot; =&gt; &quot;production&quot;)
+          Zombie.should_not be_storage_exists
         end
         
       end</diff>
      <filename>mack-data_mapper/spec/lib/tasks/db_create_drop_tasks_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>mack-data_mapper/lib/dm_patches/confirmation_validation.rb</filename>
    </removed>
    <removed>
      <filename>mack-data_mapper/lib/dm_patches/dm-cli.rb</filename>
    </removed>
    <removed>
      <filename>mack-data_mapper/lib/dm_patches/pooling.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>4e1f5603135a852b59a3e1fbb1ae8259cdf4f40a</id>
    </parent>
  </parents>
  <author>
    <name>Mark Bates</name>
    <email>mark@markbates.com</email>
  </author>
  <url>http://github.com/markbates/mack-more/commit/08d20fb232d80b962e085007603d3f573ee7c3bd</url>
  <id>08d20fb232d80b962e085007603d3f573ee7c3bd</id>
  <committed-date>2008-07-25T08:29:56-07:00</committed-date>
  <authored-date>2008-07-25T08:29:56-07:00</authored-date>
  <message>Feature: DataMapper 0.9.3 Support [#54 state:resolved]</message>
  <tree>4b117c96598058e15501d09224d647dbc2f6124c</tree>
  <committer>
    <name>Mark Bates</name>
    <email>mark@markbates.com</email>
  </committer>
</commit>
