summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorKamil Kieliszczyk <kamil@kieliszczyk.net>2014-02-21 09:12:56 +0100
committerTim Moore <tmoore@incrementalism.net>2014-02-24 22:37:21 +1100
commitb2ef0e44122902030f142b00f8c5ff42f46cc6a7 (patch)
treea1ab591a4d8e3ec3d1132e4d89aeb8a444283edf /Rakefile
parentbb8f694147cb07cd820297978b0378ffa4c6d54b (diff)
downloadbundler-b2ef0e44122902030f142b00f8c5ff42f46cc6a7.tar.gz
Use documentation rspec formater
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index aa63fffef7..c5dceca1e7 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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