patch-Rakefile 634 B

123456789101112131415161718192021222324
  1. $OpenBSD: patch-Rakefile,v 1.1 2011/11/17 16:08:01 jeremy Exp $
  2. Comment out requiring newgem hoe plugin, as it is not needed for
  3. building and breaks regress.
  4. --- Rakefile.orig Sun Nov 13 00:22:57 2011
  5. +++ Rakefile Sun Nov 13 00:23:10 2011
  6. @@ -4,7 +4,7 @@ require 'hoe'
  7. require 'fileutils'
  8. require './lib/templater'
  9. -Hoe.plugin :newgem
  10. +# Hoe.plugin :newgem
  11. # Hoe.plugin :website
  12. # Hoe.plugin :cucumberfeatures
  13. @@ -19,5 +19,5 @@ $hoe = Hoe.spec 'templater' do
  14. self.extra_dev_deps << ['rspec', '>= 1.2.8']
  15. end
  16. -require 'newgem/tasks'
  17. +# require 'newgem/tasks'
  18. Dir['tasks/**/*.rake'].each { |t| load t }