16703d23fa
Start using MODRUBY_REGRESS with ruby, rspec2, and testrb entries. Switch away from manual do_regress targets where possible. Add some patches to make regress tests run for some ports.
25 lines
833 B
Plaintext
25 lines
833 B
Plaintext
$OpenBSD: patch-Rakefile,v 1.1 2011/11/17 16:08:00 jeremy Exp $
|
|
|
|
The gem doesn't ship with it's gemspec, which breaks the Rakefile
|
|
when used from the gem. Work around it so the regress tests can run.
|
|
|
|
--- Rakefile.orig Sun Nov 13 22:29:39 2011
|
|
+++ Rakefile Sun Nov 13 22:29:54 2011
|
|
@@ -10,7 +10,6 @@ require 'date'
|
|
# rake cleanr default
|
|
# gem push pkg/ruby-prof-0.10.1.gem
|
|
|
|
-default_spec = eval File.read(File.expand_path('../ruby-prof.gemspec', __FILE__))
|
|
|
|
desc 'deprecated--build native .gem files -- use like "native_gems clobber cross native gem"--for non native gem creation use "native_gems clobber" then "clean gem"'
|
|
task :native_gems do
|
|
@@ -27,7 +26,7 @@ end
|
|
Rake::GemPackageTask.new(default_spec) do |pkg|
|
|
pkg.need_tar = true
|
|
#pkg.need_zip = true
|
|
-end
|
|
+end if false
|
|
|
|
|
|
# --------- RDoc Documentation ------
|