aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2013-06-21 14:14:36 +0200
committerArun Agrawal <arunagw@gmail.com>2013-06-21 14:14:36 +0200
commitd88b390dfde606b7b9b2de77d8af50ca3ade43bd (patch)
tree50308df43bb9f2e29e40547a94cb420e02bd9588 /activesupport/Rakefile
parent6f4d9ab823d68fb94a3fc33baae4e37fe7bdf1ce (diff)
downloadrails-d88b390dfde606b7b9b2de77d8af50ca3ade43bd.tar.gz
rails-d88b390dfde606b7b9b2de77d8af50ca3ade43bd.tar.bz2
rails-d88b390dfde606b7b9b2de77d8af50ca3ade43bd.zip
Adding verbose in isolated test.
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r--activesupport/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index f50225a9f0..d77f47967e 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -14,7 +14,7 @@ namespace :test do
task :isolated do
ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))
Dir.glob("test/**/*_test.rb").all? do |file|
- sh(ruby, '-Ilib:test', file)
+ sh(ruby, '-w', '-Ilib:test', file)
end or raise "Failures"
end
end