2011-12-30 00:09:51 +01:00
|
|
|
require 'rubygems' unless defined?(Gem)
|
|
|
|
require 'rake'
|
2012-05-02 20:13:06 +02:00
|
|
|
require 'yard'
|
2012-01-06 05:34:24 +01:00
|
|
|
|
2013-05-01 19:16:46 +02:00
|
|
|
require 'bundler/gem_tasks'
|
2011-12-30 00:09:51 +01:00
|
|
|
|
|
|
|
# Skip the releasing tag
|
2011-12-30 04:04:39 +01:00
|
|
|
class Bundler::GemHelper
|
2013-05-01 19:16:46 +02:00
|
|
|
def release_gem(*args)
|
|
|
|
p args
|
2011-12-30 04:04:39 +01:00
|
|
|
guard_clean
|
|
|
|
built_gem_path = build_gem
|
|
|
|
rubygem_push(built_gem_path)
|
|
|
|
end
|
|
|
|
end
|
2011-12-30 00:09:51 +01:00
|
|
|
|
2012-10-27 20:47:06 +02:00
|
|
|
require 'cucumber/rake/task'
|
|
|
|
|
|
|
|
Cucumber::Rake::Task.new do |t|
|
2012-06-17 20:31:10 +02:00
|
|
|
exempt_tags = ["--tags ~@wip"]
|
2012-05-03 01:28:04 +02:00
|
|
|
exempt_tags << "--tags ~@nojava" if RUBY_PLATFORM == "java"
|
2012-06-17 00:09:48 +02:00
|
|
|
exempt_tags << "--tags ~@encoding" unless Object.const_defined?(:Encoding)
|
2012-06-19 01:53:22 +02:00
|
|
|
exempt_tags << "--tags ~@travishatesme" if ENV["TRAVIS"] == "true"
|
2012-08-14 00:39:06 +02:00
|
|
|
|
2012-06-17 20:31:10 +02:00
|
|
|
t.cucumber_opts = "--color #{exempt_tags.join(" ")} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
2011-12-30 00:09:51 +01:00
|
|
|
end
|
|
|
|
|
2012-10-27 20:47:06 +02:00
|
|
|
Cucumber::Rake::Task.new(:cucumber_wip) do |t|
|
|
|
|
exempt_tags = ["--tags @wip"]
|
|
|
|
exempt_tags << "--tags ~@nojava" if RUBY_PLATFORM == "java"
|
|
|
|
exempt_tags << "--tags ~@encoding" unless Object.const_defined?(:Encoding)
|
|
|
|
|
|
|
|
t.cucumber_opts = "--color #{exempt_tags.join(" ")} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
|
|
|
end
|
|
|
|
|
|
|
|
require 'rspec/core/rake_task'
|
|
|
|
desc "Run RSpec"
|
|
|
|
RSpec::Core::RakeTask.new do |spec|
|
|
|
|
spec.pattern = 'spec/**/*_spec.rb'
|
|
|
|
spec.rspec_opts = ['--color', '--format nested']
|
|
|
|
end
|
|
|
|
|
|
|
|
desc "Run tests, both RSpec and Cucumber"
|
|
|
|
task :test => [:spec, :cucumber]
|
|
|
|
|
2012-05-02 20:13:06 +02:00
|
|
|
YARD::Rake::YardocTask.new
|
2011-12-30 04:57:02 +01:00
|
|
|
|
2012-08-14 00:39:06 +02:00
|
|
|
task :default => :test
|