Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 332 Bytes

File metadata and controls

22 lines (16 loc) · 332 Bytes

6.7 DebugHelper

Devuelve una etiqueta pre que tiene un objeto dumping de YAML. Esto crea una forma muy legible para inspeccionar un objeto.

my_hash = { 'first' => 1, 'second' => 'two', 'third' => [1,2,3] }
debug(my_hash)
<pre class='debug_dump'>---
first: 1
second: two
third:
- 1
- 2
- 3
</pre>