Sha256: 641b41d1c3490786f3144d67828a1d5eac1eda708444fe94a4a4e903bedf5bd8

Contents?: true

Size: 506 Bytes

Versions: 12

Compression:

Stored size: 506 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'cucumber/rake/task'

Cucumber::Rake::Task.new(:cucumber, 'Run features that should pass') do |t|
  ENV["TEST"] = "true"

  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

require 'rake/clean'

task :test => ["cucumber"]

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

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
middleman-blog-3.2.0 Rakefile
middleman-blog-3.1.1 Rakefile
middleman-blog-3.1.0 Rakefile
middleman-blog-3.0.0 Rakefile
middleman-minify-html-3.0.0 Rakefile
middleman-blog-3.0.0.rc.4 Rakefile
middleman-blog-3.0.0.rc.3 Rakefile
middleman-minify-html-3.0.0.rc.3 Rakefile
middleman-minify-html-3.0.0.rc.2 Rakefile
middleman-blog-3.0.0.rc.2 Rakefile
middleman-minify-html-3.0.0.rc.1 Rakefile
middleman-blog-3.0.0.rc.1 Rakefile