From 3cc74aae7ea16ff6947784b3a6bb77c57b82ab34 Mon Sep 17 00:00:00 2001 From: Karl Freeman Date: Sun, 29 Dec 2013 23:06:52 +0000 Subject: [PATCH] whitespace [ci skip] --- README.md | 2 -- gem_rake_helper.rb | 3 --- 2 files changed, 5 deletions(-) diff --git a/README.md b/README.md index 8d7b1901..a90e252f 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ **Middleman** is a static site generator using all the shortcuts and tools in modern web development. Check out [middlemanapp.com](http://middlemanapp.com/) for detailed tutorials, including a [getting started guide](http://middlemanapp.com/basics/getting-started/). You can also follow [@middlemanapp](https://twitter.com/middlemanapp) for updates. - - ## Why Middleman? The last few years have seen an explosion in the amount and variety of tools developers can use to build web applications. Ruby on Rails selects a handful of these tools: diff --git a/gem_rake_helper.rb b/gem_rake_helper.rb index 80158aec..d6e78861 100644 --- a/gem_rake_helper.rb +++ b/gem_rake_helper.rb @@ -15,13 +15,11 @@ class Bundler::GemHelper 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) exempt_tags << '--tags ~@travishatesme' if ENV['TRAVIS'] == 'true' - t.cucumber_opts = "--color #{exempt_tags.join(" ")} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}" end @@ -29,7 +27,6 @@ Cucumber::Rake::Task.new(:cucumber_wip) do |t| exempt_tags = ['--tags @wip'] exempt_tags << '--tags ~@nojava' if RUBY_PLATFORM == 'java' exempt_tags << '--tags ~@encoding' unless Object.const_defined?(:Encoding) - t.cucumber_opts = "--color #{exempt_tags.join(" ")} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}" end