mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
28 lines
No EOL
682 B
Ruby
28 lines
No EOL
682 B
Ruby
require 'rubygems' unless defined?(Gem)
|
|
require 'rake'
|
|
require 'cucumber/rake/task'
|
|
require 'yard'
|
|
|
|
require 'bundler'
|
|
Bundler::GemHelper.install_tasks :name => GEM_NAME
|
|
|
|
# Skip the releasing tag
|
|
class Bundler::GemHelper
|
|
def release_gem
|
|
guard_clean
|
|
# guard_already_tagged
|
|
built_gem_path = build_gem
|
|
rubygem_push(built_gem_path)
|
|
end
|
|
end
|
|
|
|
Cucumber::Rake::Task.new(:test, 'Run features that should pass') do |t|
|
|
exempt_tags = ""
|
|
exempt_tags << "--tags ~@nojava" if RUBY_PLATFORM == "java"
|
|
|
|
t.cucumber_opts = "--color --tags ~@wip #{exempt_tags} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
|
end
|
|
|
|
YARD::Rake::YardocTask.new
|
|
|
|
task :default => :test |