<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>activerecord_generators/ma_migration/ma_migration_generator.rb</filename>
    </added>
    <added>
      <filename>activerecord_generators/ma_migration/templates/schema/migrations/%time_stamp%_add_ma_user.rb</filename>
    </added>
    <added>
      <filename>datamapper_generators/ma_migration/ma_migration_generator.rb</filename>
    </added>
    <added>
      <filename>datamapper_generators/ma_migration/templates/schema/migrations/add_ma_user.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/adapters/activerecord/init.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/adapters/activerecord/map.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/adapters/activerecord/model.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/adapters/common.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/adapters/datamapper/init.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/adapters/datamapper/map.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/adapters/datamapper/model.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/adapters/map.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/controller/controller.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/controller/sessions_base.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/controller/users_base.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/initializer.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/merbtasks.rb</filename>
    </added>
    <added>
      <filename>lib/merb-auth/slicetasks.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -17,4 +17,28 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Based on the Rails plugin by Rick Olsen
+
+Licence of restful_authentication
+ 
+Copyright (c) 2005 Rick Olson
+ 
+Permission is hereby granted, free of charge, to any person obtaining a copy of 
+this software and associated documentation files (the &quot;Software&quot;), to deal in 
+the Software without restriction, including without limitation the rights to 
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 
+the Software, and to permit persons to whom the Software is furnished to do so, 
+subject to the following conditions:
+ 
+The above copyright notice and this permission notice shall be included in all 
+copies or substantial portions of the Software.
+ 
+THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+=======
\ No newline at end of file</diff>
      <filename>LICENSE</filename>
    </modified>
    <modified>
      <diff>@@ -30,7 +30,7 @@ And in your custom slice, get access to the user class with MA[:user]
 
 ===Useful Helpers
 
-The normal merb_auth helpers are available for your application, but also there is some consistent 
+The normal merb-auth helpers are available for your application, but also there is some consistent 
 helpers for other slice authors. Most notably is the controller helper
 
 :current_ma_user also aliased as :current_person, or :current_user or whatever your user class name is.
@@ -52,7 +52,7 @@ Instructions for installation:
 === Quick Install
 # config/init.rb
 dependency &quot;merb-slices&quot;
-dependency &quot;merb_auth&quot;
+dependency &quot;merb-auth&quot;
 
 # router
 r.add_slice(:MerbAuth, &quot;path/to/mount/at&quot;)
@@ -65,7 +65,7 @@ rake slices:merb_auth:install
 
 # add the slice as a regular dependency
 
-dependency 'merb_auth'
+dependency 'merb-auth'
 
 # if needed, configure which slices to load and in which order
 
@@ -85,9 +85,9 @@ If you'd like to specify MerbAuth for mounting or other routeing options given i
 
 r.add_slice(:MerbAuth)
 
-By default this will mount the slice at /merb_auth.  So your login url will be at 
+By default this will mount the slice at /merb-auth.  So your login url will be at 
 
-/merb_auth/login
+/merb-auth/login
 
 If you'd like to specify a different mount point in your application do it like this.
 
@@ -95,7 +95,7 @@ r.add_slice(:MerbAuth, 'authentcation')
 
 Your login url will now be /authentication/login, your signup url will be at /authentication/users/new
 
-Alternatively you can just mount merb_authenticaiton directly onto your application. (Recommended)
+Alternatively you can just mount merb-auth directly onto your application. (Recommended)
 
 r.slice(:MerbAuth)
 
@@ -135,7 +135,7 @@ plural_model_path)
   \:activate:  # ||= :&quot;#{single_model_name}_activation&quot;
 
   
-A named route called :login, and one called :logout is also included.
+A named route called :login, :logout and :signup are also included.
 
 
 === Including activation emails for account verification
@@ -167,13 +167,13 @@ You can override the views MerbAuth provides.  Lets face it.  They're pretty  ba
 
 To do this, you need to edit the files in the bootstrapped directories in your application.
 
-Merb.root/slices/merb_auth/app/views/
+Merb.root/slices/merb-auth/app/views/
 
 ==== Example
 
 To change the login form you'd head on over to 
 
-Merb.root/slices/merb_authenticaiton/app/views/users/new.html.(haml|erb)
+Merb.root/slices/merb-auth/app/views/users/new.html.(haml|erb)
 
 And put in your own view there.  The same is available for any of the components of merbful authentication
 
@@ -185,4 +185,11 @@ To setup merbful authentication to use your own layout use a before_app_loads bl
 
 ==== Example
 
-Merb::Slices.config[:merb_auth] = { :layout =&gt; :application }
\ No newline at end of file
+Merb::Slices.config[:merb_auth] = { :layout =&gt; :application }
+
+=== Migrations
+
+There is a migration task for merb-auth to generate your migrations.  Make sure you have use_orm selected so that
+it knows which generator to use.  Then from your host application
+
+rake slices:merb_auth:generate_migration
\ No newline at end of file</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -5,12 +5,12 @@ require 'merb-core/version'
 require 'merb-core/test/tasks/spectasks'
 require 'merb-core/tasks/merb_rake_helper'
 
-NAME = &quot;merb_auth&quot;
+NAME = &quot;merb-auth&quot;
 AUTHOR = &quot;Merb Core&quot;
 EMAIL = &quot;has.sox@gmail.com&quot;
 HOMEPAGE = &quot;http://merbivore.com/&quot;
 SUMMARY = &quot;Merb Slice that provides authentication&quot;
-GEM_VERSION = &quot;0.11.0&quot;
+GEM_VERSION = &quot;0.1.0&quot;
 
 spec = Gem::Specification.new do |s|
   s.rubyforge_project = 'merb'
@@ -28,7 +28,7 @@ spec = Gem::Specification.new do |s|
   s.add_dependency('merb-mailer', '&gt;= 0.9.4')
   s.add_dependency('merb_helpers', '&gt;= 0.9.4')
   s.require_path = 'lib'
-  s.files = %w(LICENSE README Rakefile TODO) + Dir.glob(&quot;{lib,spec,app,public,stubs}/**/*&quot;)
+  s.files = %w(LICENSE README Rakefile TODO) + Dir.glob(&quot;{lib,spec,app,public,stubs,activerecord_generators,datamapper_generators}/**/*&quot;)
 end
 
 Rake::GemPackageTask.new(spec) do |pkg|</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -12,7 +12,7 @@ describe MA::Sessions, &quot;Index action&quot; do
     DataMapper.setup(:default, 'sqlite3::memory:')
     Merb.stub!(:orm_generator_scope).and_return(&quot;datamapper&quot;)
     
-    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb_auth&quot;, &quot;adapters&quot;)
+    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb-auth&quot;, &quot;adapters&quot;)
     MA.register_adapter :datamapper, &quot;#{adapter_path}/datamapper&quot;
     MA.register_adapter :activerecord, &quot;#{adapter_path}/activerecord&quot;    
     MA.load_slice
@@ -33,75 +33,75 @@ describe MA::Sessions, &quot;Index action&quot; do
   end
   
   it &quot;should have a route to Sessions#new from '/login'&quot; do
-    request_to(&quot;/merb_auth/login&quot;) do |params|
+    request_to(&quot;/merb-auth/login&quot;) do |params|
       params[:controller].should == &quot;Sessions&quot;
       params[:action].should == &quot;create&quot;
     end   
   end
   
   it &quot;should route to Sessions#create from '/login' via post&quot; do
-    request_to(&quot;/merb_auth/login&quot;, :post) do |params|
+    request_to(&quot;/merb-auth/login&quot;, :post) do |params|
       params[:controller].should  == &quot;Sessions&quot;
       params[:action].should      == &quot;create&quot;
     end      
   end
   
   it &quot;should have a named route :login&quot; do
-    @controller.url(:login).should == &quot;/merb_auth/login&quot;
+    @controller.url(:login).should == &quot;/merb-auth/login&quot;
   end
   
   it &quot;should have route to Sessions#destroy from '/logout' via delete&quot; do
-    request_to(&quot;/merb_auth/logout&quot;, :delete) do |params|
+    request_to(&quot;/merb-auth/logout&quot;, :delete) do |params|
       params[:controller].should == &quot;Sessions&quot;
       params[:action].should    == &quot;destroy&quot;
     end   
   end
   
   it &quot;should route to Sessions#destroy from '/logout' via get&quot; do
-    request_to(&quot;/merb_auth/logout&quot;) do |params|
+    request_to(&quot;/merb-auth/logout&quot;) do |params|
       params[:controller].should == &quot;Sessions&quot; 
       params[:action].should     == &quot;destroy&quot;
     end
   end
 
   it 'logins and redirects' do
-    controller = post &quot;/merb_auth/login&quot;, :email =&gt; 'quentin@example.com', :password =&gt; 'test'
+    controller = post &quot;/merb-auth/login&quot;, :email =&gt; 'quentin@example.com', :password =&gt; 'test'
     controller.session[:user].should_not be_nil
     controller.session[:user].should == @quentin.id
     controller.should redirect_to(&quot;/&quot;)
   end
    
   it 'fails login and does not redirect' do
-    controller = post &quot;/merb_auth/login&quot;, :email =&gt; 'quentin@example.com', :password =&gt; 'bad password'
+    controller = post &quot;/merb-auth/login&quot;, :email =&gt; 'quentin@example.com', :password =&gt; 'bad password'
     controller.session[:user].should be_nil
     controller.should be_successful
   end
 
   it 'logs out' do
-    controller = get(&quot;/merb_auth/logout&quot;){|controller| controller.stub!(:current_user).and_return(@quentin) }
+    controller = get(&quot;/merb-auth/logout&quot;){|controller| controller.stub!(:current_user).and_return(@quentin) }
     controller.session[:user].should be_nil
     controller.should redirect
   end
 
   it 'remembers me' do
-    controller = post &quot;/merb_auth/login&quot;, :email =&gt; 'quentin@example.com', :password =&gt; 'test', :remember_me =&gt; &quot;1&quot;
+    controller = post &quot;/merb-auth/login&quot;, :email =&gt; 'quentin@example.com', :password =&gt; 'test', :remember_me =&gt; &quot;1&quot;
     controller.cookies[&quot;auth_token&quot;].should_not be_nil
   end
  
   it 'does not remember me' do
-    controller = post &quot;/merb_auth/login&quot;, :email =&gt; 'quentin@example.com', :password =&gt; 'test', :remember_me =&gt; &quot;0&quot;
+    controller = post &quot;/merb-auth/login&quot;, :email =&gt; 'quentin@example.com', :password =&gt; 'test', :remember_me =&gt; &quot;0&quot;
     controller.cookies[&quot;auth_token&quot;].should be_nil
   end
   
   it 'deletes token on logout' do
-    controller = get(&quot;/merb_auth/logout&quot;) {|request| request.stub!(:current_user).and_return(@quentin) }
+    controller = get(&quot;/merb-auth/logout&quot;) {|request| request.stub!(:current_user).and_return(@quentin) }
     controller.cookies[&quot;auth_token&quot;].should == nil
   end
   
   
   it 'logs in with cookie' do
     @quentin.remember_me
-    controller = get &quot;/merb_auth/login&quot; do |c|
+    controller = get &quot;/merb-auth/login&quot; do |c|
       c.request.env[Merb::Const::HTTP_COOKIE] = &quot;auth_token=#{@quentin.remember_token}&quot;
     end
     controller.should be_logged_in</diff>
      <filename>spec/controllers/sessions_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,7 @@ describe MA::Users do
     DataMapper.setup(:default, 'sqlite3::memory:')
     Merb.stub!(:orm_generator_scope).and_return(&quot;datamapper&quot;)
     
-    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb_auth&quot;, &quot;adapters&quot;)
+    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb-auth&quot;, &quot;adapters&quot;)
     MA.register_adapter :datamapper, &quot;#{adapter_path}/datamapper&quot;
     MA.register_adapter :activerecord, &quot;#{adapter_path}/activerecord&quot;    
     MA.load_slice
@@ -73,7 +73,7 @@ describe MA::Users do
    end
    
    it &quot;should have a route for user activation&quot; do
-     request_to(&quot;/merb_auth/users/activate/1234&quot;) do |params|
+     request_to(&quot;/merb-auth/users/activate/1234&quot;) do |params|
        params[:controller].should == &quot;Users&quot;
        params[:action].should == &quot;activate&quot; 
        params[:activation_code].should == &quot;1234&quot;    
@@ -84,7 +84,7 @@ describe MA::Users do
      controller = create_user(:email =&gt; &quot;aaron@example.com&quot;, :password =&gt; &quot;test&quot;, :password_confirmation =&gt; &quot;test&quot;)
      @user = controller.assigns(:user)
      User.authenticate('aaron@example.com', 'test').should be_nil
-     controller = get &quot;/merb_auth/users/activate/#{@user.activation_code}&quot; 
+     controller = get &quot;/merb-auth/users/activate/#{@user.activation_code}&quot; 
      controller.should redirect_to(&quot;/&quot;)
      User.authenticate('aaron@example.com', 'test').should_not be_nil
    end
@@ -92,6 +92,6 @@ describe MA::Users do
    
      
    def create_user(options = {})
-     post &quot;/merb_auth/users/&quot;, :user =&gt; valid_user_hash.merge(options)
+     post &quot;/merb-auth/users/&quot;, :user =&gt; valid_user_hash.merge(options)
    end
 end
\ No newline at end of file</diff>
      <filename>spec/controllers/users_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -8,7 +8,7 @@ describe MA::UserMailer do
     DataMapper.setup(:default, 'sqlite3::memory:')
     Merb.stub!(:orm_generator_scope).and_return(&quot;datamapper&quot;)
     
-    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb_auth&quot;, &quot;adapters&quot;)
+    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb-auth&quot;, &quot;adapters&quot;)
     MA.register_adapter :datamapper, &quot;#{adapter_path}/datamapper&quot;
     MA.register_adapter :activerecord, &quot;#{adapter_path}/activerecord&quot;    
     MA.loaded</diff>
      <filename>spec/mailers/user_mailer_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,12 +3,12 @@ require 'activerecord'
 require 'dm-core'
 
 # For note purposes
-# Merb::Slices.register_and_load(../../lib/merb_auth.rb)
+# Merb::Slices.register_and_load(../../lib/merb-auth.rb)
 
 describe MerbAuth do
   
   before(:all) do
-    @adapter_path = File.dirname(__FILE__) / &quot;..&quot; / &quot;lib&quot; / &quot;merb_auth&quot; / &quot;adapters&quot;
+    @adapter_path = File.dirname(__FILE__) / &quot;..&quot; / &quot;lib&quot; / &quot;merb-auth&quot; / &quot;adapters&quot;
     @ar_path = @adapter_path / &quot;activerecord&quot;
     @config = Merb::Slices::config[:merb_auth]
     DataMapper.setup(:default, 'sqlite3::memory:')
@@ -147,7 +147,7 @@ describe &quot;MerbAuth (module)&quot; do
   end
   
   it &quot;should have an :identifier property&quot; do
-    MerbAuth.identifier.should == &quot;merb_auth&quot;
+    MerbAuth.identifier.should == &quot;merb-auth&quot;
   end
   
   it &quot;should have an :identifier_sym property&quot; do
@@ -188,14 +188,14 @@ describe &quot;MerbAuth (module)&quot; do
   
   it &quot;should have a app_dir_for method&quot; do
     root_path = MerbAuth.app_dir_for(:root)
-    root_path.should == Merb.root / 'slices' / 'merb_auth'
+    root_path.should == Merb.root / 'slices' / 'merb-auth'
     app_path = MerbAuth.app_dir_for(:application)
     app_path.should == root_path / 'app'
     [:view, :model, :controller, :helper, :mailer, :part].each do |type|
       MerbAuth.app_dir_for(type).should == app_path / &quot;#{type}s&quot;
     end
     public_path = MerbAuth.app_dir_for(:public)
-    public_path.should == Merb.dir_for(:public) / 'slices' / 'merb_auth'
+    public_path.should == Merb.dir_for(:public) / 'slices' / 'merb-auth'
     [:stylesheet, :javascript, :image].each do |type|
       MerbAuth.app_dir_for(type).should == public_path / &quot;#{type}s&quot;
     end
@@ -203,7 +203,7 @@ describe &quot;MerbAuth (module)&quot; do
   
   it &quot;should have a public_dir_for method&quot; do
     public_path = MerbAuth.public_dir_for(:public)
-    public_path.should == '/slices' / 'merb_auth'
+    public_path.should == '/slices' / 'merb-auth'
     [:stylesheet, :javascript, :image].each do |type|
       MerbAuth.public_dir_for(type).should == public_path / &quot;#{type}s&quot;
     end</diff>
      <filename>spec/merb_auth_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@ describe &quot;MA ActiveRecord User Model&quot; do
     
     Merb.stub!(:orm_generator_scope).and_return(&quot;activerecord&quot;)
     
-    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb_auth&quot;, &quot;adapters&quot;)
+    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb-auth&quot;, &quot;adapters&quot;)
     MA.register_adapter :datamapper, &quot;#{adapter_path}/datamapper&quot;
     MA.register_adapter :activerecord, &quot;#{adapter_path}/activerecord&quot;    
     MA.loaded</diff>
      <filename>spec/models/ar_model_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@ describe &quot;MA User Model&quot; do
     DataMapper.setup(:default, 'sqlite3::memory:')
     Merb.stub!(:orm_generator_scope).and_return(&quot;datamapper&quot;)
     
-    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb_auth&quot;, &quot;adapters&quot;)
+    adapter_path = File.join( File.dirname(__FILE__), &quot;..&quot;, &quot;..&quot;, &quot;lib&quot;, &quot;merb-auth&quot;, &quot;adapters&quot;)
     MA.register_adapter :datamapper, &quot;#{adapter_path}/datamapper&quot;
     MA.register_adapter :activerecord, &quot;#{adapter_path}/activerecord&quot;    
     MA.loaded</diff>
      <filename>spec/models/model_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -13,13 +13,13 @@ require 'merb-mailer'
 #     Merb::Config.use do |c|
 #       c[:session_store] = &quot;memory&quot;
 #     end
-#     Merb::Slices.register_and_load(File.join(File.dirname(__FILE__), '..', 'lib', 'merb_auth.rb'))
+#     Merb::Slices.register_and_load(File.join(File.dirname(__FILE__), '..', 'lib', 'merb-auth.rb'))
 #   end
 #   
 # end
 
 Merb::Plugins.config[:merb_slices][:auto_register] = true
-Merb::Plugins.config[:merb_slices][:search_path]   = File.join(File.dirname(__FILE__), '..', 'lib', 'merb_auth.rb')
+Merb::Plugins.config[:merb_slices][:search_path]   = File.join(File.dirname(__FILE__), '..', 'lib', 'merb-auth.rb')
 
 module Merb
   def self.orm_generator_scope
@@ -84,14 +84,14 @@ Spec::Runner.configure do |config|
 end
 
 
-# GLobal helpers for merb_auth
+# GLobal helpers for merb-auth
 def reload_ma!(create_class = nil)
   Object.class_eval do
     remove_const(&quot;User&quot;) if defined?(User)
     remove_const(&quot;MA&quot;) if defined?(MA)
     remove_const(&quot;MerbAuth&quot;)
   end
-  load File.join(File.dirname(__FILE__), &quot;..&quot;, &quot;lib&quot;, &quot;merb_auth.rb&quot;)
+  load File.join(File.dirname(__FILE__), &quot;..&quot;, &quot;lib&quot;, &quot;merb-auth.rb&quot;)
   register_datamapper!
   stub_orm_scope
   yield if block_given?</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>lib/merb_auth.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/adapters/activerecord/init.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/adapters/activerecord/map.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/adapters/activerecord/model.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/adapters/common.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/adapters/datamapper/init.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/adapters/datamapper/map.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/adapters/datamapper/model.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/adapters/map.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/controller/controller.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/controller/sessions_base.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/controller/users_base.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/initializer.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/merbtasks.rb</filename>
    </removed>
    <removed>
      <filename>lib/merb_auth/slicetasks.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>8bf10b2bb182780a07df30f534d3a66601e7ac0b</id>
    </parent>
  </parents>
  <author>
    <name>Daniel Neighman</name>
    <email>has.sox@gmail.com</email>
  </author>
  <url>http://github.com/hassox/merbful_authentication/commit/5a3baae1c956c26c34170863f8c1aeac8849cd56</url>
  <id>5a3baae1c956c26c34170863f8c1aeac8849cd56</id>
  <committed-date>2008-06-11T03:10:02-07:00</committed-date>
  <authored-date>2008-06-11T03:10:02-07:00</authored-date>
  <message>Finishs the rename and adds migrations.  I think the initial port is done</message>
  <tree>3214c8432b5f5b661ba066983b9be38860d0584e</tree>
  <committer>
    <name>Daniel Neighman</name>
    <email>has.sox@gmail.com</email>
  </committer>
</commit>
