<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -61,4 +61,36 @@ begin
   end
 
 rescue LoadError
+end
+
+begin
+  require 'rake/gempackagetask'
+  $LOAD_PATH.unshift File.dirname(__FILE__) + '/lib'
+  require 'inherit_views/version'
+
+  spec = Gem::Specification.new do |s|
+    s.name          = &quot;inherit_views&quot;
+    s.version       = InheritViews::Version::String
+    s.summary       = &quot;Allow rails controllers to inherit views.&quot;
+    s.description   = &quot;Allow rails controllers to inherit views.&quot;
+    s.author        = &quot;Ian White&quot;
+    s.email         = &quot;ian.w.white@gmail.com&quot;
+    s.homepage      = &quot;http://github.com/ianwhite/inherit_views/tree&quot;
+    s.has_rdoc      = true
+    s.rdoc_options &lt;&lt; &quot;--title&quot; &lt;&lt; &quot;Pickle&quot; &lt;&lt; &quot;--line-numbers&quot;
+    s.test_files    = FileList[&quot;spec/**/*_spec.rb&quot;]
+    s.files         = FileList[&quot;lib/**/*.rb&quot;, &quot;License.txt&quot;, &quot;README.rdoc&quot;, &quot;Todo.txt&quot;, &quot;History.txt&quot;]
+  end
+
+  Rake::GemPackageTask.new(spec) do |p|
+    p.gem_spec = spec
+    p.need_tar = true
+    p.need_zip = true
+  end
+
+  desc &quot;Generate inherit_views.gemspec file&quot;
+  task :build do
+    File.open('inherit_views.gemspec', 'w') {|f| f.write spec.to_ruby }
+  end
+rescue LoadError
 end
\ No newline at end of file</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,17 +1,30 @@
-Gem::Specification.new do |s|
-	s.name = %q{inherit_views}
-	s.version = '1.0.3'
+# -*- encoding: utf-8 -*-
 
-	s.date = %q{2009-06-18}
-	s.summary = %q{Allow rails views to inherit from each other.}
-	s.description = %q{Allow rails views to inherit from each other.}
-	s.authors = [&quot;Ian W. White&quot;, &quot;thedarkone&quot;]
-	s.email = &quot;ian.w.white@gmail.com&quot;
-	s.homepage = &quot;http://github.com/topherfangio/inherit_views/tree/master&quot;
+Gem::Specification.new do |s|
+  s.name = %q{inherit_views}
+  s.version = &quot;0.9.0&quot;
 
-	s.has_rdoc = true
-	s.require_paths = [&quot;inherit_views&quot;]
+  s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
+  s.authors = [&quot;Ian White&quot;]
+  s.date = %q{2009-06-19}
+  s.description = %q{Allow rails controllers to inherit views.}
+  s.email = %q{ian.w.white@gmail.com}
+  s.files = [&quot;lib/inherit_views/version.rb&quot;, &quot;lib/inherit_views.rb&quot;, &quot;License.txt&quot;, &quot;README.rdoc&quot;, &quot;Todo.txt&quot;, &quot;History.txt&quot;, &quot;spec/controllers/a_controller_spec.rb&quot;, &quot;spec/controllers/b_controller_spec.rb&quot;, &quot;spec/controllers/c_controller_spec.rb&quot;, &quot;spec/controllers/d_controller_spec.rb&quot;, &quot;spec/controllers/normal_controller_spec.rb&quot;, &quot;spec/mailers/mailer_spec.rb&quot;]
+  s.has_rdoc = true
+  s.homepage = %q{http://github.com/ianwhite/inherit_views/tree}
+  s.rdoc_options = [&quot;--title&quot;, &quot;Pickle&quot;, &quot;--line-numbers&quot;]
+  s.require_paths = [&quot;lib&quot;]
+  s.rubygems_version = %q{1.3.1}
+  s.summary = %q{Allow rails controllers to inherit views.}
+  s.test_files = [&quot;spec/controllers/a_controller_spec.rb&quot;, &quot;spec/controllers/b_controller_spec.rb&quot;, &quot;spec/controllers/c_controller_spec.rb&quot;, &quot;spec/controllers/d_controller_spec.rb&quot;, &quot;spec/controllers/normal_controller_spec.rb&quot;, &quot;spec/mailers/mailer_spec.rb&quot;]
 
-	s.files = [&quot;garlic.rb&quot;, &quot;History.txt&quot;, &quot;inherit_views.gemspec&quot;, &quot;init.rb&quot;, &quot;License.txt&quot;, &quot;Rakefile&quot;, &quot;README.rdoc&quot;, &quot;Todo.txt&quot;, &quot;inherit_views/inherit_views.rb&quot;, &quot;rails/init.rb&quot;, &quot;spec/controllers/a_controller_spec.rb&quot;, &quot;spec/controllers/c_controller_spec.rb&quot;, &quot;spec/controllers/b_controller_spec.rb&quot;, &quot;spec/controllers/normal_controller_spec.rb&quot;, &quot;spec/controllers/d_controller_spec.rb&quot;, &quot;spec/spec_helper.rb&quot;, &quot;spec/app.rb&quot;, &quot;spec/mailers/mailer_spec.rb&quot;, &quot;spec/views_for_specs/b/partial_in_b.html.erb&quot;, &quot;spec/views_for_specs/b/bad_render_parent.html.erb&quot;, &quot;spec/views_for_specs/b/partial_in_bc.html.erb&quot;, &quot;spec/views_for_specs/b/in_abc.html.erb&quot;, &quot;spec/views_for_specs/b/partial_render_parent.html.erb&quot;, &quot;spec/views_for_specs/b/_partial_in_b.html.erb&quot;, &quot;spec/views_for_specs/b/_partial_in_bc.html.erb&quot;, &quot;spec/views_for_specs/b/collection_in_bc.html.erb&quot;, &quot;spec/views_for_specs/b/in_b.html.erb&quot;, &quot;spec/views_for_specs/b/in_ab.html.erb&quot;, &quot;spec/views_for_specs/b/_partial_render_parent.html.erb&quot;, &quot;spec/views_for_specs/b/render_parent.html.erb&quot;, &quot;spec/views_for_specs/normal_mailer/email.erb&quot;, &quot;spec/views_for_specs/normal_mailer/_partial.erb&quot;, &quot;spec/views_for_specs/a/render_non_existent_partial.html.erb&quot;, &quot;spec/views_for_specs/a/in_a.html.erb&quot;, &quot;spec/views_for_specs/a/in_abc.html.erb&quot;, &quot;spec/views_for_specs/a/in_ab.html.erb&quot;, &quot;spec/views_for_specs/a/_partial_render_parent.html.erb&quot;, &quot;spec/views_for_specs/a/render_parent.html.erb&quot;, &quot;spec/views_for_specs/normal/partial_from_c.html.erb&quot;, &quot;spec/views_for_specs/c/in_abc.html.erb&quot;, &quot;spec/views_for_specs/c/_partial_in_bc.html.erb&quot;, &quot;spec/views_for_specs/c/_partial_render_parent.html.erb&quot;, &quot;spec/views_for_specs/c/in_c.html.erb&quot;, &quot;spec/views_for_specs/c/render_parent.html.erb&quot;, &quot;spec/views_for_specs/inheriting_mailer/email.erb&quot;]
+  if s.respond_to? :specification_version then
+    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
+    s.specification_version = 2
 
+    if Gem::Version.new(Gem::RubyGemsVersion) &gt;= Gem::Version.new('1.2.0') then
+    else
+    end
+  else
+  end
 end</diff>
      <filename>inherit_views.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>245db29b634996246efeb9b9311b16538e43067e</id>
    </parent>
  </parents>
  <author>
    <name>Ian White</name>
    <email>ian.w.white@gmail.com</email>
  </author>
  <url>http://github.com/ianwhite/inherit_views/commit/d1af8693a0efa60c2e1935238e73b26b3b3f67dc</url>
  <id>d1af8693a0efa60c2e1935238e73b26b3b3f67dc</id>
  <committed-date>2009-06-19T07:03:39-07:00</committed-date>
  <authored-date>2009-06-19T07:03:39-07:00</authored-date>
  <message>Add build rake task for generating gemspec</message>
  <tree>ea17f93af400b5e1ce7fa00cde6fd7a39d69db05</tree>
  <committer>
    <name>Ian White</name>
    <email>ian.w.white@gmail.com</email>
  </committer>
</commit>
