2011-12-29 18:09:51 -05:00
|
|
|
require 'rubygems' unless defined?(Gem)
|
|
|
|
require 'rake'
|
2012-05-02 14:13:06 -04:00
|
|
|
require 'yard'
|
2012-01-05 23:34:24 -05:00
|
|
|
|
|
|
|
require 'bundler'
|
|
|
|
Bundler::GemHelper.install_tasks :name => GEM_NAME
|
2011-12-29 18:09:51 -05:00
|
|
|
|
|
|
|
# Skip the releasing tag
|
2011-12-29 22:04:39 -05:00
|
|
|
class Bundler::GemHelper
|
|
|
|
def release_gem
|
|
|
|
guard_clean
|
2011-12-29 22:57:02 -05:00
|
|
|
# guard_already_tagged
|
2011-12-29 22:04:39 -05:00
|
|
|
built_gem_path = build_gem
|
|
|
|
rubygem_push(built_gem_path)
|
|
|
|
end
|
|
|
|
end
|
2011-12-29 18:09:51 -05:00
|
|
|
|
2012-10-27 14:47:06 -04:00
|
|
|
require 'cucumber/rake/task'
|
|
|
|
|
|
|
|
Cucumber::Rake::Task.new do |t|
|
2012-06-17 14:31:10 -04:00
|
|
|
exempt_tags = ["--tags ~@wip"]
|
2012-05-02 19:28:04 -04:00
|
|
|
exempt_tags << "--tags ~@nojava" if RUBY_PLATFORM == "java"
|
2012-06-16 18:09:48 -04:00
|
|
|
exempt_tags << "--tags ~@encoding" unless Object.const_defined?(:Encoding)
|
2012-06-18 19:53:22 -04:00
|
|
|
exempt_tags << "--tags ~@travishatesme" if ENV["TRAVIS"] == "true"
|
2012-08-13 18:39:06 -04:00
|
|
|
|
2012-06-17 14:31:10 -04:00
|
|
|
t.cucumber_opts = "--color #{exempt_tags.join(" ")} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
2011-12-29 18:09:51 -05:00
|
|
|
end
|
|
|
|
|
2012-10-27 14:47:06 -04: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 14:13:06 -04:00
|
|
|
YARD::Rake::YardocTask.new
|
2011-12-29 22:57:02 -05:00
|
|
|
|
2012-08-13 18:39:06 -04:00
|
|
|
task :default => :test
|