1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

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

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)