<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>HISTORY</filename>
    </added>
    <added>
      <filename>LICENSE</filename>
    </added>
    <added>
      <filename>TODO</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,11 +1,44 @@
-require 'config/requirements'
-require 'config/hoe' # setup Hoe + all gem configuration
-require 'spec/rake/spectask'
-
-Dir['tasks/**/*.rake'].each { |rake| load rake }
-
-  Spec::Rake::SpecTask.new('spec') do |t|
-    t.spec_opts &lt;&lt; '--format' &lt;&lt; 'specdoc' &lt;&lt; '--colour'
-    t.spec_opts &lt;&lt; '--loadby' &lt;&lt; 'random'
-    t.spec_files = Dir[&quot;spec/**/*_spec.rb&quot;]
-  end
\ No newline at end of file
+require 'rubygems'
+require 'rake/gempackagetask'
+
+PLUGIN = &quot;merb_exceptions&quot;
+NAME = &quot;merb_exceptions&quot;
+VERSION = &quot;0.1.1&quot;
+AUTHOR = 'Andy Kent'
+EMAIL = &quot;andy@new-bamboo.co.uk&quot;
+HOMEPAGE = &quot;http://merb-plugins.rubyforge.org/me/&quot;
+SUMMARY = &quot;Allows Merb to forward exceptions to emails or web hooks&quot;
+
+spec = Gem::Specification.new do |s|
+  s.name = NAME
+  s.version = VERSION
+  s.platform = Gem::Platform::RUBY
+  s.has_rdoc = true
+  s.extra_rdoc_files = [&quot;README&quot;, &quot;LICENSE&quot;, 'TODO']
+  s.summary = SUMMARY
+  s.description = s.summary
+  s.author = AUTHOR
+  s.email = EMAIL
+  s.homepage = HOMEPAGE
+  s.add_dependency('merb', '&gt;= 0.4.0')
+  s.require_path = 'lib'
+  s.autorequire = PLUGIN
+  s.files = %w(LICENSE README Rakefile TODO) + Dir.glob(&quot;{lib,spec}/**/*&quot;)
+end
+
+Rake::GemPackageTask.new(spec) do |pkg|
+  pkg.gem_spec = spec
+end
+
+task :install =&gt; [:package] do
+  sh %{sudo gem install pkg/#{NAME}-#{VERSION} --no-update-sources}
+end
+
+namespace :jruby do
+
+  desc &quot;Run :package and install the resulting .gem with jruby&quot;
+  task :install =&gt; :package do
+    sh %{#{SUDO} jruby -S gem install pkg/#{NAME}-#{Merb::VERSION}.gem --no-rdoc --no-ri}
+  end
+  
+end
\ No newline at end of file</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ module MerbExceptions #:nodoc:
   module VERSION #:nodoc:
     MAJOR = 0
     MINOR = 1
-    TINY  = 0
+    TINY  = 1
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/merb_exceptions/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 Gem::Specification.new do |s|
   s.name = %q{merb_exceptions}
-  s.version = &quot;0.1.0&quot;
+  s.version = &quot;0.1.1&quot;
 
   s.specification_version = 2 if s.respond_to? :specification_version=
 
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
   s.date = %q{2008-05-12}
   s.description = %q{Allows Merb to forward exceptions to emails or web hooks}
   s.email = [&quot;andy@new-bamboo.co.uk&quot;]
-  s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;License.txt&quot;]
-  s.files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;README.markdown&quot;, &quot;Rakefile&quot;, &quot;lib/merb_exceptions.rb&quot;, &quot;lib/merb_exceptions/controller_extensions.rb&quot;, &quot;lib/merb_exceptions/notification.rb&quot;, &quot;lib/merb_exceptions/templates/email.erb&quot;, &quot;lib/merb_exceptions/version.rb&quot;, &quot;spec/spec_helper.rb&quot;, &quot;spec/unit/notification_spec.rb&quot;]
+  s.extra_rdoc_files = [&quot;LICENCE&quot;]
+  s.files = [&quot;LICENCE&quot;, &quot;README.markdown&quot;, &quot;Rakefile&quot;, &quot;lib/merb_exceptions.rb&quot;, &quot;lib/merb_exceptions/controller_extensions.rb&quot;, &quot;lib/merb_exceptions/notification.rb&quot;, &quot;lib/merb_exceptions/templates/email.erb&quot;, &quot;lib/merb_exceptions/version.rb&quot;, &quot;spec/spec_helper.rb&quot;, &quot;spec/unit/notification_spec.rb&quot;]
   s.has_rdoc = true
   s.homepage = %q{http://github.com/newbamboo/merb_exceptions/}
   s.rdoc_options = [&quot;--main&quot;, &quot;README.markdown&quot;]</diff>
      <filename>merb_exceptions.gemspec</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>License.txt</filename>
    </removed>
    <removed>
      <filename>Manifest.txt</filename>
    </removed>
    <removed>
      <filename>PostInstall.txt</filename>
    </removed>
    <removed>
      <filename>README.txt</filename>
    </removed>
    <removed>
      <filename>config/hoe.rb</filename>
    </removed>
    <removed>
      <filename>config/requirements.rb</filename>
    </removed>
    <removed>
      <filename>script/console</filename>
    </removed>
    <removed>
      <filename>script/destroy</filename>
    </removed>
    <removed>
      <filename>script/generate</filename>
    </removed>
    <removed>
      <filename>script/txt2html</filename>
    </removed>
    <removed>
      <filename>setup.rb</filename>
    </removed>
    <removed>
      <filename>tasks/deployment.rake</filename>
    </removed>
    <removed>
      <filename>tasks/environment.rake</filename>
    </removed>
    <removed>
      <filename>tasks/website.rake</filename>
    </removed>
    <removed>
      <filename>website/index.html</filename>
    </removed>
    <removed>
      <filename>website/index.txt</filename>
    </removed>
    <removed>
      <filename>website/javascripts/rounded_corners_lite.inc.js</filename>
    </removed>
    <removed>
      <filename>website/stylesheets/screen.css</filename>
    </removed>
    <removed>
      <filename>website/template.html.erb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>7ec089e0b0a41aaaf28ba7b4905cb1e11055007e</id>
    </parent>
  </parents>
  <author>
    <name>Martyn Loughran</name>
    <email>me@mloughran.com</email>
  </author>
  <url>http://github.com/newbamboo/merb_exceptions/commit/ccf0e249ae22132754455d71e740b8b9738094c2</url>
  <id>ccf0e249ae22132754455d71e740b8b9738094c2</id>
  <committed-date>2008-05-14T17:02:47-07:00</committed-date>
  <authored-date>2008-05-14T17:02:47-07:00</authored-date>
  <message>Rip out all the Hoe bloat and use the merb plugin generator</message>
  <tree>b2e3781890964e89366c48f8ac0c770d0ce100d7</tree>
  <committer>
    <name>Martyn Loughran</name>
    <email>me@mloughran.com</email>
  </committer>
</commit>
