Class: Raven::StacktraceInterface::Frame
- Defined in:
- lib/raven/interfaces/stack_trace.rb
Overview
Not actually an interface, but I want to use the same style
Instance Attribute Summary collapse
-
#abs_path ⇒ Object
Returns the value of attribute abs_path.
-
#context_line ⇒ Object
Returns the value of attribute context_line.
-
#function ⇒ Object
Returns the value of attribute function.
-
#in_app ⇒ Object
Returns the value of attribute in_app.
-
#lineno ⇒ Object
Returns the value of attribute lineno.
-
#module ⇒ Object
Returns the value of attribute module.
-
#post_context ⇒ Object
Returns the value of attribute post_context.
-
#pre_context ⇒ Object
Returns the value of attribute pre_context.
-
#vars ⇒ Object
Returns the value of attribute vars.
Instance Method Summary collapse
- #filename ⇒ Object
-
#initialize(*arguments) ⇒ Frame
constructor
A new instance of Frame.
- #longest_load_path ⇒ Object
- #project_root ⇒ Object
- #to_hash(*args) ⇒ Object
- #under_project_root? ⇒ Boolean
Methods inherited from Interface
Constructor Details
#initialize(*arguments) ⇒ Frame
Returns a new instance of Frame.
34 35 36 37 |
# File 'lib/raven/interfaces/stack_trace.rb', line 34 def initialize(*arguments) self.vars, self.pre_context, self.post_context = [], [], [] super(*arguments) end |
Instance Attribute Details
#abs_path ⇒ Object
Returns the value of attribute abs_path.
24 25 26 |
# File 'lib/raven/interfaces/stack_trace.rb', line 24 def abs_path @abs_path end |
#context_line ⇒ Object
Returns the value of attribute context_line.
29 30 31 |
# File 'lib/raven/interfaces/stack_trace.rb', line 29 def context_line @context_line end |
#function ⇒ Object
Returns the value of attribute function.
25 26 27 |
# File 'lib/raven/interfaces/stack_trace.rb', line 25 def function @function end |
#in_app ⇒ Object
Returns the value of attribute in_app.
32 33 34 |
# File 'lib/raven/interfaces/stack_trace.rb', line 32 def in_app @in_app end |
#lineno ⇒ Object
Returns the value of attribute lineno.
31 32 33 |
# File 'lib/raven/interfaces/stack_trace.rb', line 31 def lineno @lineno end |
#module ⇒ Object
Returns the value of attribute module.
30 31 32 |
# File 'lib/raven/interfaces/stack_trace.rb', line 30 def module @module end |
#post_context ⇒ Object
Returns the value of attribute post_context.
28 29 30 |
# File 'lib/raven/interfaces/stack_trace.rb', line 28 def post_context @post_context end |
#pre_context ⇒ Object
Returns the value of attribute pre_context.
27 28 29 |
# File 'lib/raven/interfaces/stack_trace.rb', line 27 def pre_context @pre_context end |
#vars ⇒ Object
Returns the value of attribute vars.
26 27 28 |
# File 'lib/raven/interfaces/stack_trace.rb', line 26 def vars @vars end |
Instance Method Details
#filename ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/raven/interfaces/stack_trace.rb', line 39 def filename return nil if abs_path.nil? prefix = if under_project_root? && in_app project_root elsif under_project_root? longest_load_path || project_root else longest_load_path end prefix ? abs_path[prefix.to_s.chomp(File::SEPARATOR).length + 1..-1] : abs_path end |
#longest_load_path ⇒ Object
62 63 64 |
# File 'lib/raven/interfaces/stack_trace.rb', line 62 def longest_load_path $LOAD_PATH.select { |s| abs_path.start_with?(s.to_s) }.sort_by { |s| s.to_s.length }.last end |
#project_root ⇒ Object
58 59 60 |
# File 'lib/raven/interfaces/stack_trace.rb', line 58 def project_root @project_root ||= Raven.configuration.project_root && Raven.configuration.project_root.to_s end |
#to_hash(*args) ⇒ Object
66 67 68 69 70 71 72 73 74 |
# File 'lib/raven/interfaces/stack_trace.rb', line 66 def to_hash(*args) data = super(*args) data[:filename] = filename data.delete(:vars) unless vars && !vars.empty? data.delete(:pre_context) unless pre_context && !pre_context.empty? data.delete(:post_context) unless post_context && !post_context.empty? data.delete(:context_line) unless context_line && !context_line.empty? data end |
#under_project_root? ⇒ Boolean
54 55 56 |
# File 'lib/raven/interfaces/stack_trace.rb', line 54 def under_project_root? project_root && abs_path.start_with?(project_root) end |