Class: String
Constant Summary collapse
- @@indent =
" "
Instance Method Summary collapse
- #bf ⇒ Object
- #bg(sym) ⇒ Object
- #color(sym) ⇒ Object
- #de_vt100 ⇒ Object
- #ellipsis(n) ⇒ Object
- #indent(n = 1) ⇒ Object
- #terminal_escape ⇒ Object
- #unchomp ⇒ Object
- #unchomp! ⇒ Object
- #underline ⇒ Object
- #unindent ⇒ Object
- #verbatim ⇒ Object
Instance Method Details
#bf ⇒ Object
231 |
# File 'lib/pretty_debug.rb', line 231 def bf; "#{vt100("01".freeze)}#{self}#{vt100}" end |
#bg(sym) ⇒ Object
236 237 238 |
# File 'lib/pretty_debug.rb', line 236 def bg sym; "#{vt100(40+ {black: 0, red: 1, green: 2, yellow: 3, blue: 4, magenta: 5, cyan: 6, white: 7}[sym.to_sym] )}#{self}#{vt100}" end |
#color(sym) ⇒ Object
233 234 235 |
# File 'lib/pretty_debug.rb', line 233 def color sym; "#{vt100(30+ {black: 0, red: 1, green: 2, yellow: 3, blue: 4, magenta: 5, cyan: 6, white: 7}[sym.to_sym] )}#{self}#{vt100}" end |
#de_vt100 ⇒ Object
239 |
# File 'lib/pretty_debug.rb', line 239 def de_vt100; gsub(/\e\[\d*m/, "") end |
#ellipsis(n) ⇒ Object
282 283 284 285 286 287 |
# File 'lib/pretty_debug.rb', line 282 def ellipsis n if length <= n then self elsif n.odd? then "#{slice(0..n/2-3)}...#{slice(-n/2+2..-1)}" else "#{slice(0..n/2-3)}...#{slice(-n/2+1..-1)}" end end |
#indent(n = 1) ⇒ Object
278 |
# File 'lib/pretty_debug.rb', line 278 def indent n = 1; gsub(/^/, @@indent * n) end |
#terminal_escape ⇒ Object
230 |
# File 'lib/pretty_debug.rb', line 230 def terminal_escape; "\"#{self}\"" end |
#unchomp ⇒ Object
280 |
# File 'lib/pretty_debug.rb', line 280 def unchomp; sub(/#$/?\z/, $/) end |
#unchomp! ⇒ Object
281 |
# File 'lib/pretty_debug.rb', line 281 def unchomp!; sub!(/#$/?\z/, $/) end |
#underline ⇒ Object
232 |
# File 'lib/pretty_debug.rb', line 232 def underline; "#{vt100("04".freeze)}#{self}#{vt100}" end |
#unindent ⇒ Object
279 |
# File 'lib/pretty_debug.rb', line 279 def unindent; gsub(/^#{match(/^\s+/)}/, "".freeze).chomp end |
#verbatim ⇒ Object
229 |
# File 'lib/pretty_debug.rb', line 229 def verbatim; bg(:blue) end |