Class: PrettyDebug
Constant Summary collapse
- Hook =
%w[ initialize method_missing singleton_method_added singleton_method_removed singleton_method_undefined respond_to_missing? extended included method_added method_removed method_undefined const_missing inherited intitialize_copy intitialize_clone intitialize_dup ]
Class Method Summary collapse
- .backtrace_locations(e) ⇒ Object
- .beautify(a) ⇒ Object
- .caller_locations ⇒ Object
- .format(&pr) ⇒ Object
- .message(e) ⇒ Object
- .reject(&pr) ⇒ Object
- .select(&pr) ⇒ Object
Class Method Details
.backtrace_locations(e) ⇒ Object
154 155 156 157 |
# File 'lib/pretty_debug.rb', line 154 def self.backtrace_locations e e.complement_backtrace_locations PrettyArray.new(beautify(e.backtrace_locations)) end |
.beautify(a) ⇒ Object
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/pretty_debug.rb', line 179 def self.beautify a a = a .map{|l| [l.absolute_path, l.lineno, l.label]} .transpose.tap do |_, _, ms| ms.map! do |m| case m when *Hook then "(#{m})" when /\A(rescue in )?block( .*)? in / then "(entered block)".freeze when /\Arescue in / then "".freeze else m end end ms[-1] = "".freeze; ms.rotate!(-1) end.transpose a.reject!{|f, l, m| @reject.call(f, m)} rescue nil a.select!{|f, l, m| @select.call(f, m)} rescue nil a end |
.caller_locations ⇒ Object
158 159 160 |
# File 'lib/pretty_debug.rb', line 158 def self.caller_locations PrettyArray.new(beautify(Kernel.caller_locations)) end |
.format(&pr) ⇒ Object
143 |
# File 'lib/pretty_debug.rb', line 143 def self.format ≺ @format = pr end |
.message(e) ⇒ Object
150 151 152 153 |
# File 'lib/pretty_debug.rb', line 150 def self. e e.complement_backtrace_locations e..dup.tap{|s| s[0] = s[0].upcase unless s.empty?}.sub(/(?<=[^.])\z/, ".".freeze) end |
.reject(&pr) ⇒ Object
135 136 137 138 |
# File 'lib/pretty_debug.rb', line 135 def self.reject &pr reject = @reject @reject = ->(*args){reject.call(*args) or pr.call(*args)} end |
.select(&pr) ⇒ Object
139 140 141 142 |
# File 'lib/pretty_debug.rb', line 139 def self.select &pr select = @select @select = ->(*args){select.call(*args) or pr.call(*args)} end |