<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>LICENSE</filename>
    </added>
    <added>
      <filename>README.textile</filename>
    </added>
    <added>
      <filename>VERSION.yml</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,32 +1,22 @@
-# -*- ruby -*-
+require 'rake'
+require 'rake/testtask'
+require 'rake/rdoctask'
 
-require 'rubygems'
-require 'hoe'
-require './lib/environmentalist.rb'
-require &quot;./lib/environmentalist/version&quot;
-
-PKG_NAME      = &quot;environmentalist&quot;
-PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
-version = Environmentalist::Version::STRING.dup
-if ENV['SNAPSHOT'].to_i == 1
-  version &lt;&lt; &quot;.&quot; &lt;&lt; Time.now.utc.strftime(&quot;%Y%m%d%H%M%S&quot;)
-end
-PKG_VERSION   = version
-PKG_FILE_NAME = &quot;#{PKG_NAME}-#{PKG_VERSION}&quot;
-
-Hoe.new(PKG_NAME, PKG_VERSION) do |p|
-  p.rubyforge_name = 'johntrupiano' # if different than lowercase project name
-  p.developer('John Trupiano', 'jtrupiano@gmail.com')
-  p.name = PKG_NAME
-  p.version = PKG_VERSION
-  p.author = &quot;John Trupiano&quot;
-  p.email = &quot;jtrupiano@gmail.com&quot;
-  p.description = %q(Provides an executable that converts a rails app's config structure.  The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion.  Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ direcotory.)
-  p.summary = p.description # More details later??
-  p.remote_rdoc_dir = PKG_NAME # Release to /PKG_NAME
-  #  p.changes = p.paragraphs_of('CHANGELOG', 0..1).join(&quot;\n\n&quot;)
-  p.need_zip = true
-  p.need_tar = false
+begin
+  require 'jeweler'
+  Jeweler::Tasks.new do |s|
+    s.name = &quot;environmentalist&quot;
+    #s.rubyforge_name = 'johntrupiano' # if different than lowercase project name
+    s.description = %q(Provides an executable that converts a rails app's config structure.  The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion.  Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ directory.)
+    s.summary = s.description # More details later??
+    s.email = &quot;jtrupiano@gmail.com&quot;
+    s.homepage = &quot;http://github.com/jtrupiano/environmentalist&quot;
+    s.authors = [&quot;John Trupiano&quot;]
+    s.executables = &quot;environmentalize&quot;
+    #s.files =  FileList[&quot;[A-Z]*&quot;, &quot;{bin,generators,lib,test}/**/*&quot;, 'lib/jeweler/templates/.gitignore']
+    #s.add_dependency 'schacon-git'
+  end
+rescue LoadError
+  puts &quot;Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com&quot;
 end
 
-# vim: syntax=Ruby</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,35 +1,31 @@
+# -*- encoding: utf-8 -*-
+
 Gem::Specification.new do |s|
   s.name = %q{environmentalist}
-  s.version = &quot;0.1.0&quot;
+  s.version = &quot;0.1.1&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;John Trupiano&quot;]
-  s.date = %q{2008-09-12}
+  s.date = %q{2009-03-02}
   s.default_executable = %q{environmentalize}
-  s.description = %q{Provides an executable that converts a rails app's config structure.  The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion.  Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ direcotory.}
+  s.description = %q{Provides an executable that converts a rails app's config structure.  The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion.  Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ directory.}
   s.email = %q{jtrupiano@gmail.com}
   s.executables = [&quot;environmentalize&quot;]
-  s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.txt&quot;]
-  s.files = [&quot;History.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;bin/environmentalize&quot;, &quot;environmentalist.gemspec&quot;, &quot;lib/conf/postboot.rb&quot;, &quot;lib/environmentalist.rb&quot;, &quot;lib/environmentalist/version.rb&quot;, &quot;test/rails210/README&quot;, &quot;test/rails210/Rakefile&quot;, &quot;test/rails210/app/controllers/application.rb&quot;, &quot;test/rails210/app/helpers/application_helper.rb&quot;, &quot;test/rails210/config/boot.rb&quot;, &quot;test/rails210/config/database.yml&quot;, &quot;test/rails210/config/environment.rb&quot;, &quot;test/rails210/config/environments/development.rb&quot;, &quot;test/rails210/config/environments/production.rb&quot;, &quot;test/rails210/config/environments/test.rb&quot;, &quot;test/rails210/config/initializers/inflections.rb&quot;, &quot;test/rails210/config/initializers/mime_types.rb&quot;, &quot;test/rails210/config/initializers/new_rails_defaults.rb&quot;, &quot;test/rails210/config/routes.rb&quot;, &quot;test/rails210/doc/README_FOR_APP&quot;, &quot;test/rails210/log/development.log&quot;, &quot;test/rails210/log/production.log&quot;, &quot;test/rails210/log/server.log&quot;, &quot;test/rails210/log/test.log&quot;, &quot;test/rails210/public/404.html&quot;, &quot;test/rails210/public/422.html&quot;, &quot;test/rails210/public/500.html&quot;, &quot;test/rails210/public/dispatch.cgi&quot;, &quot;test/rails210/public/dispatch.fcgi&quot;, &quot;test/rails210/public/dispatch.rb&quot;, &quot;test/rails210/public/favicon.ico&quot;, &quot;test/rails210/public/images/rails.png&quot;, &quot;test/rails210/public/index.html&quot;, &quot;test/rails210/public/javascripts/application.js&quot;, &quot;test/rails210/public/javascripts/controls.js&quot;, &quot;test/rails210/public/javascripts/dragdrop.js&quot;, &quot;test/rails210/public/javascripts/effects.js&quot;, &quot;test/rails210/public/javascripts/prototype.js&quot;, &quot;test/rails210/public/robots.txt&quot;, &quot;test/rails210/script/about&quot;, &quot;test/rails210/script/console&quot;, &quot;test/rails210/script/dbconsole&quot;, &quot;test/rails210/script/destroy&quot;, &quot;test/rails210/script/generate&quot;, &quot;test/rails210/script/performance/benchmarker&quot;, &quot;test/rails210/script/performance/profiler&quot;, &quot;test/rails210/script/performance/request&quot;, &quot;test/rails210/script/plugin&quot;, &quot;test/rails210/script/process/inspector&quot;, &quot;test/rails210/script/process/reaper&quot;, &quot;test/rails210/script/process/spawner&quot;, &quot;test/rails210/script/runner&quot;, &quot;test/rails210/script/server&quot;, &quot;test/rails_version_test.rb&quot;, &quot;test/rails210/test/test_helper.rb&quot;, &quot;test/rails210test/test/test_helper.rb&quot;]
+  s.files = [&quot;bin/environmentalize&quot;]
   s.has_rdoc = true
-  s.homepage = %q{http://github.com/jtrupiano/environmentalist/tree/master}
-  s.rdoc_options = [&quot;--main&quot;, &quot;README.txt&quot;]
+  s.homepage = %q{http://github.com/jtrupiano/environmentalist}
+  s.rdoc_options = [&quot;--inline-source&quot;, &quot;--charset=UTF-8&quot;]
   s.require_paths = [&quot;lib&quot;]
-  s.rubyforge_project = %q{johntrupiano}
-  s.rubygems_version = %q{1.2.0}
-  s.summary = %q{Provides an executable that converts a rails app's config structure.  The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion.  Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ direcotory.}
-  s.test_files = [&quot;test/rails_version_test.rb&quot;]
+  s.rubygems_version = %q{1.3.1}
+  s.summary = %q{Provides an executable that converts a rails app's config structure.  The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion.  Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ directory.}
 
   if s.respond_to? :specification_version then
     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
     s.specification_version = 2
 
-    if current_version &gt;= 3 then
-      s.add_development_dependency(%q&lt;hoe&gt;, [&quot;&gt;= 1.7.0&quot;])
+    if Gem::Version.new(Gem::RubyGemsVersion) &gt;= Gem::Version.new('1.2.0') then
     else
-      s.add_dependency(%q&lt;hoe&gt;, [&quot;&gt;= 1.7.0&quot;])
     end
   else
-    s.add_dependency(%q&lt;hoe&gt;, [&quot;&gt;= 1.7.0&quot;])
   end
 end</diff>
      <filename>environmentalist.gemspec</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>README.txt</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>ec54127520716c5c5eb6cc126793040cc6c6ded4</id>
    </parent>
  </parents>
  <author>
    <name>John Trupiano</name>
    <email>jtrupiano@gmail.com</email>
  </author>
  <url>http://github.com/jtrupiano/environmentalist/commit/14f26ff0dad680770e53a17a2bfcee95aa2b400f</url>
  <id>14f26ff0dad680770e53a17a2bfcee95aa2b400f</id>
  <committed-date>2009-03-02T14:40:45-08:00</committed-date>
  <authored-date>2009-03-02T14:40:45-08:00</authored-date>
  <message>Moved to jeweler.  Version bump to 0.1.1</message>
  <tree>ba74c01cec042925b18feda7980a20a67ce54b6b</tree>
  <committer>
    <name>John Trupiano</name>
    <email>jtrupiano@gmail.com</email>
  </committer>
</commit>
