diff options
author | Kamil Kieliszczyk <kamil@kieliszczyk.net> | 2014-02-21 09:12:56 +0100 |
---|---|---|
committer | Tim Moore <tmoore@incrementalism.net> | 2014-02-24 22:37:21 +1100 |
commit | b2ef0e44122902030f142b00f8c5ff42f46cc6a7 (patch) | |
tree | a1ab591a4d8e3ec3d1132e4d89aeb8a444283edf /Rakefile | |
parent | bb8f694147cb07cd820297978b0378ffa4c6d54b (diff) | |
download | bundler-b2ef0e44122902030f142b00f8c5ff42f46cc6a7.tar.gz |
Use documentation rspec formater
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -66,7 +66,7 @@ begin desc "Run specs" RSpec::Core::RakeTask.new do |t| - t.rspec_opts = %w(-fs --color) + t.rspec_opts = %w(--format documentation --color) t.ruby_opts = %w(-w) end task :spec => "man:build" @@ -104,7 +104,7 @@ begin (branches + releases).each do |rg| desc "Run specs with Rubygems #{rg}" RSpec::Core::RakeTask.new(rg) do |t| - t.rspec_opts = %w(-fs --color) + t.rspec_opts = %w(--format documentation --color) t.ruby_opts = %w(-w) end @@ -141,7 +141,7 @@ begin desc "Run specs under a Rubygems checkout (set RG=path)" RSpec::Core::RakeTask.new("co") do |t| - t.rspec_opts = %w(-fs --color) + t.rspec_opts = %w(--format documentation --color) t.ruby_opts = %w(-w) end |