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