diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-06-11 15:40:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-11 15:40:11 -0400 |
commit | c18621fd7c2f912aa6fca214d045ecfc303ae37f (patch) | |
tree | 13d7bfccc831eca856de9d0de85eca15a44d19cf | |
parent | b12d646f6f3fbb6d7bac42e8b836e4a0f22f69b4 (diff) | |
parent | 1e91a0d3c0138d08a68b6e5402774e4dbcde526e (diff) | |
download | rails-c18621fd7c2f912aa6fca214d045ecfc303ae37f.tar.gz rails-c18621fd7c2f912aa6fca214d045ecfc303ae37f.tar.bz2 rails-c18621fd7c2f912aa6fca214d045ecfc303ae37f.zip |
Merge pull request #33092 from utilum/warnings_in_contribute_guide
Remove ineffective no-warnings flags from Contribute guide
-rw-r--r-- | guides/source/contributing_to_ruby_on_rails.md | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md index ba5d7bbee8..6c0c7aefc1 100644 --- a/guides/source/contributing_to_ruby_on_rails.md +++ b/guides/source/contributing_to_ruby_on_rails.md @@ -374,12 +374,6 @@ 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. -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 -``` - ### Updating the CHANGELOG The CHANGELOG is an important part of every release. It keeps the list of changes for every Rails version. |