diff options
author | Drew Dara-Abrams <dda@dara-abrams.com> | 2013-06-25 16:35:36 -0600 |
---|---|---|
committer | Drew Dara-Abrams <dda@dara-abrams.com> | 2013-06-27 20:35:21 -0700 |
commit | 5a399dc6faa63b067515a2ae2d7d006c0a8740d7 (patch) | |
tree | 134604a46e0bf0246267ac745d833dfe413afa5b /guides/source | |
parent | dd9d8697466f111299fd9b7cf1cf565f20951e15 (diff) | |
download | rails-5a399dc6faa63b067515a2ae2d7d006c0a8740d7.tar.gz rails-5a399dc6faa63b067515a2ae2d7d006c0a8740d7.tar.bz2 rails-5a399dc6faa63b067515a2ae2d7d006c0a8740d7.zip |
adding additional plugins for debugging [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/debugging_rails_applications.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index 0860e3119d..c17aa64cac 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -661,6 +661,8 @@ There are some Rails plugins to help you to find errors and debug your applicati * [Query Trace](https://github.com/ntalbott/query_trace/tree/master) Adds query origin tracing to your logs. * [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. +* [Better Errors](https://github.com/charliesome/better_errors) Replaces the standard Rails error page with a new one containing more contextual information, like source code and variable inspection. +* [RailsPanel](https://github.com/dejan/rails_panel) Chrome extension for Rails development that will end your tailing of development.log. Have all information about your Rails app requests in the browser - in the Developer Tools panel. Provides insight to db/rendering/total times, parameter list, rendered views and more. References ---------- |