diff options
author | Vipul A M <vipulnsward@gmail.com> | 2014-01-25 14:04:09 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2014-01-25 14:04:09 +0530 |
commit | 9cc4dadb0b38ae1f686e16aebee97fc633fc6347 (patch) | |
tree | 53679d7b22ac3f703de60b78f6022e60f1247e13 | |
parent | 3e28b7c2bbd278381e9cf89086c0d3ac62a58f72 (diff) | |
download | rails-9cc4dadb0b38ae1f686e16aebee97fc633fc6347.tar.gz rails-9cc4dadb0b38ae1f686e16aebee97fc633fc6347.tar.bz2 rails-9cc4dadb0b38ae1f686e16aebee97fc633fc6347.zip |
Remove old comments about suppressing warnings.
-rw-r--r-- | guides/source/contributing_to_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md index 814237ba22..5ba6d8581c 100644 --- a/guides/source/contributing_to_ruby_on_rails.md +++ b/guides/source/contributing_to_ruby_on_rails.md @@ -136,7 +136,7 @@ You can invoke `test_jdbcmysql`, `test_jdbcsqlite3` or `test_jdbcpostgresql` als The test suite runs with warnings enabled. Ideally, Ruby on Rails should issue no warnings, but there may be a few, as well as some from third-party libraries. Please ignore (or fix!) them, if any, and submit patches that do not issue new warnings. -As of this writing (December, 2010) they are especially noisy with Ruby 1.9. If you are sure about what you are doing and would like to have a more clear output, there's a way to override the flag: +If you are sure about what you are doing and would like to have a more clear output, there's a way to override the flag: ```bash $ RUBYOPT=-W0 bundle exec rake test |