diff options
author | Teng Siong Ong <siong1987@gmail.com> | 2012-09-22 15:03:56 -0700 |
---|---|---|
committer | Teng Siong Ong <siong1987@gmail.com> | 2012-09-22 16:49:59 -0700 |
commit | a53c3f3878e56c76d5eb5ea03506fc6043312016 (patch) | |
tree | 59b8025af934155c3f23d1d76526aabb30a8e16e /guides | |
parent | 3b0da715c5c8cfc97071c4e640c9e00a2895113a (diff) | |
download | rails-a53c3f3878e56c76d5eb5ea03506fc6043312016.tar.gz rails-a53c3f3878e56c76d5eb5ea03506fc6043312016.tar.bz2 rails-a53c3f3878e56c76d5eb5ea03506fc6043312016.zip |
[ci skip] Update Debugging Rails Application guide.
- remove query_stats plugin reference in debugging guide since it is no longer maintained.
- remove exception_logger plugin reference in debugging guide since it is no longer maintained.
- update query_reviewer url to the latest one on github.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/debugging_rails_applications.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index 9f8a3d942c..3651ec5ad8 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -708,10 +708,8 @@ There are some Rails plugins to help you to find errors and debug your applicati * [Footnotes](https://github.com/josevalim/rails-footnotes:) Every Rails page has footnotes that give request information and link back to your source via TextMate. * [Query Trace](https://github.com/ntalbott/query_trace/tree/master:) Adds query origin tracing to your logs. -* [Query Stats](https://github.com/dan-manges/query_stats/tree/master:) A Rails plugin to track database queries. -* [Query Reviewer](http://code.google.com/p/query-reviewer/:) This rails plugin not only runs "EXPLAIN" before each of your select queries in development, but provides a small DIV in the rendered output of each page with the summary of warnings for each query that it analyzed. +* [Query Reviewer](https://github.com/nesquena/query_reviewer:) This rails plugin not only runs "EXPLAIN" before each of your select queries in development, but provides a small DIV in the rendered output of each page with the summary of warnings for each query that it analyzed. * [Exception Notifier](https://github.com/smartinez87/exception_notification/tree/master:) Provides a mailer object and a default set of templates for sending email notifications when errors occur in a Rails application. -* [Exception Logger](https://github.com/defunkt/exception_logger/tree/master:) Logs your Rails exceptions in the database and provides a funky web interface to manage them. References ---------- |