-
Notifications
You must be signed in to change notification settings - Fork 437
Home
See the Security page.
Better Errors saves the most recent error page displayed at /__better_errors
.
This can be handy if you aren't able to see the error page served up when the exception occurred, eg. if the errored request was an AJAX or curl request.
If your Rails app is running from a shared folder in a VM, the path to your source files from Rails' perspective could be different to the path seen by your editor.
You can adjust the path used to generate open-in-editor links by putting this snippet of code in an initializer:
if defined? BetterErrors
BetterErrors.editor = proc { |full_path, line|
full_path = full_path.sub(Rails.root.to_s, your_local_path)
"my-editor://open?url=file://#{full_path}&line=#{line}"
}
end
If you're working on a project with other developers, your base path may be not be the same as the other developers'.
You can use an environment variable to work around this by replacing your_local_path
in the snippet above with ENV["BETTER_ERRORS_PROJECT_PATH"]
and starting your Rails server like this:
$ BETTER_ERRORS_PROJECT_PATH=/path/to/your/app rails server
Users of RubyMine on OS X can follow the instructions provided at http://devnet.jetbrains.com/message/5477503 to configure Better Errors to open files in RubyMine.