summaryrefslogtreecommitdiffstats
path: root/tasks/spec.rake
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-09-23 08:35:35 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-09-23 08:35:35 +0200
commitbf8f95fdd25a68d02598c7be864bc97c05132c90 (patch)
treedfe5cc9752a13d3b6c3bd75e8af2896361abf7bc /tasks/spec.rake
parent4da50a4f3e30d70595807d7debe63f8bbf56bc64 (diff)
downloadskeletons-bf8f95fdd25a68d02598c7be864bc97c05132c90.zip
skeletons-bf8f95fdd25a68d02598c7be864bc97c05132c90.tar.gz
everything is packed into ruby-gems directory
Diffstat (limited to 'tasks/spec.rake')
-rw-r--r--tasks/spec.rake44
1 files changed, 0 insertions, 44 deletions
diff --git a/tasks/spec.rake b/tasks/spec.rake
deleted file mode 100644
index 7345f5c..0000000
--- a/tasks/spec.rake
+++ /dev/null
@@ -1,44 +0,0 @@
-# -*- coding: UTF-8 -*-
-#
-#if HAVE_SPEC_RAKE_SPECTASK and not PROJ.spec.files.to_a.empty?
-require 'rspec/core/rake_task'
-#
-namespace :spec do
-
- desc 'Run all specs with basic output'
- RSpec::Core::RakeTask.new(:run) do |t,args|
- t.ruby_opts = PROJ.ruby_opts
- t.rspec_opts = PROJ.spec.opts
- t.pattern = ENV['pattern'] if ENV['pattern']
- end
-
- desc 'Run all specs with text output'
- RSpec::Core::RakeTask.new(:doc) do |t|
- t.ruby_opts = PROJ.ruby_opts
- t.rspec_opts = PROJ.spec.opts + ['-fs' ]
- t.pattern = ENV['pattern'] if ENV['pattern']
- end
-
- desc 'Run all specs with html output'
- RSpec::Core::RakeTask.new(:html) do |t|
- t.ruby_opts = PROJ.ruby_opts
- t.rspec_opts = PROJ.spec.opts + ['-fh' ]
- t.pattern = ENV['pattern'] if ENV['pattern']
- end
-
- if HAVE_RCOV
- desc 'Run all specs with RCov'
- RSpec::Core::RakeTask.new(:rcov) do |t|
- t.ruby_opts = PROJ.ruby_opts
- t.rspec_opts = PROJ.spec.opts
- t.rcov = true
- t.rcov_opts = PROJ.rcov.opts + ['--exclude', 'spec']
- end
- end
-
-end # namespace :spec
-
-desc 'Alias to spec:run'
-task :spec => 'spec:run'
-
-# EOF