middleman/gem_rake_helper.rb

46 lines
1.4 KiB
Ruby
Raw Permalink Normal View History

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'
# Skip the releasing tag
class Bundler::GemHelper
2013-05-01 19:16:46 +02:00
def release_gem(*args)
p args
guard_clean
built_gem_path = build_gem
rubygem_push(built_gem_path)
end
end
require 'cucumber/rake/task'
Cucumber::Rake::Task.new do |t|
exempt_tags = ['--tags ~@wip']
exempt_tags << '--tags ~@nojava' if RUBY_PLATFORM == 'java'
exempt_tags << '--tags ~@encoding' unless Object.const_defined?(:Encoding)
2014-07-03 21:13:22 +02:00
exempt_tags << '--tags ~@nowindows' if Gem.win_platform?
exempt_tags << '--tags ~@travishatesme' if ENV['TRAVIS'] == 'true'
2015-09-17 22:53:43 +02:00
t.cucumber_opts = "--require features --color #{exempt_tags.join(' ')} --strict" # --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
end
Cucumber::Rake::Task.new(:cucumber_wip) do |t|
exempt_tags = ['--tags @wip']
exempt_tags << '--tags ~@encoding' unless Object.const_defined?(:Encoding)
2014-07-03 21:13:22 +02:00
exempt_tags << '--tags ~@nowindows' if Gem.win_platform?
2015-09-17 22:53:43 +02:00
t.cucumber_opts = "--require features --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'
2014-07-03 21:13:22 +02:00
spec.rspec_opts = ['--color', '--format documentation']
end
desc 'Run tests, both RSpec and Cucumber'
2014-04-29 19:44:24 +02:00
task test: [:spec, :cucumber]
2012-05-02 20:13:06 +02:00
YARD::Rake::YardocTask.new
2011-12-30 04:57:02 +01:00
2014-04-29 19:44:24 +02:00
task default: :test