aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-06-25 15:15:43 -0700
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-06-25 15:15:43 -0700
commitf02d4ddc99ad70d1bd50ff70d37aed5f9cf49398 (patch)
treefabcefb2b324f81784dd7846ecb1e3a634368554 /activesupport/Rakefile
parent364500d9059640e4558c0c7c61aa757e63c8721a (diff)
parentd88b390dfde606b7b9b2de77d8af50ca3ade43bd (diff)
downloadrails-f02d4ddc99ad70d1bd50ff70d37aed5f9cf49398.tar.gz
rails-f02d4ddc99ad70d1bd50ff70d37aed5f9cf49398.tar.bz2
rails-f02d4ddc99ad70d1bd50ff70d37aed5f9cf49398.zip
Merge pull request #11046 from arunagw/verbose_mode_on
Verbose mode on when running tests
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 c5e8e382c9..99770bace9 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