summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorMatijs van Zuijlen <matijs@matijs.net>2015-01-22 19:24:59 +0100
committerMatijs van Zuijlen <matijs@matijs.net>2015-01-23 14:02:49 +0100
commitcc6bbb57820a739988236b403e4e5e25e5892e2d (patch)
treee0908602416b693adcf572621d1e996c7a9c4b5e /Rakefile
parent741782b7268c265be3e6105dde874af6794c47c3 (diff)
downloadpry-cc6bbb57820a739988236b403e4e5e25e5892e2d.tar.gz
Enable warnings during spec runs
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index dc5c96d5..c840f8bc 100644
--- a/Rakefile
+++ b/Rakefile
@@ -12,7 +12,7 @@ task :default => [:test]
def run_specs paths
format = ENV['VERBOSE'] ? '--format documentation ' : ''
- sh "rspec #{format}#{paths.join ' '}"
+ sh "rspec -w #{format}#{paths.join ' '}"
end
desc "Run tests"