Show error traces in production in Rails 3.1
30 Nov
I wanted to be able to see error traces in the browser when I’m the one visiting.
Here’s my hack, dropped into config/initalizers/
1 2 3 4 5 6 7 | if Rails.env == 'production' class ActionDispatch::Request def local? App.developer_ips.include?(remote_ip) end end end |
App.developer_ips is an array of IP addresses that I typically work from.

No comments yet