<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/controllers/application_controller.rb</filename>
    </added>
    <added>
      <filename>app/helpers/application_helper.rb</filename>
    </added>
    <added>
      <filename>app/views/layouts/application.html.haml</filename>
    </added>
    <added>
      <filename>config/deploy.rb</filename>
    </added>
    <added>
      <filename>config/gems.yml</filename>
    </added>
    <added>
      <filename>config/restful_auth_routes.rb</filename>
    </added>
    <added>
      <filename>config/site.yml</filename>
    </added>
    <added>
      <filename>lib/site_config.rb</filename>
    </added>
    <added>
      <filename>lib/tasks/cruise.rake</filename>
    </added>
    <added>
      <filename>lib/tasks/strappy.rake</filename>
    </added>
    <added>
      <filename>public/stylesheets/sass/main.sass</filename>
    </added>
    <added>
      <filename>public/stylesheets/sass/reset.sass</filename>
    </added>
    <added>
      <filename>spec/rcov.opts</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -24,13 +24,13 @@ run 'echo N\n | haml --rails .'
 run 'mkdir -p public/stylesheets/sass'
 %w( main reset ).each do |file|
   file &quot;public/stylesheets/sass/#{file}.sass&quot;,
-    open(&quot;#{SOURCE}/#{file}.sass&quot;).read
+    open(&quot;#{SOURCE}/public/stylesheets/sass/#{file}.sass&quot;).read
 end
 git :add =&gt; &quot;.&quot;
 git :commit =&gt; &quot;-a -m 'Added Haml and Sass stylesheets'&quot;
 
 # GemTools
-file 'config/gems.yml', open(&quot;#{SOURCE}/gems.yml&quot;).read
+file 'config/gems.yml', open(&quot;#{SOURCE}/config/gems.yml&quot;).read
 run 'sudo gem install gem_tools --no-rdoc --no-ri'
 run 'sudo gemtools install'
 initializer 'gem_tools.rb', &quot;require 'gem_tools'\nGemTools.load_gems&quot;
@@ -45,33 +45,33 @@ git :commit =&gt; &quot;-a -m 'Added GemTools config'&quot;
 
 # Application Layout
 file 'app/views/layouts/application.html.haml',
-  open(&quot;#{SOURCE}/application.html.haml&quot;).read
+  open(&quot;#{SOURCE}/app/views/layouts/application.html.haml&quot;).read
 git :add =&gt; &quot;.&quot;
 git :commit =&gt; &quot;-a -m 'Added Layout'&quot;
 
 # install strappy rake tasks
-rakefile 'strappy.rake', open(&quot;#{SOURCE}/strappy.rake&quot;).read
+rakefile 'strappy.rake', open(&quot;#{SOURCE}/lib/tasks/strappy.rake&quot;).read
 
 # RSpec
 generate 'rspec'
-file 'spec/rcov.opts', open(&quot;#{SOURCE}/rcov.opts&quot;).read
+file 'spec/rcov.opts', open(&quot;#{SOURCE}/spec/rcov.opts&quot;).read
 git :add =&gt; &quot;.&quot;
 git :commit =&gt; &quot;-a -m 'Added RSpec'&quot;
 
 # SiteConfig
-file 'config/site.yml', open(&quot;#{SOURCE}/site.yml&quot;).read
-lib 'site_config.rb', open(&quot;#{SOURCE}/site_config.rb&quot;).read
+file 'config/site.yml', open(&quot;#{SOURCE}/config/site.yml&quot;).read
+lib 'site_config.rb', open(&quot;#{SOURCE}/lib/site_config.rb&quot;).read
 git :add =&gt; &quot;.&quot;
 git :commit =&gt; &quot;-a -m 'Added SiteConfig'&quot;
 
 # CC.rb
-rakefile('cruise.rake') { open(&quot;#{SOURCE}/cruise.rake&quot;).read }
+rakefile('cruise.rake') { open(&quot;#{SOURCE}/lib/tasks/cruise.rake&quot;).read }
 git :add =&gt; &quot;.&quot;
 git :commit =&gt; &quot;-a -m 'Added cruise rake task'&quot;
 
 # Capistrano
 capify!
-file 'config/deploy.rb', open(&quot;#{SOURCE}/deploy.rb&quot;).read
+file 'config/deploy.rb', open(&quot;#{SOURCE}/config/deploy.rb&quot;).read
 
 %w( production staging ).each do |env|
   file &quot;config/deploy/#{env}.rb&quot;, &quot;set :rails_env, \&quot;#{env}\&quot;&quot;
@@ -117,7 +117,7 @@ inside('app/views/sessions/') do
 end
 
 # add routes
-route open(&quot;#{SOURCE}/restful_auth_routes.rb&quot;).read
+route open(&quot;#{SOURCE}/config/restful_auth_routes.rb&quot;).read
 
 rake('db:migrate')
 git :add =&gt; &quot;.&quot;
@@ -174,13 +174,13 @@ git :commit =&gt; &quot;-a -m 'Added Blackbird'&quot;
 
 # Add ApplicationHelper
 file 'app/helpers/application_helper.rb',
-  open(&quot;#{SOURCE}/application_helper.rb&quot;).read
+  open(&quot;#{SOURCE}/app/helpers/application_helper.rb&quot;).read
 git :add =&gt; &quot;.&quot;
 git :commit =&gt; &quot;-a -m 'Added ApplicationHelper'&quot;
 
 # Add ApplicationController
 file 'app/controllers/application_controller.rb',
-  open(&quot;#{SOURCE}/application_controller.rb&quot;).read
+  open(&quot;#{SOURCE}/app/controllers/application_controller.rb&quot;).read
 git :add =&gt; &quot;.&quot;
 git :commit =&gt; &quot;-a -m 'Added ApplicationController'&quot;
 </diff>
      <filename>base.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>application.html.haml</filename>
    </removed>
    <removed>
      <filename>application_controller.rb</filename>
    </removed>
    <removed>
      <filename>application_helper.rb</filename>
    </removed>
    <removed>
      <filename>cruise.rake</filename>
    </removed>
    <removed>
      <filename>deploy.rb</filename>
    </removed>
    <removed>
      <filename>gems.yml</filename>
    </removed>
    <removed>
      <filename>main.sass</filename>
    </removed>
    <removed>
      <filename>rcov.opts</filename>
    </removed>
    <removed>
      <filename>reset.sass</filename>
    </removed>
    <removed>
      <filename>restful_auth_routes.rb</filename>
    </removed>
    <removed>
      <filename>site.yml</filename>
    </removed>
    <removed>
      <filename>site_config.rb</filename>
    </removed>
    <removed>
      <filename>strappy.rake</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>b49c192ddfe0df39f4621b985e19fbd155bb7973</id>
    </parent>
  </parents>
  <author>
    <name>Michael Moen</name>
    <email>michael@underpantsgnome.com</email>
  </author>
  <url>http://github.com/pixels-and-bits/strappy/commit/f272dd67d39134a048c7ca543ac69a56aeef9700</url>
  <id>f272dd67d39134a048c7ca543ac69a56aeef9700</id>
  <committed-date>2009-02-08T10:35:49-08:00</committed-date>
  <authored-date>2009-02-08T10:35:49-08:00</authored-date>
  <message>moved files into a rails structure, makes it a little cleaner and maybe easier for people to see what's what</message>
  <tree>da1ff7e55e2abe117740fc128f6991ac5791d9a2</tree>
  <committer>
    <name>Michael Moen</name>
    <email>michael@underpantsgnome.com</email>
  </committer>
</commit>
