debug_helper 1.7.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/Gemfile.lock +22 -22
 - data/README.md +848 -218
 - data/lib/debug_helper.rb +79 -160
 - data/lib/debug_helper/array_handler.rb +12 -0
 - data/lib/debug_helper/dir_handler.rb +19 -0
 - data/lib/debug_helper/each_pair_handler.rb +13 -0
 - data/lib/debug_helper/each_with_index_handler.rb +11 -0
 - data/lib/debug_helper/exception_handler.rb +14 -0
 - data/lib/debug_helper/file_handler.rb +29 -0
 - data/lib/debug_helper/generic_handler.rb +12 -0
 - data/lib/debug_helper/handler.rb +102 -0
 - data/lib/debug_helper/hash_handler.rb +19 -0
 - data/lib/debug_helper/io_handler.rb +15 -0
 - data/lib/debug_helper/match_data_handler.rb +17 -0
 - data/lib/debug_helper/object_handler.rb +13 -0
 - data/lib/debug_helper/open_struct_handler.rb +16 -0
 - data/lib/debug_helper/range_handler.rb +14 -0
 - data/lib/debug_helper/regexp_handler.rb +16 -0
 - data/lib/debug_helper/set_handler.rb +12 -0
 - data/lib/debug_helper/string_handler.rb +17 -0
 - data/lib/debug_helper/struct_handler.rb +18 -0
 - data/lib/debug_helper/symbol_handler.rb +15 -0
 - data/lib/debug_helper/version.rb +3 -3
 - data/markdown/readme/Rakefile +36 -6
 - data/markdown/readme/class_inclusions.md +10 -3
 - data/markdown/readme/class_links.md +10 -3
 - data/markdown/readme/classes/array/circular/show.md +4 -2
 - data/markdown/readme/classes/array/circular/show.yaml +4 -2
 - data/markdown/readme/classes/array/mixed/show.md +6 -3
 - data/markdown/readme/classes/array/mixed/show.yaml +6 -3
 - data/markdown/readme/classes/array/nested/show.md +6 -3
 - data/markdown/readme/classes/array/nested/show.yaml +6 -3
 - data/markdown/readme/classes/array/simple/show.md +2 -1
 - data/markdown/readme/classes/array/simple/show.yaml +2 -1
 - data/markdown/readme/classes/dir/simple/show.md +28 -0
 - data/markdown/readme/classes/dir/simple/show.rb +4 -0
 - data/markdown/readme/classes/dir/simple/show.yaml +11 -0
 - data/markdown/readme/classes/dir/simple/template.md +9 -0
 - data/markdown/readme/classes/dir/template.md +3 -0
 - data/markdown/readme/classes/exception/simple/show.md +44 -0
 - data/markdown/readme/classes/exception/simple/show.rb +22 -0
 - data/markdown/readme/classes/exception/simple/show.yaml +9 -0
 - data/markdown/readme/classes/exception/simple/template.md +9 -0
 - data/markdown/readme/classes/exception/template.md +3 -0
 - data/markdown/readme/classes/file/simple/show.md +3 -3
 - data/markdown/readme/classes/file/simple/show.yaml +3 -3
 - data/markdown/readme/classes/hash/circular/show.md +12 -4
 - data/markdown/readme/classes/hash/circular/show.yaml +12 -4
 - data/markdown/readme/classes/hash/mixed/show.md +14 -6
 - data/markdown/readme/classes/hash/mixed/show.yaml +14 -6
 - data/markdown/readme/classes/hash/nested/show.md +24 -9
 - data/markdown/readme/classes/hash/nested/show.yaml +24 -9
 - data/markdown/readme/classes/hash/simple/show.md +10 -4
 - data/markdown/readme/classes/hash/simple/show.yaml +10 -4
 - data/markdown/readme/classes/io/simple/show.md +23 -0
 - data/markdown/readme/classes/io/simple/show.rb +4 -0
 - data/markdown/readme/classes/io/simple/show.yaml +6 -0
 - data/markdown/readme/classes/io/simple/template.md +9 -0
 - data/markdown/readme/classes/io/template.md +3 -0
 - data/markdown/readme/classes/match_data/multiple_captures/show.md +33 -0
 - data/markdown/readme/classes/match_data/multiple_captures/show.rb +4 -0
 - data/markdown/readme/classes/match_data/multiple_captures/show.yaml +16 -0
 - data/markdown/readme/classes/match_data/multiple_captures/template.md +9 -0
 - data/markdown/readme/classes/match_data/named_captures/show.md +31 -0
 - data/markdown/readme/classes/match_data/named_captures/show.rb +4 -0
 - data/markdown/readme/classes/match_data/named_captures/show.yaml +14 -0
 - data/markdown/readme/classes/match_data/named_captures/template.md +9 -0
 - data/markdown/readme/classes/match_data/simple/show.md +25 -0
 - data/markdown/readme/classes/match_data/simple/show.rb +4 -0
 - data/markdown/readme/classes/match_data/simple/show.yaml +8 -0
 - data/markdown/readme/classes/match_data/simple/template.md +9 -0
 - data/markdown/readme/classes/match_data/template.md +7 -0
 - data/markdown/readme/classes/object/object/show.md +23 -0
 - data/markdown/readme/classes/object/object/show.rb +8 -0
 - data/markdown/readme/classes/object/object/show.yaml +2 -0
 - data/markdown/readme/classes/object/object/template.md +9 -0
 - data/markdown/readme/classes/object/template.md +1 -7
 - data/markdown/readme/classes/open_struct/circular/show.md +40 -0
 - data/markdown/readme/classes/open_struct/circular/show.rb +8 -0
 - data/markdown/readme/classes/open_struct/circular/show.yaml +17 -0
 - data/markdown/readme/classes/open_struct/circular/template.md +11 -0
 - data/markdown/readme/classes/open_struct/mixed/show.md +51 -0
 - data/markdown/readme/classes/open_struct/mixed/show.rb +5 -0
 - data/markdown/readme/classes/open_struct/mixed/show.yaml +33 -0
 - data/markdown/readme/classes/open_struct/mixed/template.md +9 -0
 - data/markdown/readme/classes/open_struct/nested/show.md +73 -0
 - data/markdown/readme/classes/open_struct/nested/show.rb +14 -0
 - data/markdown/readme/classes/open_struct/nested/show.yaml +46 -0
 - data/markdown/readme/classes/open_struct/nested/template.md +9 -0
 - data/markdown/readme/classes/open_struct/simple/show.md +41 -0
 - data/markdown/readme/classes/open_struct/simple/show.rb +5 -0
 - data/markdown/readme/classes/open_struct/simple/show.yaml +23 -0
 - data/markdown/readme/classes/open_struct/simple/template.md +9 -0
 - data/markdown/readme/classes/open_struct/template.md +9 -0
 - data/markdown/readme/classes/range/exclude_end/show.md +22 -0
 - data/markdown/readme/classes/range/exclude_end/show.rb +4 -0
 - data/markdown/readme/classes/range/exclude_end/show.yaml +5 -0
 - data/markdown/readme/classes/range/exclude_end/template.md +9 -0
 - data/markdown/readme/classes/range/include_end/show.md +22 -0
 - data/markdown/readme/classes/range/include_end/show.rb +4 -0
 - data/markdown/readme/classes/range/include_end/show.yaml +5 -0
 - data/markdown/readme/classes/range/include_end/template.md +9 -0
 - data/markdown/readme/classes/range/template.md +5 -0
 - data/markdown/readme/classes/regexp/named_captures/show.md +28 -0
 - data/markdown/readme/classes/regexp/named_captures/show.rb +4 -0
 - data/markdown/readme/classes/regexp/named_captures/show.yaml +11 -0
 - data/markdown/readme/classes/regexp/named_captures/template.md +9 -0
 - data/markdown/readme/classes/regexp/simple/show.md +24 -0
 - data/markdown/readme/classes/regexp/simple/show.rb +4 -0
 - data/markdown/readme/classes/regexp/simple/show.yaml +7 -0
 - data/markdown/readme/classes/regexp/simple/template.md +9 -0
 - data/markdown/readme/classes/regexp/template.md +5 -0
 - data/markdown/readme/classes/set/circular/show.md +4 -2
 - data/markdown/readme/classes/set/circular/show.yaml +4 -2
 - data/markdown/readme/classes/set/mixed/show.md +6 -3
 - data/markdown/readme/classes/set/mixed/show.yaml +6 -3
 - data/markdown/readme/classes/set/nested/show.md +6 -3
 - data/markdown/readme/classes/set/nested/show.yaml +6 -3
 - data/markdown/readme/classes/set/simple/show.md +2 -1
 - data/markdown/readme/classes/set/simple/show.yaml +2 -1
 - data/markdown/readme/classes/string/multiline/show.md +2 -1
 - data/markdown/readme/classes/string/multiline/show.yaml +2 -1
 - data/markdown/readme/classes/string/simple/show.md +2 -1
 - data/markdown/readme/classes/string/simple/show.yaml +2 -1
 - data/markdown/readme/classes/struct/circular/show.md +34 -8
 - data/markdown/readme/classes/struct/circular/show.yaml +34 -8
 - data/markdown/readme/classes/struct/mixed/show.md +21 -6
 - data/markdown/readme/classes/struct/mixed/show.yaml +21 -6
 - data/markdown/readme/classes/struct/nested/show.md +36 -9
 - data/markdown/readme/classes/struct/nested/show.yaml +36 -9
 - data/markdown/readme/classes/struct/simple/show.md +17 -4
 - data/markdown/readme/classes/struct/simple/show.yaml +17 -4
 - data/markdown/readme/classes/symbol/simple/show.md +2 -1
 - data/markdown/readme/classes/symbol/simple/show.yaml +2 -1
 - data/markdown/readme/options/depth/show.md +30 -15
 - data/markdown/readme/options/depth/show.yaml +30 -15
 - data/markdown/readme/template.md +8 -8
 - metadata +88 -14
 - data/markdown/readme/classes/object/datetime/show.md +0 -18
 - data/markdown/readme/classes/object/datetime/show.rb +0 -4
 - data/markdown/readme/classes/object/datetime/show.yaml +0 -1
 - data/markdown/readme/classes/object/datetime/template.md +0 -9
 - data/markdown/readme/classes/object/range/show.md +0 -19
 - data/markdown/readme/classes/object/range/show.rb +0 -4
 - data/markdown/readme/classes/object/range/show.yaml +0 -2
 - data/markdown/readme/classes/object/range/template.md +0 -9
 - data/markdown/readme/classes/object/regexp/show.md +0 -19
 - data/markdown/readme/classes/object/regexp/show.rb +0 -4
 - data/markdown/readme/classes/object/regexp/show.yaml +0 -2
 - data/markdown/readme/classes/object/regexp/template.md +0 -9
 
| 
         @@ -1,19 +1,34 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
            MyStruct (message='My mixed struct' 
     | 
| 
      
 2 
     | 
    
         
            +
            MyStruct (message='My mixed struct'):
         
     | 
| 
      
 3 
     | 
    
         
            +
              size: 3
         
     | 
| 
       3 
4 
     | 
    
         
             
              Member 0:
         
     | 
| 
       4 
     | 
    
         
            -
                Name: 
     | 
| 
      
 5 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 6 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 7 
     | 
    
         
            +
                    to_s: a
         
     | 
| 
      
 8 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 9 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       5 
10 
     | 
    
         
             
                Value: Fixnum 0
         
     | 
| 
       6 
11 
     | 
    
         
             
              Member 1:
         
     | 
| 
       7 
     | 
    
         
            -
                Name: 
     | 
| 
      
 12 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 14 
     | 
    
         
            +
                    to_s: b
         
     | 
| 
      
 15 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 16 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       8 
17 
     | 
    
         
             
                Value:
         
     | 
| 
       9 
     | 
    
         
            -
                  String 
     | 
| 
      
 18 
     | 
    
         
            +
                  String:
         
     | 
| 
       10 
19 
     | 
    
         
             
                    to_s: one
         
     | 
| 
      
 20 
     | 
    
         
            +
                    size: 3
         
     | 
| 
       11 
21 
     | 
    
         
             
                    encoding: !ruby/encoding UTF-8
         
     | 
| 
       12 
22 
     | 
    
         
             
                    ascii_only?: true
         
     | 
| 
       13 
23 
     | 
    
         
             
                    bytesize: 3
         
     | 
| 
       14 
24 
     | 
    
         
             
              Member 2:
         
     | 
| 
       15 
     | 
    
         
            -
                Name: 
     | 
| 
      
 25 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 27 
     | 
    
         
            +
                    to_s: c
         
     | 
| 
      
 28 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 29 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       16 
30 
     | 
    
         
             
                Value:
         
     | 
| 
       17 
     | 
    
         
            -
                  Symbol 
     | 
| 
      
 31 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
       18 
32 
     | 
    
         
             
                    to_s: two
         
     | 
| 
      
 33 
     | 
    
         
            +
                    size: 3
         
     | 
| 
       19 
34 
     | 
    
         
             
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
         @@ -19,25 +19,52 @@ The output shows details of the structs. 
     | 
|
| 
       19 
19 
     | 
    
         
             
            ```show.yaml```:
         
     | 
| 
       20 
20 
     | 
    
         
             
            ```yaml
         
     | 
| 
       21 
21 
     | 
    
         
             
            ---
         
     | 
| 
       22 
     | 
    
         
            -
            MyStruct_0 (message='My nested struct' 
     | 
| 
      
 22 
     | 
    
         
            +
            MyStruct_0 (message='My nested struct'):
         
     | 
| 
      
 23 
     | 
    
         
            +
              size: 2
         
     | 
| 
       23 
24 
     | 
    
         
             
              Member 0:
         
     | 
| 
       24 
     | 
    
         
            -
                Name: 
     | 
| 
      
 25 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 27 
     | 
    
         
            +
                    to_s: a
         
     | 
| 
      
 28 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 29 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       25 
30 
     | 
    
         
             
                Value:
         
     | 
| 
       26 
     | 
    
         
            -
                  MyStruct_1 
     | 
| 
      
 31 
     | 
    
         
            +
                  MyStruct_1:
         
     | 
| 
      
 32 
     | 
    
         
            +
                    size: 2
         
     | 
| 
       27 
33 
     | 
    
         
             
                    Member 0:
         
     | 
| 
       28 
     | 
    
         
            -
                      Name: 
     | 
| 
      
 34 
     | 
    
         
            +
                      Name:
         
     | 
| 
      
 35 
     | 
    
         
            +
                        Symbol:
         
     | 
| 
      
 36 
     | 
    
         
            +
                          to_s: c
         
     | 
| 
      
 37 
     | 
    
         
            +
                          size: 1
         
     | 
| 
      
 38 
     | 
    
         
            +
                          encoding: !ruby/encoding US-ASCII
         
     | 
| 
       29 
39 
     | 
    
         
             
                      Value: Fixnum 2
         
     | 
| 
       30 
40 
     | 
    
         
             
                    Member 1:
         
     | 
| 
       31 
     | 
    
         
            -
                      Name: 
     | 
| 
      
 41 
     | 
    
         
            +
                      Name:
         
     | 
| 
      
 42 
     | 
    
         
            +
                        Symbol:
         
     | 
| 
      
 43 
     | 
    
         
            +
                          to_s: d
         
     | 
| 
      
 44 
     | 
    
         
            +
                          size: 1
         
     | 
| 
      
 45 
     | 
    
         
            +
                          encoding: !ruby/encoding US-ASCII
         
     | 
| 
       32 
46 
     | 
    
         
             
                      Value: Fixnum 3
         
     | 
| 
       33 
47 
     | 
    
         
             
              Member 1:
         
     | 
| 
       34 
     | 
    
         
            -
                Name: 
     | 
| 
      
 48 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 49 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 50 
     | 
    
         
            +
                    to_s: b
         
     | 
| 
      
 51 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 52 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       35 
53 
     | 
    
         
             
                Value:
         
     | 
| 
       36 
     | 
    
         
            -
                  MyStruct_1 
     | 
| 
      
 54 
     | 
    
         
            +
                  MyStruct_1:
         
     | 
| 
      
 55 
     | 
    
         
            +
                    size: 2
         
     | 
| 
       37 
56 
     | 
    
         
             
                    Member 0:
         
     | 
| 
       38 
     | 
    
         
            -
                      Name: 
     | 
| 
      
 57 
     | 
    
         
            +
                      Name:
         
     | 
| 
      
 58 
     | 
    
         
            +
                        Symbol:
         
     | 
| 
      
 59 
     | 
    
         
            +
                          to_s: c
         
     | 
| 
      
 60 
     | 
    
         
            +
                          size: 1
         
     | 
| 
      
 61 
     | 
    
         
            +
                          encoding: !ruby/encoding US-ASCII
         
     | 
| 
       39 
62 
     | 
    
         
             
                      Value: Fixnum 4
         
     | 
| 
       40 
63 
     | 
    
         
             
                    Member 1:
         
     | 
| 
       41 
     | 
    
         
            -
                      Name: 
     | 
| 
      
 64 
     | 
    
         
            +
                      Name:
         
     | 
| 
      
 65 
     | 
    
         
            +
                        Symbol:
         
     | 
| 
      
 66 
     | 
    
         
            +
                          to_s: d
         
     | 
| 
      
 67 
     | 
    
         
            +
                          size: 1
         
     | 
| 
      
 68 
     | 
    
         
            +
                          encoding: !ruby/encoding US-ASCII
         
     | 
| 
       42 
69 
     | 
    
         
             
                      Value: Fixnum 5
         
     | 
| 
       43 
70 
     | 
    
         
             
            ```
         
     | 
| 
         @@ -1,22 +1,49 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
            MyStruct_0 (message='My nested struct' 
     | 
| 
      
 2 
     | 
    
         
            +
            MyStruct_0 (message='My nested struct'):
         
     | 
| 
      
 3 
     | 
    
         
            +
              size: 2
         
     | 
| 
       3 
4 
     | 
    
         
             
              Member 0:
         
     | 
| 
       4 
     | 
    
         
            -
                Name: 
     | 
| 
      
 5 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 6 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 7 
     | 
    
         
            +
                    to_s: a
         
     | 
| 
      
 8 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 9 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       5 
10 
     | 
    
         
             
                Value:
         
     | 
| 
       6 
     | 
    
         
            -
                  MyStruct_1 
     | 
| 
      
 11 
     | 
    
         
            +
                  MyStruct_1:
         
     | 
| 
      
 12 
     | 
    
         
            +
                    size: 2
         
     | 
| 
       7 
13 
     | 
    
         
             
                    Member 0:
         
     | 
| 
       8 
     | 
    
         
            -
                      Name: 
     | 
| 
      
 14 
     | 
    
         
            +
                      Name:
         
     | 
| 
      
 15 
     | 
    
         
            +
                        Symbol:
         
     | 
| 
      
 16 
     | 
    
         
            +
                          to_s: c
         
     | 
| 
      
 17 
     | 
    
         
            +
                          size: 1
         
     | 
| 
      
 18 
     | 
    
         
            +
                          encoding: !ruby/encoding US-ASCII
         
     | 
| 
       9 
19 
     | 
    
         
             
                      Value: Fixnum 2
         
     | 
| 
       10 
20 
     | 
    
         
             
                    Member 1:
         
     | 
| 
       11 
     | 
    
         
            -
                      Name: 
     | 
| 
      
 21 
     | 
    
         
            +
                      Name:
         
     | 
| 
      
 22 
     | 
    
         
            +
                        Symbol:
         
     | 
| 
      
 23 
     | 
    
         
            +
                          to_s: d
         
     | 
| 
      
 24 
     | 
    
         
            +
                          size: 1
         
     | 
| 
      
 25 
     | 
    
         
            +
                          encoding: !ruby/encoding US-ASCII
         
     | 
| 
       12 
26 
     | 
    
         
             
                      Value: Fixnum 3
         
     | 
| 
       13 
27 
     | 
    
         
             
              Member 1:
         
     | 
| 
       14 
     | 
    
         
            -
                Name: 
     | 
| 
      
 28 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 29 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 30 
     | 
    
         
            +
                    to_s: b
         
     | 
| 
      
 31 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 32 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       15 
33 
     | 
    
         
             
                Value:
         
     | 
| 
       16 
     | 
    
         
            -
                  MyStruct_1 
     | 
| 
      
 34 
     | 
    
         
            +
                  MyStruct_1:
         
     | 
| 
      
 35 
     | 
    
         
            +
                    size: 2
         
     | 
| 
       17 
36 
     | 
    
         
             
                    Member 0:
         
     | 
| 
       18 
     | 
    
         
            -
                      Name: 
     | 
| 
      
 37 
     | 
    
         
            +
                      Name:
         
     | 
| 
      
 38 
     | 
    
         
            +
                        Symbol:
         
     | 
| 
      
 39 
     | 
    
         
            +
                          to_s: c
         
     | 
| 
      
 40 
     | 
    
         
            +
                          size: 1
         
     | 
| 
      
 41 
     | 
    
         
            +
                          encoding: !ruby/encoding US-ASCII
         
     | 
| 
       19 
42 
     | 
    
         
             
                      Value: Fixnum 4
         
     | 
| 
       20 
43 
     | 
    
         
             
                    Member 1:
         
     | 
| 
       21 
     | 
    
         
            -
                      Name: 
     | 
| 
      
 44 
     | 
    
         
            +
                      Name:
         
     | 
| 
      
 45 
     | 
    
         
            +
                        Symbol:
         
     | 
| 
      
 46 
     | 
    
         
            +
                          to_s: d
         
     | 
| 
      
 47 
     | 
    
         
            +
                          size: 1
         
     | 
| 
      
 48 
     | 
    
         
            +
                          encoding: !ruby/encoding US-ASCII
         
     | 
| 
       22 
49 
     | 
    
         
             
                      Value: Fixnum 5
         
     | 
| 
         @@ -16,14 +16,27 @@ The output shows details of the struct. 
     | 
|
| 
       16 
16 
     | 
    
         
             
            ```show.yaml```:
         
     | 
| 
       17 
17 
     | 
    
         
             
            ```yaml
         
     | 
| 
       18 
18 
     | 
    
         
             
            ---
         
     | 
| 
       19 
     | 
    
         
            -
            MyStruct (message='My simple struct' 
     | 
| 
      
 19 
     | 
    
         
            +
            MyStruct (message='My simple struct'):
         
     | 
| 
      
 20 
     | 
    
         
            +
              size: 3
         
     | 
| 
       20 
21 
     | 
    
         
             
              Member 0:
         
     | 
| 
       21 
     | 
    
         
            -
                Name: 
     | 
| 
      
 22 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 24 
     | 
    
         
            +
                    to_s: a
         
     | 
| 
      
 25 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 26 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       22 
27 
     | 
    
         
             
                Value: Fixnum 0
         
     | 
| 
       23 
28 
     | 
    
         
             
              Member 1:
         
     | 
| 
       24 
     | 
    
         
            -
                Name: 
     | 
| 
      
 29 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 31 
     | 
    
         
            +
                    to_s: b
         
     | 
| 
      
 32 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 33 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       25 
34 
     | 
    
         
             
                Value: Fixnum 1
         
     | 
| 
       26 
35 
     | 
    
         
             
              Member 2:
         
     | 
| 
       27 
     | 
    
         
            -
                Name: 
     | 
| 
      
 36 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 37 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 38 
     | 
    
         
            +
                    to_s: c
         
     | 
| 
      
 39 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 40 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       28 
41 
     | 
    
         
             
                Value: Fixnum 2
         
     | 
| 
       29 
42 
     | 
    
         
             
            ```
         
     | 
| 
         @@ -1,11 +1,24 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
            MyStruct (message='My simple struct' 
     | 
| 
      
 2 
     | 
    
         
            +
            MyStruct (message='My simple struct'):
         
     | 
| 
      
 3 
     | 
    
         
            +
              size: 3
         
     | 
| 
       3 
4 
     | 
    
         
             
              Member 0:
         
     | 
| 
       4 
     | 
    
         
            -
                Name: 
     | 
| 
      
 5 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 6 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 7 
     | 
    
         
            +
                    to_s: a
         
     | 
| 
      
 8 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 9 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       5 
10 
     | 
    
         
             
                Value: Fixnum 0
         
     | 
| 
       6 
11 
     | 
    
         
             
              Member 1:
         
     | 
| 
       7 
     | 
    
         
            -
                Name: 
     | 
| 
      
 12 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 14 
     | 
    
         
            +
                    to_s: b
         
     | 
| 
      
 15 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 16 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       8 
17 
     | 
    
         
             
                Value: Fixnum 1
         
     | 
| 
       9 
18 
     | 
    
         
             
              Member 2:
         
     | 
| 
       10 
     | 
    
         
            -
                Name: 
     | 
| 
      
 19 
     | 
    
         
            +
                Name:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  Symbol:
         
     | 
| 
      
 21 
     | 
    
         
            +
                    to_s: c
         
     | 
| 
      
 22 
     | 
    
         
            +
                    size: 1
         
     | 
| 
      
 23 
     | 
    
         
            +
                    encoding: !ruby/encoding US-ASCII
         
     | 
| 
       11 
24 
     | 
    
         
             
                Value: Fixnum 2
         
     | 
| 
         @@ -26,52 +26,67 @@ The output shows output for various depths. 
     | 
|
| 
       26 
26 
     | 
    
         
             
            ```show.yaml```:
         
     | 
| 
       27 
27 
     | 
    
         
             
            ```yaml
         
     | 
| 
       28 
28 
     | 
    
         
             
            ---
         
     | 
| 
       29 
     | 
    
         
            -
            Array (message='Show depth 1' 
     | 
| 
      
 29 
     | 
    
         
            +
            Array (message='Show depth 1'):
         
     | 
| 
      
 30 
     | 
    
         
            +
              size: 2
         
     | 
| 
       30 
31 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       31 
32 
     | 
    
         
             
              Element 1: Array [1, [2, [3, [4]]]]
         
     | 
| 
       32 
33 
     | 
    
         
             
            ---
         
     | 
| 
       33 
     | 
    
         
            -
            Array (message='Show depth 2' 
     | 
| 
      
 34 
     | 
    
         
            +
            Array (message='Show depth 2'):
         
     | 
| 
      
 35 
     | 
    
         
            +
              size: 2
         
     | 
| 
       34 
36 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       35 
37 
     | 
    
         
             
              Element 1:
         
     | 
| 
       36 
     | 
    
         
            -
                Array 
     | 
| 
      
 38 
     | 
    
         
            +
                Array:
         
     | 
| 
      
 39 
     | 
    
         
            +
                  size: 2
         
     | 
| 
       37 
40 
     | 
    
         
             
                  Element 0: Fixnum 1
         
     | 
| 
       38 
41 
     | 
    
         
             
                  Element 1: Array [2, [3, [4]]]
         
     | 
| 
       39 
42 
     | 
    
         
             
            ---
         
     | 
| 
       40 
     | 
    
         
            -
            Array (message='Show depth 3' 
     | 
| 
      
 43 
     | 
    
         
            +
            Array (message='Show depth 3'):
         
     | 
| 
      
 44 
     | 
    
         
            +
              size: 2
         
     | 
| 
       41 
45 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       42 
46 
     | 
    
         
             
              Element 1:
         
     | 
| 
       43 
     | 
    
         
            -
                Array 
     | 
| 
      
 47 
     | 
    
         
            +
                Array:
         
     | 
| 
      
 48 
     | 
    
         
            +
                  size: 2
         
     | 
| 
       44 
49 
     | 
    
         
             
                  Element 0: Fixnum 1
         
     | 
| 
       45 
50 
     | 
    
         
             
                  Element 1:
         
     | 
| 
       46 
     | 
    
         
            -
                    Array 
     | 
| 
      
 51 
     | 
    
         
            +
                    Array:
         
     | 
| 
      
 52 
     | 
    
         
            +
                      size: 2
         
     | 
| 
       47 
53 
     | 
    
         
             
                      Element 0: Fixnum 2
         
     | 
| 
       48 
54 
     | 
    
         
             
                      Element 1: Array [3, [4]]
         
     | 
| 
       49 
55 
     | 
    
         
             
            ---
         
     | 
| 
       50 
     | 
    
         
            -
            Array (message='Show depth 4' 
     | 
| 
      
 56 
     | 
    
         
            +
            Array (message='Show depth 4'):
         
     | 
| 
      
 57 
     | 
    
         
            +
              size: 2
         
     | 
| 
       51 
58 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       52 
59 
     | 
    
         
             
              Element 1:
         
     | 
| 
       53 
     | 
    
         
            -
                Array 
     | 
| 
      
 60 
     | 
    
         
            +
                Array:
         
     | 
| 
      
 61 
     | 
    
         
            +
                  size: 2
         
     | 
| 
       54 
62 
     | 
    
         
             
                  Element 0: Fixnum 1
         
     | 
| 
       55 
63 
     | 
    
         
             
                  Element 1:
         
     | 
| 
       56 
     | 
    
         
            -
                    Array 
     | 
| 
      
 64 
     | 
    
         
            +
                    Array:
         
     | 
| 
      
 65 
     | 
    
         
            +
                      size: 2
         
     | 
| 
       57 
66 
     | 
    
         
             
                      Element 0: Fixnum 2
         
     | 
| 
       58 
67 
     | 
    
         
             
                      Element 1:
         
     | 
| 
       59 
     | 
    
         
            -
                        Array 
     | 
| 
      
 68 
     | 
    
         
            +
                        Array:
         
     | 
| 
      
 69 
     | 
    
         
            +
                          size: 2
         
     | 
| 
       60 
70 
     | 
    
         
             
                          Element 0: Fixnum 3
         
     | 
| 
       61 
71 
     | 
    
         
             
                          Element 1: Array [4]
         
     | 
| 
       62 
72 
     | 
    
         
             
            ---
         
     | 
| 
       63 
     | 
    
         
            -
            Array (message='Show depth 5' 
     | 
| 
      
 73 
     | 
    
         
            +
            Array (message='Show depth 5'):
         
     | 
| 
      
 74 
     | 
    
         
            +
              size: 2
         
     | 
| 
       64 
75 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       65 
76 
     | 
    
         
             
              Element 1:
         
     | 
| 
       66 
     | 
    
         
            -
                Array 
     | 
| 
      
 77 
     | 
    
         
            +
                Array:
         
     | 
| 
      
 78 
     | 
    
         
            +
                  size: 2
         
     | 
| 
       67 
79 
     | 
    
         
             
                  Element 0: Fixnum 1
         
     | 
| 
       68 
80 
     | 
    
         
             
                  Element 1:
         
     | 
| 
       69 
     | 
    
         
            -
                    Array 
     | 
| 
      
 81 
     | 
    
         
            +
                    Array:
         
     | 
| 
      
 82 
     | 
    
         
            +
                      size: 2
         
     | 
| 
       70 
83 
     | 
    
         
             
                      Element 0: Fixnum 2
         
     | 
| 
       71 
84 
     | 
    
         
             
                      Element 1:
         
     | 
| 
       72 
     | 
    
         
            -
                        Array 
     | 
| 
      
 85 
     | 
    
         
            +
                        Array:
         
     | 
| 
      
 86 
     | 
    
         
            +
                          size: 2
         
     | 
| 
       73 
87 
     | 
    
         
             
                          Element 0: Fixnum 3
         
     | 
| 
       74 
88 
     | 
    
         
             
                          Element 1:
         
     | 
| 
       75 
     | 
    
         
            -
                            Array 
     | 
| 
      
 89 
     | 
    
         
            +
                            Array:
         
     | 
| 
      
 90 
     | 
    
         
            +
                              size: 1
         
     | 
| 
       76 
91 
     | 
    
         
             
                              Element 0: Fixnum 4
         
     | 
| 
       77 
92 
     | 
    
         
             
            ```
         
     | 
| 
         @@ -1,49 +1,64 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
            Array (message='Show depth 1' 
     | 
| 
      
 2 
     | 
    
         
            +
            Array (message='Show depth 1'):
         
     | 
| 
      
 3 
     | 
    
         
            +
              size: 2
         
     | 
| 
       3 
4 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       4 
5 
     | 
    
         
             
              Element 1: Array [1, [2, [3, [4]]]]
         
     | 
| 
       5 
6 
     | 
    
         
             
            ---
         
     | 
| 
       6 
     | 
    
         
            -
            Array (message='Show depth 2' 
     | 
| 
      
 7 
     | 
    
         
            +
            Array (message='Show depth 2'):
         
     | 
| 
      
 8 
     | 
    
         
            +
              size: 2
         
     | 
| 
       7 
9 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       8 
10 
     | 
    
         
             
              Element 1:
         
     | 
| 
       9 
     | 
    
         
            -
                Array 
     | 
| 
      
 11 
     | 
    
         
            +
                Array:
         
     | 
| 
      
 12 
     | 
    
         
            +
                  size: 2
         
     | 
| 
       10 
13 
     | 
    
         
             
                  Element 0: Fixnum 1
         
     | 
| 
       11 
14 
     | 
    
         
             
                  Element 1: Array [2, [3, [4]]]
         
     | 
| 
       12 
15 
     | 
    
         
             
            ---
         
     | 
| 
       13 
     | 
    
         
            -
            Array (message='Show depth 3' 
     | 
| 
      
 16 
     | 
    
         
            +
            Array (message='Show depth 3'):
         
     | 
| 
      
 17 
     | 
    
         
            +
              size: 2
         
     | 
| 
       14 
18 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       15 
19 
     | 
    
         
             
              Element 1:
         
     | 
| 
       16 
     | 
    
         
            -
                Array 
     | 
| 
      
 20 
     | 
    
         
            +
                Array:
         
     | 
| 
      
 21 
     | 
    
         
            +
                  size: 2
         
     | 
| 
       17 
22 
     | 
    
         
             
                  Element 0: Fixnum 1
         
     | 
| 
       18 
23 
     | 
    
         
             
                  Element 1:
         
     | 
| 
       19 
     | 
    
         
            -
                    Array 
     | 
| 
      
 24 
     | 
    
         
            +
                    Array:
         
     | 
| 
      
 25 
     | 
    
         
            +
                      size: 2
         
     | 
| 
       20 
26 
     | 
    
         
             
                      Element 0: Fixnum 2
         
     | 
| 
       21 
27 
     | 
    
         
             
                      Element 1: Array [3, [4]]
         
     | 
| 
       22 
28 
     | 
    
         
             
            ---
         
     | 
| 
       23 
     | 
    
         
            -
            Array (message='Show depth 4' 
     | 
| 
      
 29 
     | 
    
         
            +
            Array (message='Show depth 4'):
         
     | 
| 
      
 30 
     | 
    
         
            +
              size: 2
         
     | 
| 
       24 
31 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       25 
32 
     | 
    
         
             
              Element 1:
         
     | 
| 
       26 
     | 
    
         
            -
                Array 
     | 
| 
      
 33 
     | 
    
         
            +
                Array:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  size: 2
         
     | 
| 
       27 
35 
     | 
    
         
             
                  Element 0: Fixnum 1
         
     | 
| 
       28 
36 
     | 
    
         
             
                  Element 1:
         
     | 
| 
       29 
     | 
    
         
            -
                    Array 
     | 
| 
      
 37 
     | 
    
         
            +
                    Array:
         
     | 
| 
      
 38 
     | 
    
         
            +
                      size: 2
         
     | 
| 
       30 
39 
     | 
    
         
             
                      Element 0: Fixnum 2
         
     | 
| 
       31 
40 
     | 
    
         
             
                      Element 1:
         
     | 
| 
       32 
     | 
    
         
            -
                        Array 
     | 
| 
      
 41 
     | 
    
         
            +
                        Array:
         
     | 
| 
      
 42 
     | 
    
         
            +
                          size: 2
         
     | 
| 
       33 
43 
     | 
    
         
             
                          Element 0: Fixnum 3
         
     | 
| 
       34 
44 
     | 
    
         
             
                          Element 1: Array [4]
         
     | 
| 
       35 
45 
     | 
    
         
             
            ---
         
     | 
| 
       36 
     | 
    
         
            -
            Array (message='Show depth 5' 
     | 
| 
      
 46 
     | 
    
         
            +
            Array (message='Show depth 5'):
         
     | 
| 
      
 47 
     | 
    
         
            +
              size: 2
         
     | 
| 
       37 
48 
     | 
    
         
             
              Element 0: Fixnum 0
         
     | 
| 
       38 
49 
     | 
    
         
             
              Element 1:
         
     | 
| 
       39 
     | 
    
         
            -
                Array 
     | 
| 
      
 50 
     | 
    
         
            +
                Array:
         
     | 
| 
      
 51 
     | 
    
         
            +
                  size: 2
         
     | 
| 
       40 
52 
     | 
    
         
             
                  Element 0: Fixnum 1
         
     | 
| 
       41 
53 
     | 
    
         
             
                  Element 1:
         
     | 
| 
       42 
     | 
    
         
            -
                    Array 
     | 
| 
      
 54 
     | 
    
         
            +
                    Array:
         
     | 
| 
      
 55 
     | 
    
         
            +
                      size: 2
         
     | 
| 
       43 
56 
     | 
    
         
             
                      Element 0: Fixnum 2
         
     | 
| 
       44 
57 
     | 
    
         
             
                      Element 1:
         
     | 
| 
       45 
     | 
    
         
            -
                        Array 
     | 
| 
      
 58 
     | 
    
         
            +
                        Array:
         
     | 
| 
      
 59 
     | 
    
         
            +
                          size: 2
         
     | 
| 
       46 
60 
     | 
    
         
             
                          Element 0: Fixnum 3
         
     | 
| 
       47 
61 
     | 
    
         
             
                          Element 1:
         
     | 
| 
       48 
     | 
    
         
            -
                            Array 
     | 
| 
      
 62 
     | 
    
         
            +
                            Array:
         
     | 
| 
      
 63 
     | 
    
         
            +
                              size: 1
         
     | 
| 
       49 
64 
     | 
    
         
             
                              Element 0: Fixnum 4
         
     | 
    
        data/markdown/readme/template.md
    CHANGED
    
    | 
         @@ -1,15 +1,15 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Debug Helper
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
     | 
    
         
            -
            ## New in Version 1. 
     | 
| 
      
 3 
     | 
    
         
            +
            ## New in Version 1.8
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         
             
            Classes analyzed:
         
     | 
| 
       6 
6 
     | 
    
         | 
| 
       7 
     | 
    
         
            -
            - [ 
     | 
| 
       8 
     | 
    
         
            -
            - [ 
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
            - [ 
     | 
| 
      
 7 
     | 
    
         
            +
            - [Dir](#dir)
         
     | 
| 
      
 8 
     | 
    
         
            +
            - [Exception](#exception)
         
     | 
| 
      
 9 
     | 
    
         
            +
            - [Range](#range)
         
     | 
| 
      
 10 
     | 
    
         
            +
            - [Regexp](#regexp)
         
     | 
| 
      
 11 
     | 
    
         
            +
            - [IO](#io)
         
     | 
| 
      
 12 
     | 
    
         
            +
            - [MatchData](#matchdata)
         
     | 
| 
       13 
13 
     | 
    
         | 
| 
       14 
14 
     | 
    
         
             
            ## About Debug Helper
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
         @@ -25,7 +25,7 @@ This helper assists in debugging by printing an analysis of a given object.  The 
     | 
|
| 
       25 
25 
     | 
    
         | 
| 
       26 
26 
     | 
    
         
             
            For certain classes (see below), the analysis is very detailed.
         
     | 
| 
       27 
27 
     | 
    
         | 
| 
       28 
     | 
    
         
            -
            For the collection classes ```Array```, ```Hash```, and ``` 
     | 
| 
      
 28 
     | 
    
         
            +
            For the collection classes ```Array```, ```Hash```, ```Struct```, ```Set```, and ```OpenStruct```, the analysis is also recursive;  that is, the collection's values are themselves analyzed.
         
     | 
| 
       29 
29 
     | 
    
         | 
| 
       30 
30 
     | 
    
         
             
            You can control the depth of recursion using option ```depth```.  See [Options](#options).
         
     | 
| 
       31 
31 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: debug_helper
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.8.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - burdettelamar
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2018-07- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2018-07-28 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: bundler
         
     | 
| 
         @@ -73,6 +73,25 @@ files: 
     | 
|
| 
       73 
73 
     | 
    
         
             
            - bin/setup
         
     | 
| 
       74 
74 
     | 
    
         
             
            - debug_helper.gemspec
         
     | 
| 
       75 
75 
     | 
    
         
             
            - lib/debug_helper.rb
         
     | 
| 
      
 76 
     | 
    
         
            +
            - lib/debug_helper/array_handler.rb
         
     | 
| 
      
 77 
     | 
    
         
            +
            - lib/debug_helper/dir_handler.rb
         
     | 
| 
      
 78 
     | 
    
         
            +
            - lib/debug_helper/each_pair_handler.rb
         
     | 
| 
      
 79 
     | 
    
         
            +
            - lib/debug_helper/each_with_index_handler.rb
         
     | 
| 
      
 80 
     | 
    
         
            +
            - lib/debug_helper/exception_handler.rb
         
     | 
| 
      
 81 
     | 
    
         
            +
            - lib/debug_helper/file_handler.rb
         
     | 
| 
      
 82 
     | 
    
         
            +
            - lib/debug_helper/generic_handler.rb
         
     | 
| 
      
 83 
     | 
    
         
            +
            - lib/debug_helper/handler.rb
         
     | 
| 
      
 84 
     | 
    
         
            +
            - lib/debug_helper/hash_handler.rb
         
     | 
| 
      
 85 
     | 
    
         
            +
            - lib/debug_helper/io_handler.rb
         
     | 
| 
      
 86 
     | 
    
         
            +
            - lib/debug_helper/match_data_handler.rb
         
     | 
| 
      
 87 
     | 
    
         
            +
            - lib/debug_helper/object_handler.rb
         
     | 
| 
      
 88 
     | 
    
         
            +
            - lib/debug_helper/open_struct_handler.rb
         
     | 
| 
      
 89 
     | 
    
         
            +
            - lib/debug_helper/range_handler.rb
         
     | 
| 
      
 90 
     | 
    
         
            +
            - lib/debug_helper/regexp_handler.rb
         
     | 
| 
      
 91 
     | 
    
         
            +
            - lib/debug_helper/set_handler.rb
         
     | 
| 
      
 92 
     | 
    
         
            +
            - lib/debug_helper/string_handler.rb
         
     | 
| 
      
 93 
     | 
    
         
            +
            - lib/debug_helper/struct_handler.rb
         
     | 
| 
      
 94 
     | 
    
         
            +
            - lib/debug_helper/symbol_handler.rb
         
     | 
| 
       76 
95 
     | 
    
         
             
            - lib/debug_helper/version.rb
         
     | 
| 
       77 
96 
     | 
    
         
             
            - markdown/readme/Rakefile
         
     | 
| 
       78 
97 
     | 
    
         
             
            - markdown/readme/class_inclusions.md
         
     | 
| 
         @@ -94,6 +113,16 @@ files: 
     | 
|
| 
       94 
113 
     | 
    
         
             
            - markdown/readme/classes/array/simple/show.yaml
         
     | 
| 
       95 
114 
     | 
    
         
             
            - markdown/readme/classes/array/simple/template.md
         
     | 
| 
       96 
115 
     | 
    
         
             
            - markdown/readme/classes/array/template.md
         
     | 
| 
      
 116 
     | 
    
         
            +
            - markdown/readme/classes/dir/simple/show.md
         
     | 
| 
      
 117 
     | 
    
         
            +
            - markdown/readme/classes/dir/simple/show.rb
         
     | 
| 
      
 118 
     | 
    
         
            +
            - markdown/readme/classes/dir/simple/show.yaml
         
     | 
| 
      
 119 
     | 
    
         
            +
            - markdown/readme/classes/dir/simple/template.md
         
     | 
| 
      
 120 
     | 
    
         
            +
            - markdown/readme/classes/dir/template.md
         
     | 
| 
      
 121 
     | 
    
         
            +
            - markdown/readme/classes/exception/simple/show.md
         
     | 
| 
      
 122 
     | 
    
         
            +
            - markdown/readme/classes/exception/simple/show.rb
         
     | 
| 
      
 123 
     | 
    
         
            +
            - markdown/readme/classes/exception/simple/show.yaml
         
     | 
| 
      
 124 
     | 
    
         
            +
            - markdown/readme/classes/exception/simple/template.md
         
     | 
| 
      
 125 
     | 
    
         
            +
            - markdown/readme/classes/exception/template.md
         
     | 
| 
       97 
126 
     | 
    
         
             
            - markdown/readme/classes/file/simple/show.md
         
     | 
| 
       98 
127 
     | 
    
         
             
            - markdown/readme/classes/file/simple/show.rb
         
     | 
| 
       99 
128 
     | 
    
         
             
            - markdown/readme/classes/file/simple/show.yaml
         
     | 
| 
         @@ -116,19 +145,64 @@ files: 
     | 
|
| 
       116 
145 
     | 
    
         
             
            - markdown/readme/classes/hash/simple/show.yaml
         
     | 
| 
       117 
146 
     | 
    
         
             
            - markdown/readme/classes/hash/simple/template.md
         
     | 
| 
       118 
147 
     | 
    
         
             
            - markdown/readme/classes/hash/template.md
         
     | 
| 
       119 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       120 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       121 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       122 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       123 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       124 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       125 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       126 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       127 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       128 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       129 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
       130 
     | 
    
         
            -
            - markdown/readme/classes/ 
     | 
| 
      
 148 
     | 
    
         
            +
            - markdown/readme/classes/io/simple/show.md
         
     | 
| 
      
 149 
     | 
    
         
            +
            - markdown/readme/classes/io/simple/show.rb
         
     | 
| 
      
 150 
     | 
    
         
            +
            - markdown/readme/classes/io/simple/show.yaml
         
     | 
| 
      
 151 
     | 
    
         
            +
            - markdown/readme/classes/io/simple/template.md
         
     | 
| 
      
 152 
     | 
    
         
            +
            - markdown/readme/classes/io/template.md
         
     | 
| 
      
 153 
     | 
    
         
            +
            - markdown/readme/classes/match_data/multiple_captures/show.md
         
     | 
| 
      
 154 
     | 
    
         
            +
            - markdown/readme/classes/match_data/multiple_captures/show.rb
         
     | 
| 
      
 155 
     | 
    
         
            +
            - markdown/readme/classes/match_data/multiple_captures/show.yaml
         
     | 
| 
      
 156 
     | 
    
         
            +
            - markdown/readme/classes/match_data/multiple_captures/template.md
         
     | 
| 
      
 157 
     | 
    
         
            +
            - markdown/readme/classes/match_data/named_captures/show.md
         
     | 
| 
      
 158 
     | 
    
         
            +
            - markdown/readme/classes/match_data/named_captures/show.rb
         
     | 
| 
      
 159 
     | 
    
         
            +
            - markdown/readme/classes/match_data/named_captures/show.yaml
         
     | 
| 
      
 160 
     | 
    
         
            +
            - markdown/readme/classes/match_data/named_captures/template.md
         
     | 
| 
      
 161 
     | 
    
         
            +
            - markdown/readme/classes/match_data/simple/show.md
         
     | 
| 
      
 162 
     | 
    
         
            +
            - markdown/readme/classes/match_data/simple/show.rb
         
     | 
| 
      
 163 
     | 
    
         
            +
            - markdown/readme/classes/match_data/simple/show.yaml
         
     | 
| 
      
 164 
     | 
    
         
            +
            - markdown/readme/classes/match_data/simple/template.md
         
     | 
| 
      
 165 
     | 
    
         
            +
            - markdown/readme/classes/match_data/template.md
         
     | 
| 
      
 166 
     | 
    
         
            +
            - markdown/readme/classes/object/object/show.md
         
     | 
| 
      
 167 
     | 
    
         
            +
            - markdown/readme/classes/object/object/show.rb
         
     | 
| 
      
 168 
     | 
    
         
            +
            - markdown/readme/classes/object/object/show.yaml
         
     | 
| 
      
 169 
     | 
    
         
            +
            - markdown/readme/classes/object/object/template.md
         
     | 
| 
       131 
170 
     | 
    
         
             
            - markdown/readme/classes/object/template.md
         
     | 
| 
      
 171 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/circular/show.md
         
     | 
| 
      
 172 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/circular/show.rb
         
     | 
| 
      
 173 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/circular/show.yaml
         
     | 
| 
      
 174 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/circular/template.md
         
     | 
| 
      
 175 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/mixed/show.md
         
     | 
| 
      
 176 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/mixed/show.rb
         
     | 
| 
      
 177 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/mixed/show.yaml
         
     | 
| 
      
 178 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/mixed/template.md
         
     | 
| 
      
 179 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/nested/show.md
         
     | 
| 
      
 180 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/nested/show.rb
         
     | 
| 
      
 181 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/nested/show.yaml
         
     | 
| 
      
 182 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/nested/template.md
         
     | 
| 
      
 183 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/simple/show.md
         
     | 
| 
      
 184 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/simple/show.rb
         
     | 
| 
      
 185 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/simple/show.yaml
         
     | 
| 
      
 186 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/simple/template.md
         
     | 
| 
      
 187 
     | 
    
         
            +
            - markdown/readme/classes/open_struct/template.md
         
     | 
| 
      
 188 
     | 
    
         
            +
            - markdown/readme/classes/range/exclude_end/show.md
         
     | 
| 
      
 189 
     | 
    
         
            +
            - markdown/readme/classes/range/exclude_end/show.rb
         
     | 
| 
      
 190 
     | 
    
         
            +
            - markdown/readme/classes/range/exclude_end/show.yaml
         
     | 
| 
      
 191 
     | 
    
         
            +
            - markdown/readme/classes/range/exclude_end/template.md
         
     | 
| 
      
 192 
     | 
    
         
            +
            - markdown/readme/classes/range/include_end/show.md
         
     | 
| 
      
 193 
     | 
    
         
            +
            - markdown/readme/classes/range/include_end/show.rb
         
     | 
| 
      
 194 
     | 
    
         
            +
            - markdown/readme/classes/range/include_end/show.yaml
         
     | 
| 
      
 195 
     | 
    
         
            +
            - markdown/readme/classes/range/include_end/template.md
         
     | 
| 
      
 196 
     | 
    
         
            +
            - markdown/readme/classes/range/template.md
         
     | 
| 
      
 197 
     | 
    
         
            +
            - markdown/readme/classes/regexp/named_captures/show.md
         
     | 
| 
      
 198 
     | 
    
         
            +
            - markdown/readme/classes/regexp/named_captures/show.rb
         
     | 
| 
      
 199 
     | 
    
         
            +
            - markdown/readme/classes/regexp/named_captures/show.yaml
         
     | 
| 
      
 200 
     | 
    
         
            +
            - markdown/readme/classes/regexp/named_captures/template.md
         
     | 
| 
      
 201 
     | 
    
         
            +
            - markdown/readme/classes/regexp/simple/show.md
         
     | 
| 
      
 202 
     | 
    
         
            +
            - markdown/readme/classes/regexp/simple/show.rb
         
     | 
| 
      
 203 
     | 
    
         
            +
            - markdown/readme/classes/regexp/simple/show.yaml
         
     | 
| 
      
 204 
     | 
    
         
            +
            - markdown/readme/classes/regexp/simple/template.md
         
     | 
| 
      
 205 
     | 
    
         
            +
            - markdown/readme/classes/regexp/template.md
         
     | 
| 
       132 
206 
     | 
    
         
             
            - markdown/readme/classes/set/circular/show.md
         
     | 
| 
       133 
207 
     | 
    
         
             
            - markdown/readme/classes/set/circular/show.rb
         
     | 
| 
       134 
208 
     | 
    
         
             
            - markdown/readme/classes/set/circular/show.yaml
         
     |