Enable warnings when running specs.

This commit is contained in:
Vipul A M 2014-03-19 18:52:52 +05:30
parent 7379c235e7
commit 9abc866fe7
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ require 'yaml'
require 'sinatra/contrib/version'
desc "run specs"
task(:spec) { ruby '-S rspec spec -c' }
task(:spec) { ruby '-S rspec spec -cw' }
task(:test => :spec)
task(:default => :spec)