<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1 +1,4 @@
-/pkg
+/doc
+*.gem
+sample
+</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,12 @@
-# Hanna -- a better RDoc template
+# Hanna &#8212; a better RDoc template
 
 Hanna is an RDoc template that scales. It's implemented in Haml, making the sources clean
 and readable. It's built with simplicity, beauty and ease of browsing in mind. (See more
 in [the wiki][wiki].)
 
-Hanna gem is available from [GitHub][]:
+Hanna gem is available from [Gemcutter][]:
 
-    gem install mislav-hanna
+    gem install hanna
 
 The template was created by [Mislav][] and since then has seen contributions from:
 
@@ -97,6 +97,6 @@ This is git. Fork it, hack away, tell me about it!
 
 
 [wiki]: http://github.com/mislav/hanna/wikis/home &quot;Hanna wiki&quot;
-[GitHub]: http://gems.github.com/ &quot;GitHub gem server&quot;
+[gemcutter]: http://gemcutter.org/ &quot;Gemcutter gem server&quot;
 [wp]: http://github.com/mislav/will_paginate/tree/master/Rakefile
 [Mislav]: http://mislav.caboo.se/ &quot;Mislav Marohni&#263;&quot;</diff>
      <filename>README.markdown</filename>
    </modified>
    <modified>
      <diff>@@ -1,34 +1,4 @@
-desc &quot;generates .gemspec file&quot;
-task :gemspec do
-  require 'lib/hanna/version'
-  
-  spec = Gem::Specification.new do |gem|
-    gem.name = 'hanna'
-    gem.version = Hanna::VERSION
-    
-    gem.summary = &quot;An RDoc template that scales&quot;
-    gem.description = &quot;Hanna is an RDoc implemented in Haml, making its source clean and maintainable. It's built with simplicity, beauty and ease of browsing in mind.&quot;
-    
-    gem.add_dependency 'rdoc', Hanna::RDOC_VERSION_REQUIREMENT
-    gem.add_dependency 'haml', '~&gt; 2.0.4'
-    gem.add_dependency 'rake', '~&gt; 0.8.2'
-    
-    gem.email = 'mislav.marohnic@gmail.com'
-    gem.homepage = 'http://github.com/mislav/' + gem.name
-    gem.authors = ['Mislav Marohni&#263;']
-    gem.has_rdoc = false
-    
-    gem.files = FileList['Rakefile', '{bin,lib,rails,spec}/**/*', 'README*', 'LICENSE*'] &amp; `git ls-files`.split(&quot;\n&quot;)
-    gem.executables = Dir['bin/*'].map { |f| File.basename(f) }
-  end
-  
-  spec_string = spec.to_ruby
-  
-  begin
-    Thread.new { eval(&quot;$SAFE = 3\n#{spec_string}&quot;, binding) }.join 
-  rescue
-    abort &quot;unsafe gemspec: #{$!}&quot;
-  else
-    File.open(&quot;#{spec.name}.gemspec&quot;, 'w') { |file| file.write spec_string }
-  end
+desc &quot;builds the gem&quot;
+task :gem do
+  system %(gem build hanna.gemspec)
 end</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,38 +1,23 @@
-# -*- encoding: utf-8 -*-
+require 'lib/hanna/version'
 
-Gem::Specification.new do |s|
-  s.name = %q{hanna}
-  s.version = &quot;0.1.11&quot;
-
-  s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
-  s.authors = [&quot;Mislav Marohni\304\207&quot;]
-  s.date = %q{2009-09-21}
-  s.default_executable = %q{hanna}
-  s.description = %q{Hanna is an RDoc implemented in Haml, making its source clean and maintainable. It's built with simplicity, beauty and ease of browsing in mind.}
-  s.email = %q{mislav.marohnic@gmail.com}
-  s.executables = [&quot;hanna&quot;]
-  s.files = [&quot;Rakefile&quot;, &quot;bin/hanna&quot;, &quot;lib/hanna/hanna.rb&quot;, &quot;lib/hanna/rdoctask.rb&quot;, &quot;lib/hanna/template_files/class_index.haml&quot;, &quot;lib/hanna/template_files/file_index.haml&quot;, &quot;lib/hanna/template_files/index.haml&quot;, &quot;lib/hanna/template_files/layout.haml&quot;, &quot;lib/hanna/template_files/method_index.haml&quot;, &quot;lib/hanna/template_files/method_list.haml&quot;, &quot;lib/hanna/template_files/method_search.js&quot;, &quot;lib/hanna/template_files/page.haml&quot;, &quot;lib/hanna/template_files/prototype-1.6.0.3.js&quot;, &quot;lib/hanna/template_files/sections.haml&quot;, &quot;lib/hanna/template_files/styles.sass&quot;, &quot;lib/hanna/template_helpers.rb&quot;, &quot;lib/hanna/template_page_patch.rb&quot;, &quot;lib/hanna/version.rb&quot;, &quot;lib/hanna.rb&quot;, &quot;lib/rubygems_plugin.rb&quot;, &quot;README.markdown&quot;]
-  s.homepage = %q{http://github.com/mislav/hanna}
-  s.require_paths = [&quot;lib&quot;]
-  s.rubygems_version = %q{1.3.5}
-  s.summary = %q{An RDoc template that scales}
-
-  if s.respond_to? :specification_version then
-    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
-    s.specification_version = 3
-
-    if Gem::Version.new(Gem::RubyGemsVersion) &gt;= Gem::Version.new('1.2.0') then
-      s.add_runtime_dependency(%q&lt;rdoc&gt;, [&quot;~&gt; 2.3.0&quot;])
-      s.add_runtime_dependency(%q&lt;haml&gt;, [&quot;~&gt; 2.0.4&quot;])
-      s.add_runtime_dependency(%q&lt;rake&gt;, [&quot;~&gt; 0.8.2&quot;])
-    else
-      s.add_dependency(%q&lt;rdoc&gt;, [&quot;~&gt; 2.3.0&quot;])
-      s.add_dependency(%q&lt;haml&gt;, [&quot;~&gt; 2.0.4&quot;])
-      s.add_dependency(%q&lt;rake&gt;, [&quot;~&gt; 0.8.2&quot;])
-    end
-  else
-    s.add_dependency(%q&lt;rdoc&gt;, [&quot;~&gt; 2.3.0&quot;])
-    s.add_dependency(%q&lt;haml&gt;, [&quot;~&gt; 2.0.4&quot;])
-    s.add_dependency(%q&lt;rake&gt;, [&quot;~&gt; 0.8.2&quot;])
-  end
-end
+Gem::Specification.new do |gem|
+  gem.name = 'hanna'
+  gem.version = Hanna::VERSION
+  
+  gem.summary = &quot;An RDoc template that scales&quot;
+  gem.description = &quot;Hanna is an RDoc implemented in Haml, making its source clean and maintainable. It's built with simplicity, beauty and ease of browsing in mind.&quot;
+  
+  gem.files = Dir['Rakefile', '{bin,lib,rails,spec}/**/*', 'README*', 'LICENSE*'] &amp; `git ls-files`.split(&quot;\n&quot;)
+  gem.executables = Dir['bin/*'].map { |f| File.basename(f) }
+  
+  gem.add_dependency 'rdoc', Hanna::RDOC_VERSION_REQUIREMENT
+  gem.add_dependency 'haml', '~&gt; 2.2.8'
+  gem.add_dependency 'rake', '~&gt; 0.8.2'
+  
+  gem.email = 'mislav.marohnic@gmail.com'
+  gem.homepage = 'http://github.com/mislav/' + gem.name
+  gem.authors = ['Mislav Marohni&#263;']
+  
+  gem.has_rdoc = false
+  gem.rubyforge_project = nil
+end
\ No newline at end of file</diff>
      <filename>hanna.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 module Hanna
 
-  VERSION = '0.1.11'
+  VERSION = '0.1.12'
 
   # The version of RDoc that Hanna should use
   RDOC_VERSION = '2.3.0'</diff>
      <filename>lib/hanna/version.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7b64fcb818cf74325ef30f90fab3c2677d0eb038</id>
    </parent>
  </parents>
  <author>
    <name>Mislav Marohni&#263;</name>
    <email>mislav.marohnic@gmail.com</email>
  </author>
  <url>http://github.com/mislav/hanna/commit/c43fec0c8dbbfdfb233148ce5563083d40a104a4</url>
  <id>c43fec0c8dbbfdfb233148ce5563083d40a104a4</id>
  <committed-date>2009-10-15T18:16:36-07:00</committed-date>
  <authored-date>2009-10-15T18:14:12-07:00</authored-date>
  <message>publish v0.1.12 on Gemcutter</message>
  <tree>11a918fb5484981cb3d2e8bb96e5858d33e15f43</tree>
  <committer>
    <name>Mislav Marohni&#263;</name>
    <email>mislav.marohnic@gmail.com</email>
  </committer>
</commit>
