Sha256: 2b84ddd015bb0fc373ca5f23f478d3fb5b8e2f81efbd425234de4be0d0ddd7c5
Contents?: true
Size: 503 Bytes
Versions: 3
Compression:
Stored size: 503 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
middleman-minify-html-3.4.1 | Rakefile |
middleman-minify-html-3.4.0 | Rakefile |
middleman-minify-html-3.3.0 | Rakefile |