Sha256: 71ba7dbb5df7ccfdbfe985b9934b893a1d9041dfb1caa64408077994d58bc54c

Contents?: true

Size: 459 Bytes

Versions: 1

Compression:

Stored size: 459 Bytes

Contents

require 'bundler/gem_tasks'
require 'cucumber/rake/task'

Cucumber::Rake::Task.new(:cucumber, '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'] || 'pretty'}"
end

task :test => ["cucumber"]
task :default => :test

desc "Build HTML documentation"
task :doc do
  sh 'bundle exec yard'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
middleman-syntax-3.4.0 Rakefile