<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>merb.thor</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,2 +1 @@
-Autotest.add_discovery { &quot;merb&quot; }
-Autotest.add_discovery { &quot;rspec&quot; }
\ No newline at end of file
+Autotest.add_discovery { &quot;merb&quot; }
\ No newline at end of file</diff>
      <filename>autotest/discover.rb</filename>
    </modified>
    <modified>
      <diff>@@ -15,10 +15,7 @@ class Autotest::Merb &lt; Autotest
     initialize_test_layout
     
     # Ignore any happenings in these directories
-    add_exception %r%^\./(?:doc|log|public|tmp|\.git|\.hg|\.svn|framework|gems|schema|\.DS_Store|autotest|bin|.*\.sqlite3)% 
-    # Ignore SCM directories and custom Autotest mappings
-    %w[.svn .hg .git .autotest].each { |exception| add_exception(exception) }
-    
+    add_exception %r%^\./(?:doc|log|public|tmp)%
     
     # Ignore any mappings that Autotest may have already set up
     clear_mappings
@@ -39,7 +36,7 @@ class Autotest::Merb &lt; Autotest
       ]
     end
     
-    # Any change to a test will cause it to be run
+    # Any change to a test or test will cause it to be run
     add_mapping %r%^test/(unit|models|integration|controllers|views|functional)/.*rb$% do |filename, _|
       filename
     end</diff>
      <filename>autotest/merb.rb</filename>
    </modified>
    <modified>
      <diff>@@ -14,7 +14,7 @@ class Autotest::MerbRspec &lt; Autotest
     super
 
     # Ignore any happenings in these directories
-    add_exception %r%^\./(?:doc|log|public|tmp|\.git|\.hg|\.svn|framework|gems|schema|\.DS_Store|autotest|bin|.*\.sqlite3|.*\.thor)% 
+    add_exception %r%^\./(?:doc|log|public|tmp|\.git|\.hg|\.svn|framework|gems|schema|\.DS_Store|autotest|bin|.*\.sqlite3)% 
     # Ignore SCM directories and custom Autotest mappings
     %w[.svn .hg .git .autotest].each { |exception| add_exception(exception) }
 
@@ -44,7 +44,7 @@ class Autotest::MerbRspec &lt; Autotest
     # Any change to global_helpers will result in all view and controller
     # tests being run
     add_mapping %r%^app/helpers/global_helpers\.rb% do
-      files_matching %r%^spec/(views|controllers|helpers|requests)/.*_spec\.rb$%
+      files_matching %r%^spec/(views|controllers|helpers)/.*_spec\.rb$%
     end
 
     # Any change to a helper will cause its spec to be run</diff>
      <filename>autotest/merb_rspec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,8 +1,9 @@
 # Go to http://wiki.merbivore.com/pages/init-rb
  
-require 'config/dependencies.rb'
- 
-use_orm :datamapper
+# Specify a specific version of a dependency
+# dependency &quot;RedCloth&quot;, &quot;&gt; 3.0&quot;
+
+#  use_orm :none
 use_test :rspec
 use_template_engine :erb
  
@@ -11,7 +12,7 @@ Merb::Config.use do |c|
   c[:session_store] = 'cookie'  # can also be 'memory', 'memcache', 'container', 'datamapper
   
   # cookie session store configuration
-  c[:session_secret_key]  = '26a1ff33f3e5fdd059196b21747a0a358665b4a5'  # required for cookie session store
+  c[:session_secret_key]  = 'ff0bc97fd0e7d3a1e9f62389270643c91d0991ec'  # required for cookie session store
   # c[:session_id_key] = '_session_id' # cookie session id key, defaults to &quot;_session_id&quot;
 end
  
@@ -21,4 +22,4 @@ end
  
 Merb::BootLoader.after_app_loads do
   # This will get executed after your app's classes have been loaded.
-end
+end
\ No newline at end of file</diff>
      <filename>config/init.rb</filename>
    </modified>
    <modified>
      <diff>@@ -29,9 +29,6 @@ Merb.logger.info(&quot;Compiling routes...&quot;)
 Merb::Router.prepare do
   # RESTful routes
   # resources :posts
-  
-  # Adds the required routes for merb-auth using the password slice
-  slice(:merb_auth_slice_password, :name_prefix =&gt; nil, :path_prefix =&gt; &quot;&quot;)
 
   # This is the default route for /:controller/:action/:id
   # This is fine for most cases.  If you're heavily using resource-based</diff>
      <filename>config/router.rb</filename>
    </modified>
    <modified>
      <diff>@@ -28,7 +28,7 @@
       &lt;div id='footer'&gt;
         &lt;div class='wrap_to_center'&gt;
             &lt;p&gt;
-              &amp;copy; 2008, Merb Team | Merb is released under the &lt;a href=&quot;http://www.opensource.org/licenses/mit-license.php&quot;&gt;MIT License&lt;/a&gt;
+              &amp;copy; 2008, Ezra Zygmuntowicz | Merb is released under the &lt;a href=&quot;http://www.opensource.org/licenses/mit-license.php&quot;&gt;MIT License&lt;/a&gt;
             &lt;/p&gt;
         &lt;/div&gt;
       &lt;/div&gt;</diff>
      <filename>doc/rdoc/generators/template/merb/index.html.erb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>README</filename>
    </removed>
    <removed>
      <filename>app/models/user.rb</filename>
    </removed>
    <removed>
      <filename>config/database.yml</filename>
    </removed>
    <removed>
      <filename>config/dependencies.rb</filename>
    </removed>
    <removed>
      <filename>merb/merb-auth/setup.rb</filename>
    </removed>
    <removed>
      <filename>merb/merb-auth/strategies.rb</filename>
    </removed>
    <removed>
      <filename>merb/session/session.rb</filename>
    </removed>
    <removed>
      <filename>public/javascripts/jquery.js</filename>
    </removed>
    <removed>
      <filename>tasks/doc.thor</filename>
    </removed>
    <removed>
      <filename>tasks/merb.thor</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>3a71918c25ae70d7ab0a44045a88fc717522c56c</id>
    </parent>
  </parents>
  <author>
    <name>Hampton Catlin</name>
    <email>hcatlin@greed-2.local</email>
  </author>
  <url>http://github.com/hassox/wikimedia-mobile/commit/d6b07abdc9583b0da9bd10d040b16b5ae977ead7</url>
  <id>d6b07abdc9583b0da9bd10d040b16b5ae977ead7</id>
  <committed-date>2008-11-22T13:45:45-08:00</committed-date>
  <authored-date>2008-11-22T13:45:45-08:00</authored-date>
  <message>simplifying things</message>
  <tree>3439b4c0c9c42092e121d4f94f5c7f7426f3a40f</tree>
  <committer>
    <name>Hampton Catlin</name>
    <email>hcatlin@greed-2.local</email>
  </committer>
</commit>
