<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>README_FOR_APP</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -25,7 +25,7 @@ if Object.const_defined?(:Gem)
 
     # Change these as appropriate
     s.name              = &quot;vanilla&quot;
-    s.version           = &quot;1.9.10&quot;
+    s.version           = &quot;1.9.11&quot;
     s.summary           = &quot;A bliki-type web content thing.&quot;
     s.author            = &quot;James Adam&quot;
     s.email             = &quot;james@lazyatom.com.com&quot;
@@ -36,7 +36,7 @@ if Object.const_defined?(:Gem)
     s.rdoc_options      = %w(--main README)
 
     # Add any extra files to include in the gem
-    s.files             = %w(config.example.yml config.ru Rakefile README) + Dir.glob(&quot;{spec,lib,bin,public}/**/*&quot;)
+    s.files             = %w(config.example.yml config.ru Rakefile README README_FOR_APP) + Dir.glob(&quot;{spec,lib,bin,public}/**/*&quot;)
     s.executables       = ['vanilla']
     s.require_paths     = [&quot;lib&quot;]
 </diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,3 @@
 --- 
-:filename: config.example.yml
 :soup: soup
 :secret: a6bc097eff86cabd92ee72ba4687c3f057b7556deaa3e4a6b284460871056b87ba3e91548c37dcc44fbc10241cee5b386556e6bcc2946fd9b609dc3bc1b24488
-:credentials: 
-  admin: 5f4dcc3b5aa765d61d8327deb882cf99</diff>
      <filename>config.example.yml</filename>
    </modified>
    <modified>
      <diff>@@ -14,13 +14,12 @@ namespace :vanilla do
 
   task :load_snips do
     app = Vanilla::App.new(ENV['VANILLA_CONFIG'])
+    print &quot;Preparing soup... &quot;
     Dynasnip.all.each { |ds| app.soup &lt;&lt; ds.snip_attributes }
-  
     Dir[File.join(File.dirname(__FILE__), '..', 'vanilla', 'snips', '*.rb')].each do |f|
       load f
-    end  
-  
-    puts &quot;The soup is simmering.&quot;
+    end
+    puts &quot;the soup is simmering.&quot;
   end
 
   desc 'Resets the soup to contain the base snips only. Dangerous!'
@@ -88,6 +87,7 @@ namespace :vanilla do
 
   desc 'Generate file containing secret for cookie-based session storage'
   task :generate_secret do
+    print &quot;Generating cookie secret... &quot;
     # Adapted from old rails secret generator.
     require 'openssl'
     if !File.exist?(&quot;/dev/urandom&quot;)
@@ -104,12 +104,14 @@ namespace :vanilla do
     app = Vanilla::App.new(ENV['VANILLA_CONFIG'])
     app.config[:secret] = secret
     app.config.save!
-    puts &quot;Secret generated.&quot;
+    puts &quot;done; cookies are twice baked. BIS-CUIT!&quot;
   end
 
   desc 'Prepare standard files to run Vanilla'
   task :prepare_files do
     cp File.expand_path(File.join(File.dirname(__FILE__), *%w[.. .. config.ru])), 'config.ru'
+    cp File.expand_path(File.join(File.dirname(__FILE__), *%w[.. .. config.example.yml])), 'config.yml'
+    cp File.expand_path(File.join(File.dirname(__FILE__), *%w[.. .. README_FOR_APP])), 'README'
     cp_r File.expand_path(File.join(File.dirname(__FILE__), *%w[.. .. public])), 'public'
     mkdir 'tmp'
     File.open(&quot;Rakefile&quot;, &quot;w&quot;) do |f|
@@ -127,47 +129,21 @@ EOF
   desc 'Prepare a new vanilla.rb installation'
   task :setup do
     puts &lt;&lt;-EOM
+____________________.c( Vanilla.rb )o._____________________
 
-  ===================~ Vanilla.rb ~====================
-
-  Congratulations! You have elected to try out the weirdest web thing ever.
-  Lets get started. Firstly, I'm going to cook you some soup:
-
-
-  EOM
-    Rake::Task['vanilla:load_snips'].invoke
-  
-    puts &lt;&lt;-EOM
-  
-  Now I'm going to generate your configuration. This will be stored either in
-  'config.yml' in the current directory, or in the path you provide via the
-  environment variable VANILLA_CONFIG.  
-
-  Generating the secret for cookie-based session storage.
-  EOM
-    Rake::Task['vanilla:prepare_files'].invoke
-    Rake::Task['vanilla:generate_secret'].invoke
-  
-    puts &lt;&lt;-EOM
-
-
-  Now that we've got our broth, you'll want to add a user, so you can edit stuff.
-  Lets do that now:
+Congratulations! You have elected to try out the weirdest web 
+thing ever. Lets get started.
 
+EOM
+  Rake::Task['vanilla:prepare_files'].invoke
+  Rake::Task['vanilla:generate_secret'].invoke
+  Rake::Task['vanilla:load_snips'].invoke
 
-  EOM
-    Rake::Task['vanilla:add_user'].invoke
-    puts &lt;&lt;-EOM
-
+  puts &lt;&lt;-EOM
 
-  OK! You're ready to go. To start vanilla.rb, you'll want to get it running under
-  a webserver that supports Rack. The easiest way to do this locally is via 'rackup':
-  
-    $ rackup
-  
-  Then go to http://localhost:9292
+___________________.c( You Are Ready )o.___________________
 
-  I'm going now, Goodbye!
+#{File.readlines('README')[0,16].join}
   EOM
   end
-end
\ No newline at end of file
+end</diff>
      <filename>lib/tasks/vanilla.rake</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 Gem::Specification.new do |s|
   s.name = %q{vanilla}
-  s.version = &quot;1.9.10&quot;
+  s.version = &quot;1.9.11&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;James Adam&quot;]
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
   s.email = %q{james@lazyatom.com.com}
   s.executables = [&quot;vanilla&quot;]
   s.extra_rdoc_files = [&quot;README&quot;]
-  s.files = [&quot;config.example.yml&quot;, &quot;config.ru&quot;, &quot;Rakefile&quot;, &quot;README&quot;, &quot;spec/dynasnip_spec.rb&quot;, &quot;spec/renderers&quot;, &quot;spec/renderers/base_renderer_spec.rb&quot;, &quot;spec/renderers/erb_renderer_spec.rb&quot;, &quot;spec/renderers/markdown_renderer_spec.rb&quot;, &quot;spec/renderers/raw_renderer_spec.rb&quot;, &quot;spec/renderers/ruby_renderer_spec.rb&quot;, &quot;spec/renderers/vanilla_app_detecting_renderer_spec.rb&quot;, &quot;spec/spec_helper.rb&quot;, &quot;spec/tmp&quot;, &quot;spec/tmp/config.yml&quot;, &quot;spec/tmp/soup&quot;, &quot;spec/tmp/soup/current_snip.yml&quot;, &quot;spec/tmp/soup/system.yml&quot;, &quot;spec/vanilla_app_spec.rb&quot;, &quot;spec/vanilla_presenting_spec.rb&quot;, &quot;spec/vanilla_request_spec.rb&quot;, &quot;lib/defensio.rb&quot;, &quot;lib/tasks&quot;, &quot;lib/tasks/vanilla.rake&quot;, &quot;lib/vanilla&quot;, &quot;lib/vanilla/app.rb&quot;, &quot;lib/vanilla/console.rb&quot;, &quot;lib/vanilla/dynasnip.rb&quot;, &quot;lib/vanilla/dynasnips&quot;, &quot;lib/vanilla/dynasnips/comments.rb&quot;, &quot;lib/vanilla/dynasnips/current_snip.rb&quot;, &quot;lib/vanilla/dynasnips/debug.rb&quot;, &quot;lib/vanilla/dynasnips/edit.rb&quot;, &quot;lib/vanilla/dynasnips/edit_link.rb&quot;, &quot;lib/vanilla/dynasnips/index.rb&quot;, &quot;lib/vanilla/dynasnips/kind.rb&quot;, &quot;lib/vanilla/dynasnips/link_to.rb&quot;, &quot;lib/vanilla/dynasnips/link_to_current_snip.rb&quot;, &quot;lib/vanilla/dynasnips/login.rb&quot;, &quot;lib/vanilla/dynasnips/new.rb&quot;, &quot;lib/vanilla/dynasnips/notes.rb&quot;, &quot;lib/vanilla/dynasnips/pre.rb&quot;, &quot;lib/vanilla/dynasnips/rand.rb&quot;, &quot;lib/vanilla/dynasnips/raw.rb&quot;, &quot;lib/vanilla/dynasnips/url_to.rb&quot;, &quot;lib/vanilla/renderers&quot;, &quot;lib/vanilla/renderers/base.rb&quot;, &quot;lib/vanilla/renderers/bold.rb&quot;, &quot;lib/vanilla/renderers/erb.rb&quot;, &quot;lib/vanilla/renderers/markdown.rb&quot;, &quot;lib/vanilla/renderers/raw.rb&quot;, &quot;lib/vanilla/renderers/ruby.rb&quot;, &quot;lib/vanilla/renderers/textile.rb&quot;, &quot;lib/vanilla/request.rb&quot;, &quot;lib/vanilla/routes.rb&quot;, &quot;lib/vanilla/snip_reference.rb&quot;, &quot;lib/vanilla/snip_reference.treetop&quot;, &quot;lib/vanilla/snip_reference_parser.rb&quot;, &quot;lib/vanilla/snips&quot;, &quot;lib/vanilla/snips/start.rb&quot;, &quot;lib/vanilla/snips/system.rb&quot;, &quot;lib/vanilla/snips/tutorial.rb&quot;, &quot;lib/vanilla/soup_with_timestamps.rb&quot;, &quot;lib/vanilla.rb&quot;, &quot;bin/vanilla&quot;, &quot;public/hatch.png&quot;, &quot;public/javascripts&quot;, &quot;public/javascripts/jquery.autogrow-textarea.js&quot;, &quot;public/javascripts/jquery.js&quot;, &quot;public/javascripts/vanilla.js&quot;]
+  s.files = [&quot;config.example.yml&quot;, &quot;config.ru&quot;, &quot;Rakefile&quot;, &quot;README&quot;, &quot;README_FOR_APP&quot;, &quot;spec/dynasnip_spec.rb&quot;, &quot;spec/renderers&quot;, &quot;spec/renderers/base_renderer_spec.rb&quot;, &quot;spec/renderers/erb_renderer_spec.rb&quot;, &quot;spec/renderers/markdown_renderer_spec.rb&quot;, &quot;spec/renderers/raw_renderer_spec.rb&quot;, &quot;spec/renderers/ruby_renderer_spec.rb&quot;, &quot;spec/renderers/vanilla_app_detecting_renderer_spec.rb&quot;, &quot;spec/spec_helper.rb&quot;, &quot;spec/tmp&quot;, &quot;spec/tmp/config.yml&quot;, &quot;spec/tmp/soup&quot;, &quot;spec/tmp/soup/current_snip.yml&quot;, &quot;spec/tmp/soup/system.yml&quot;, &quot;spec/vanilla_app_spec.rb&quot;, &quot;spec/vanilla_presenting_spec.rb&quot;, &quot;spec/vanilla_request_spec.rb&quot;, &quot;lib/defensio.rb&quot;, &quot;lib/tasks&quot;, &quot;lib/tasks/vanilla.rake&quot;, &quot;lib/vanilla&quot;, &quot;lib/vanilla/app.rb&quot;, &quot;lib/vanilla/console.rb&quot;, &quot;lib/vanilla/dynasnip.rb&quot;, &quot;lib/vanilla/dynasnips&quot;, &quot;lib/vanilla/dynasnips/comments.rb&quot;, &quot;lib/vanilla/dynasnips/current_snip.rb&quot;, &quot;lib/vanilla/dynasnips/debug.rb&quot;, &quot;lib/vanilla/dynasnips/edit.rb&quot;, &quot;lib/vanilla/dynasnips/edit_link.rb&quot;, &quot;lib/vanilla/dynasnips/index.rb&quot;, &quot;lib/vanilla/dynasnips/kind.rb&quot;, &quot;lib/vanilla/dynasnips/link_to.rb&quot;, &quot;lib/vanilla/dynasnips/link_to_current_snip.rb&quot;, &quot;lib/vanilla/dynasnips/login.rb&quot;, &quot;lib/vanilla/dynasnips/new.rb&quot;, &quot;lib/vanilla/dynasnips/notes.rb&quot;, &quot;lib/vanilla/dynasnips/pre.rb&quot;, &quot;lib/vanilla/dynasnips/rand.rb&quot;, &quot;lib/vanilla/dynasnips/raw.rb&quot;, &quot;lib/vanilla/dynasnips/url_to.rb&quot;, &quot;lib/vanilla/renderers&quot;, &quot;lib/vanilla/renderers/base.rb&quot;, &quot;lib/vanilla/renderers/bold.rb&quot;, &quot;lib/vanilla/renderers/erb.rb&quot;, &quot;lib/vanilla/renderers/markdown.rb&quot;, &quot;lib/vanilla/renderers/raw.rb&quot;, &quot;lib/vanilla/renderers/ruby.rb&quot;, &quot;lib/vanilla/renderers/textile.rb&quot;, &quot;lib/vanilla/request.rb&quot;, &quot;lib/vanilla/routes.rb&quot;, &quot;lib/vanilla/snip_reference.rb&quot;, &quot;lib/vanilla/snip_reference.treetop&quot;, &quot;lib/vanilla/snip_reference_parser.rb&quot;, &quot;lib/vanilla/snips&quot;, &quot;lib/vanilla/snips/start.rb&quot;, &quot;lib/vanilla/snips/system.rb&quot;, &quot;lib/vanilla/snips/tutorial.rb&quot;, &quot;lib/vanilla/soup_with_timestamps.rb&quot;, &quot;lib/vanilla.rb&quot;, &quot;bin/vanilla&quot;, &quot;public/hatch.png&quot;, &quot;public/javascripts&quot;, &quot;public/javascripts/jquery.autogrow-textarea.js&quot;, &quot;public/javascripts/jquery.js&quot;, &quot;public/javascripts/vanilla.js&quot;]
   s.homepage = %q{http://github.com/lazyatom/vanilla-rb}
   s.rdoc_options = [&quot;--main&quot;, &quot;README&quot;]
   s.require_paths = [&quot;lib&quot;]</diff>
      <filename>vanilla.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>cb325fc91022611bf5fa304d49dccd6ba0547a4e</id>
    </parent>
  </parents>
  <author>
    <name>James Adam</name>
    <email>james@lazyatom.com</email>
  </author>
  <url>http://github.com/lazyatom/vanilla-rb/commit/ca1299db94c7703da75079f32308a93926a0adaa</url>
  <id>ca1299db94c7703da75079f32308a93926a0adaa</id>
  <committed-date>2009-10-13T05:02:06-07:00</committed-date>
  <authored-date>2009-10-13T05:02:06-07:00</authored-date>
  <message>Prepared more documentation for generating a new vanilla app.</message>
  <tree>210d2ed24554b7d49c6aa20d3f0223df80ae937a</tree>
  <committer>
    <name>James Adam</name>
    <email>james@lazyatom.com</email>
  </committer>
</commit>
