Module: BetterErrors
- Defined in:
- lib/better_errors.rb,
lib/better_errors/repl.rb,
lib/better_errors/rails.rb,
lib/better_errors/version.rb,
lib/better_errors/repl/pry.rb,
lib/better_errors/error_page.rb,
lib/better_errors/middleware.rb,
lib/better_errors/repl/basic.rb,
lib/better_errors/stack_frame.rb,
lib/better_errors/code_formatter.rb
Defined Under Namespace
Classes: Middleware
Constant Summary collapse
- VERSION =
"0.3.2"
Class Attribute Summary collapse
-
.application_root ⇒ String
The path to the root of the application.
-
.logger ⇒ Logger?
The logger to use when logging exception details and backtraces.
Class Method Summary collapse
-
.editor ⇒ Proc
Returns a proc, which when called with a filename and line number argument, returns a URL to open the filename and line in the selected editor.
-
.editor=(editor) ⇒ Object
Configures how Better Errors generates open-in-editor URLs.
Class Attribute Details
.application_root ⇒ String
The path to the root of the application. Better Errors uses this property to determine if a file in a backtrace should be considered an application frame. If you are using Better Errors with Rails, you do not need to set this attribute manually.
21 22 23 |
# File 'lib/better_errors.rb', line 21 def application_root @application_root end |
.logger ⇒ Logger?
The logger to use when logging exception details and backtraces. If you
are using Better Errors with Rails, you do not need to set this attribute
manually. If this attribute is nil
, nothing will be logged.
28 29 30 |
# File 'lib/better_errors.rb', line 28 def logger @logger end |
Class Method Details
.editor ⇒ Proc
Returns a proc, which when called with a filename and line number argument, returns a URL to open the filename and line in the selected editor.
Generates TextMate URLs by default.
BetterErrors.editor["/some/file", 123] # => txmt://open?url=file:///some/file&line=123
46 47 48 |
# File 'lib/better_errors.rb', line 46 def self.editor @editor end |
.BetterErrors.editor=(sym) ⇒ Object .BetterErrors.editor=(str) ⇒ Object .BetterErrors.editor=(proc) ⇒ Object
Configures how Better Errors generates open-in-editor URLs.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/better_errors.rb', line 86 def self.editor=(editor) case editor when :textmate, :txmt, :tm self.editor = "txmt://open?url=file://%{file}&line=%{line}" when :sublime, :subl, :st self.editor = "subl://open?url=file://%{file}&line=%{line}" when :macvim, :mvim self.editor = "mvim://open?url=file://%{file}&line=%{line}" when String self.editor = proc { |file, line| editor % { file: URI.encode_www_form_component(file), line: line } } else if editor.respond_to? :call @editor = editor else raise TypeError, "Expected editor to be a valid editor key, a format string or a callable." end end end |