2011-12-30 00:09:51 +01:00
|
|
|
require 'rubygems' unless defined?(Gem)
|
|
|
|
require 'rake'
|
2011-12-30 04:57:02 +01:00
|
|
|
require 'cucumber/rake/task'
|
2012-05-02 20:13:06 +02:00
|
|
|
require 'yard'
|
2012-01-06 05:34:24 +01:00
|
|
|
|
|
|
|
require 'bundler'
|
|
|
|
Bundler::GemHelper.install_tasks :name => GEM_NAME
|
2011-12-30 00:09:51 +01:00
|
|
|
|
|
|
|
# Skip the releasing tag
|
2011-12-30 04:04:39 +01:00
|
|
|
class Bundler::GemHelper
|
|
|
|
def release_gem
|
|
|
|
guard_clean
|
2011-12-30 04:57:02 +01:00
|
|
|
# guard_already_tagged
|
2011-12-30 04:04:39 +01:00
|
|
|
built_gem_path = build_gem
|
|
|
|
rubygem_push(built_gem_path)
|
|
|
|
end
|
|
|
|
end
|
2011-12-30 00:09:51 +01:00
|
|
|
|
|
|
|
Cucumber::Rake::Task.new(:test, 'Run features that should pass') do |t|
|
2012-05-03 01:28:04 +02:00
|
|
|
exempt_tags = ""
|
|
|
|
exempt_tags << "--tags ~@nojava" if RUBY_PLATFORM == "java"
|
|
|
|
|
|
|
|
t.cucumber_opts = "--color --tags ~@wip #{exempt_tags} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
2011-12-30 00:09:51 +01:00
|
|
|
end
|
|
|
|
|
2012-05-02 20:13:06 +02:00
|
|
|
YARD::Rake::YardocTask.new
|
2011-12-30 04:57:02 +01:00
|
|
|
|
2011-12-30 00:09:51 +01:00
|
|
|
task :default => :test
|