aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-06-28 05:19:58 -0700
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-06-28 05:19:58 -0700
commite66c148571ff86144e49f23c43e5dd686e67da29 (patch)
tree036d960bcb371e08944dde3c3dacdc5af9ee2f53 /guides
parentbd277ac6ef67e0af5f40051f7424495d0b4de1ae (diff)
parent5a399dc6faa63b067515a2ae2d7d006c0a8740d7 (diff)
downloadrails-e66c148571ff86144e49f23c43e5dd686e67da29.tar.gz
rails-e66c148571ff86144e49f23c43e5dd686e67da29.tar.bz2
rails-e66c148571ff86144e49f23c43e5dd686e67da29.zip
Merge pull request #11104 from drewda/patch-1
Adding additional plugins to debugging guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/debugging_rails_applications.md2
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
----------