debug_helper 1.6.0 → 1.7.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 +1 -1
- data/README.md +179 -3
- data/lib/debug_helper.rb +17 -3
- data/lib/debug_helper/version.rb +1 -1
- data/markdown/readme/Rakefile +2 -0
- data/markdown/readme/class_inclusions.md +2 -0
- data/markdown/readme/class_links.md +2 -0
- data/markdown/readme/classes/file/simple/show.md +36 -0
- data/markdown/readme/classes/file/simple/show.rb +4 -0
- data/markdown/readme/classes/file/simple/show.yaml +19 -0
- data/markdown/readme/classes/file/simple/template.md +9 -0
- data/markdown/readme/classes/file/template.md +3 -0
- data/markdown/readme/classes/object/datetime/show.md +1 -2
- data/markdown/readme/classes/object/datetime/show.yaml +1 -2
- data/markdown/readme/classes/object/regexp/show.md +1 -1
- data/markdown/readme/classes/object/regexp/show.yaml +1 -1
- data/markdown/readme/classes/set/circular/show.md +29 -0
- data/markdown/readme/classes/set/circular/show.rb +9 -0
- data/markdown/readme/classes/set/circular/show.yaml +5 -0
- data/markdown/readme/classes/set/circular/template.md +11 -0
- data/markdown/readme/classes/set/mixed/show.md +32 -0
- data/markdown/readme/classes/set/mixed/show.rb +6 -0
- data/markdown/readme/classes/set/mixed/show.yaml +13 -0
- data/markdown/readme/classes/set/mixed/template.md +9 -0
- data/markdown/readme/classes/set/nested/show.md +34 -0
- data/markdown/readme/classes/set/nested/show.rb +10 -0
- data/markdown/readme/classes/set/nested/show.yaml +11 -0
- data/markdown/readme/classes/set/nested/template.md +9 -0
- data/markdown/readme/classes/set/simple/show.md +24 -0
- data/markdown/readme/classes/set/simple/show.rb +6 -0
- data/markdown/readme/classes/set/simple/show.yaml +5 -0
- data/markdown/readme/classes/set/simple/template.md +9 -0
- data/markdown/readme/classes/set/template.md +9 -0
- data/markdown/readme/template.md +13 -0
- metadata +24 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 046cfef48272f5af4958be3ef459f40acfbbaf44
|
4
|
+
data.tar.gz: c2fcde6be53604dff5157586373826e78d0b20bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17083bc4f2add3f38ce66b69a100784e9b26af5be6e64386e4a89324549ba4e0cfcc2c6f22c60d5f2d08ae69b0d1f81d86ffcb5462bd5e7b44208466cf7ecd0e
|
7
|
+
data.tar.gz: ff9755d3b0ebee673b81cd0acf624cb4b619eede892b7c208ca326fe7f21028de77c1c0cc5e346452719c63883fd17a4c2352ab82b0212301ac7c2f2f9a8eaa3
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Debug Helper
|
2
2
|
|
3
|
+
## New in Version 1.7
|
4
|
+
|
5
|
+
Classes analyzed:
|
6
|
+
|
7
|
+
- [File](#file)
|
8
|
+
- [Set](#set)
|
9
|
+
|
10
|
+
Options:
|
11
|
+
|
12
|
+
- [```depth```](#option-depth)
|
13
|
+
|
14
|
+
## About Debug Helper
|
15
|
+
|
3
16
|
If (like me), your debugging style is [printf debugging](https://en.wikipedia.org/wiki/Debugging#Techniques), you will have shoved this into your code many times:
|
4
17
|
|
5
18
|
```show_hash.rb```:
|
@@ -33,6 +46,8 @@ Classes treated in detail:
|
|
33
46
|
- [Struct](#struct)
|
34
47
|
- [String](#string)
|
35
48
|
- [Symbol](#symbol)
|
49
|
+
- [File](#file)
|
50
|
+
- [Set](#set)
|
36
51
|
|
37
52
|
Others are treated as:
|
38
53
|
|
@@ -598,6 +613,168 @@ Symbol (message='My symbol' size=11):
|
|
598
613
|
to_s: lorem_ipsum
|
599
614
|
encoding: !ruby/encoding US-ASCII
|
600
615
|
```
|
616
|
+
### File
|
617
|
+
|
618
|
+
#### Simple File
|
619
|
+
|
620
|
+
This example shows a simple file.
|
621
|
+
|
622
|
+
```show.rb```:
|
623
|
+
```ruby
|
624
|
+
require 'debug_helper'
|
625
|
+
|
626
|
+
file = File.new(__FILE__)
|
627
|
+
DebugHelper.show(file, 'My simple file')
|
628
|
+
```
|
629
|
+
|
630
|
+
The output shows details of the file.
|
631
|
+
|
632
|
+
```show.yaml```:
|
633
|
+
```yaml
|
634
|
+
---
|
635
|
+
File (message='My simple file'):
|
636
|
+
absolute_path: C:/Users/Burdette/Documents/GitHub/debug_helper/markdown/readme/classes/file/simple/show.rb
|
637
|
+
atime: 2018-07-13 11:44:18.000000000 -05:00
|
638
|
+
ctime: 2018-07-13 11:41:01.000000000 -05:00
|
639
|
+
executable?: false
|
640
|
+
exist?: true
|
641
|
+
ftype: file
|
642
|
+
mtime: 2018-07-13 11:44:18.000000000 -05:00
|
643
|
+
path: show.rb
|
644
|
+
pipe?: false
|
645
|
+
readable?: true
|
646
|
+
realpath: C:/Users/Burdette/Documents/GitHub/debug_helper/markdown/readme/classes/file/simple/show.rb
|
647
|
+
setgid?: false
|
648
|
+
setuid?: false
|
649
|
+
size: 95
|
650
|
+
socket?: false
|
651
|
+
symlink?: false
|
652
|
+
writable?: true
|
653
|
+
```
|
654
|
+
### Set
|
655
|
+
|
656
|
+
#### Simple Set
|
657
|
+
|
658
|
+
This example shows a simple set of integers.
|
659
|
+
|
660
|
+
```show.rb```:
|
661
|
+
```ruby
|
662
|
+
require 'set'
|
663
|
+
|
664
|
+
require 'debug_helper'
|
665
|
+
|
666
|
+
set = Set.new([5, 10, 15])
|
667
|
+
DebugHelper.show(set, 'My simple set')
|
668
|
+
```
|
669
|
+
|
670
|
+
The output shows details of the set.
|
671
|
+
|
672
|
+
```show.yaml```:
|
673
|
+
```yaml
|
674
|
+
---
|
675
|
+
Set (message='My simple set' size=3):
|
676
|
+
Element 0: Fixnum 5
|
677
|
+
Element 1: Fixnum 10
|
678
|
+
Element 2: Fixnum 15
|
679
|
+
```
|
680
|
+
|
681
|
+
#### Mixed Set
|
682
|
+
|
683
|
+
This example shows a set of mixed values.
|
684
|
+
|
685
|
+
```show.rb```:
|
686
|
+
```ruby
|
687
|
+
require 'debug_helper'
|
688
|
+
|
689
|
+
require 'set'
|
690
|
+
|
691
|
+
set = Set.new([0, 'one', :two])
|
692
|
+
DebugHelper.show(set, 'My mixed set')
|
693
|
+
```
|
694
|
+
|
695
|
+
The output shows details of the set.
|
696
|
+
|
697
|
+
```show.yaml```:
|
698
|
+
```yaml
|
699
|
+
---
|
700
|
+
Set (message='My mixed set' size=3):
|
701
|
+
Element 0: Fixnum 0
|
702
|
+
Element 1:
|
703
|
+
String (size=3):
|
704
|
+
to_s: one
|
705
|
+
encoding: !ruby/encoding UTF-8
|
706
|
+
ascii_only?: true
|
707
|
+
bytesize: 3
|
708
|
+
Element 2:
|
709
|
+
Symbol (size=3):
|
710
|
+
to_s: two
|
711
|
+
encoding: !ruby/encoding US-ASCII
|
712
|
+
```
|
713
|
+
|
714
|
+
#### Nested Sets
|
715
|
+
|
716
|
+
This example shows nested sets.
|
717
|
+
|
718
|
+
```show.rb```:
|
719
|
+
```ruby
|
720
|
+
require 'set'
|
721
|
+
|
722
|
+
require 'debug_helper'
|
723
|
+
|
724
|
+
set = Set.new(
|
725
|
+
[0,
|
726
|
+
Set.new([1, 2]),
|
727
|
+
Set.new([3, 4]),
|
728
|
+
])
|
729
|
+
DebugHelper.show(set, 'My nested sets')
|
730
|
+
```
|
731
|
+
|
732
|
+
The output shows details of the sets.
|
733
|
+
|
734
|
+
```show.yaml```:
|
735
|
+
```yaml
|
736
|
+
---
|
737
|
+
Set (message='My nested sets' size=3):
|
738
|
+
Element 0: Fixnum 0
|
739
|
+
Element 1:
|
740
|
+
Set (size=2):
|
741
|
+
Element 0: Fixnum 1
|
742
|
+
Element 1: Fixnum 2
|
743
|
+
Element 2:
|
744
|
+
Set (size=2):
|
745
|
+
Element 0: Fixnum 3
|
746
|
+
Element 1: Fixnum 4
|
747
|
+
```
|
748
|
+
|
749
|
+
#### Circular Sets
|
750
|
+
|
751
|
+
This example shows sets that make a circular reference.
|
752
|
+
|
753
|
+
```show.rb```:
|
754
|
+
```ruby
|
755
|
+
require 'set'
|
756
|
+
|
757
|
+
require 'debug_helper'
|
758
|
+
|
759
|
+
set_0 = Set.new([])
|
760
|
+
set_1 = Set.new([])
|
761
|
+
set_0.add(set_1)
|
762
|
+
set_1.add(set_0)
|
763
|
+
DebugHelper.show(set_0, 'My circular sets')
|
764
|
+
```
|
765
|
+
|
766
|
+
The output shows details of the sets.
|
767
|
+
|
768
|
+
The circular reference is not followed.
|
769
|
+
|
770
|
+
```show.yaml```:
|
771
|
+
```yaml
|
772
|
+
---
|
773
|
+
Set (message='My circular sets' size=1):
|
774
|
+
Element 0:
|
775
|
+
Set (size=1):
|
776
|
+
Element 0: 'Set #<Set: {#<Set: {#<Set: {...}>}>}>'
|
777
|
+
```
|
601
778
|
### Object
|
602
779
|
|
603
780
|
Classes not mentioned above are not analyzed, but are treated more simply.
|
@@ -620,8 +797,7 @@ The output shows details of the datetime.
|
|
620
797
|
|
621
798
|
```show.yaml```:
|
622
799
|
```yaml
|
623
|
-
--- DateTime (message='My datetime') 2018-07-
|
624
|
-
...
|
800
|
+
--- 'DateTime (message=''My datetime'') #<DateTime: 2018-07-14T10:18:04-05:00 ((2458314j,55084s,502867000n),-18000s,2299161j)>'
|
625
801
|
```
|
626
802
|
|
627
803
|
#### Range
|
@@ -660,7 +836,7 @@ The output shows details of the regexp.
|
|
660
836
|
|
661
837
|
```show.yaml```:
|
662
838
|
```yaml
|
663
|
-
--- Regexp (message='My regexp')
|
839
|
+
--- Regexp (message='My regexp') /foo/
|
664
840
|
...
|
665
841
|
```
|
666
842
|
|
data/lib/debug_helper.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
require 'set'
|
1
2
|
require 'yaml'
|
2
3
|
|
3
4
|
require 'debug_helper/version'
|
@@ -45,10 +46,11 @@ class DebugHelper
|
|
45
46
|
show_array(obj, message, info)
|
46
47
|
when obj.kind_of?(Hash)
|
47
48
|
show_hash(obj, message, info)
|
49
|
+
when obj.kind_of?(Set)
|
50
|
+
show_array(obj, message, info)
|
48
51
|
when obj.kind_of?(Struct)
|
49
52
|
show_struct(obj, message, info)
|
50
53
|
# when obj.kind_of?(Range)
|
51
|
-
# when obj.kind_of?(Set)
|
52
54
|
else
|
53
55
|
show_object(obj, message, info)
|
54
56
|
end
|
@@ -89,7 +91,7 @@ class DebugHelper
|
|
89
91
|
methods = methods_for_object(obj)
|
90
92
|
if methods.nil?
|
91
93
|
message_info = message.nil? ? '' : " (message='#{message}')"
|
92
|
-
"#{obj.class.name}#{message_info} #{obj}"
|
94
|
+
"#{obj.class.name}#{message_info} #{obj.inspect}"
|
93
95
|
else
|
94
96
|
content = {}
|
95
97
|
attrs = {:message => message}
|
@@ -152,11 +154,23 @@ class DebugHelper
|
|
152
154
|
{
|
153
155
|
# The instance forms of some of these require the file to be open.
|
154
156
|
:class => {
|
155
|
-
:
|
157
|
+
:absolute_path => [obj.path],
|
156
158
|
:atime => [obj.path],
|
157
159
|
:ctime => [obj.path],
|
160
|
+
:executable? => [obj.path],
|
161
|
+
:exist? => [obj.path],
|
162
|
+
:ftype => [obj.path],
|
158
163
|
:mtime => [obj.path],
|
164
|
+
:path => [obj.path],
|
165
|
+
:pipe? => [obj.path],
|
166
|
+
:readable? => [obj.path],
|
167
|
+
:realpath => [obj.path],
|
168
|
+
:setgid? => [obj.path],
|
169
|
+
:setuid? => [obj.path],
|
159
170
|
:size => [obj.path],
|
171
|
+
:socket? => [obj.path],
|
172
|
+
:symlink? => [obj.path],
|
173
|
+
:writable? => [obj.path],
|
160
174
|
},
|
161
175
|
:instance => [],
|
162
176
|
}
|
data/lib/debug_helper/version.rb
CHANGED
data/markdown/readme/Rakefile
CHANGED
@@ -0,0 +1,36 @@
|
|
1
|
+
#### Simple File
|
2
|
+
|
3
|
+
This example shows a simple file.
|
4
|
+
|
5
|
+
```show.rb```:
|
6
|
+
```ruby
|
7
|
+
require 'debug_helper'
|
8
|
+
|
9
|
+
file = File.new(__FILE__)
|
10
|
+
DebugHelper.show(file, 'My simple file')
|
11
|
+
```
|
12
|
+
|
13
|
+
The output shows details of the file.
|
14
|
+
|
15
|
+
```show.yaml```:
|
16
|
+
```yaml
|
17
|
+
---
|
18
|
+
File (message='My simple file'):
|
19
|
+
absolute_path: C:/Users/Burdette/Documents/GitHub/debug_helper/markdown/readme/classes/file/simple/show.rb
|
20
|
+
atime: 2018-07-13 11:44:18.000000000 -05:00
|
21
|
+
ctime: 2018-07-13 11:41:01.000000000 -05:00
|
22
|
+
executable?: false
|
23
|
+
exist?: true
|
24
|
+
ftype: file
|
25
|
+
mtime: 2018-07-13 11:44:18.000000000 -05:00
|
26
|
+
path: show.rb
|
27
|
+
pipe?: false
|
28
|
+
readable?: true
|
29
|
+
realpath: C:/Users/Burdette/Documents/GitHub/debug_helper/markdown/readme/classes/file/simple/show.rb
|
30
|
+
setgid?: false
|
31
|
+
setuid?: false
|
32
|
+
size: 95
|
33
|
+
socket?: false
|
34
|
+
symlink?: false
|
35
|
+
writable?: true
|
36
|
+
```
|
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
File (message='My simple file'):
|
3
|
+
absolute_path: C:/Users/Burdette/Documents/GitHub/debug_helper/markdown/readme/classes/file/simple/show.rb
|
4
|
+
atime: 2018-07-13 11:44:18.000000000 -05:00
|
5
|
+
ctime: 2018-07-13 11:41:01.000000000 -05:00
|
6
|
+
executable?: false
|
7
|
+
exist?: true
|
8
|
+
ftype: file
|
9
|
+
mtime: 2018-07-13 11:44:18.000000000 -05:00
|
10
|
+
path: show.rb
|
11
|
+
pipe?: false
|
12
|
+
readable?: true
|
13
|
+
realpath: C:/Users/Burdette/Documents/GitHub/debug_helper/markdown/readme/classes/file/simple/show.rb
|
14
|
+
setgid?: false
|
15
|
+
setuid?: false
|
16
|
+
size: 95
|
17
|
+
socket?: false
|
18
|
+
symlink?: false
|
19
|
+
writable?: true
|
@@ -14,6 +14,5 @@ The output shows details of the datetime.
|
|
14
14
|
|
15
15
|
```show.yaml```:
|
16
16
|
```yaml
|
17
|
-
--- DateTime (message='My datetime') 2018-07-
|
18
|
-
...
|
17
|
+
--- 'DateTime (message=''My datetime'') #<DateTime: 2018-07-14T10:18:04-05:00 ((2458314j,55084s,502867000n),-18000s,2299161j)>'
|
19
18
|
```
|
@@ -1,2 +1 @@
|
|
1
|
-
--- DateTime (message='My datetime') 2018-07-
|
2
|
-
...
|
1
|
+
--- 'DateTime (message=''My datetime'') #<DateTime: 2018-07-14T10:18:04-05:00 ((2458314j,55084s,502867000n),-18000s,2299161j)>'
|
@@ -1,2 +1,2 @@
|
|
1
|
-
--- Regexp (message='My regexp')
|
1
|
+
--- Regexp (message='My regexp') /foo/
|
2
2
|
...
|
@@ -0,0 +1,29 @@
|
|
1
|
+
#### Circular Sets
|
2
|
+
|
3
|
+
This example shows sets that make a circular reference.
|
4
|
+
|
5
|
+
```show.rb```:
|
6
|
+
```ruby
|
7
|
+
require 'set'
|
8
|
+
|
9
|
+
require 'debug_helper'
|
10
|
+
|
11
|
+
set_0 = Set.new([])
|
12
|
+
set_1 = Set.new([])
|
13
|
+
set_0.add(set_1)
|
14
|
+
set_1.add(set_0)
|
15
|
+
DebugHelper.show(set_0, 'My circular sets')
|
16
|
+
```
|
17
|
+
|
18
|
+
The output shows details of the sets.
|
19
|
+
|
20
|
+
The circular reference is not followed.
|
21
|
+
|
22
|
+
```show.yaml```:
|
23
|
+
```yaml
|
24
|
+
---
|
25
|
+
Set (message='My circular sets' size=1):
|
26
|
+
Element 0:
|
27
|
+
Set (size=1):
|
28
|
+
Element 0: 'Set #<Set: {#<Set: {#<Set: {...}>}>}>'
|
29
|
+
```
|
@@ -0,0 +1,32 @@
|
|
1
|
+
#### Mixed Set
|
2
|
+
|
3
|
+
This example shows a set of mixed values.
|
4
|
+
|
5
|
+
```show.rb```:
|
6
|
+
```ruby
|
7
|
+
require 'debug_helper'
|
8
|
+
|
9
|
+
require 'set'
|
10
|
+
|
11
|
+
set = Set.new([0, 'one', :two])
|
12
|
+
DebugHelper.show(set, 'My mixed set')
|
13
|
+
```
|
14
|
+
|
15
|
+
The output shows details of the set.
|
16
|
+
|
17
|
+
```show.yaml```:
|
18
|
+
```yaml
|
19
|
+
---
|
20
|
+
Set (message='My mixed set' size=3):
|
21
|
+
Element 0: Fixnum 0
|
22
|
+
Element 1:
|
23
|
+
String (size=3):
|
24
|
+
to_s: one
|
25
|
+
encoding: !ruby/encoding UTF-8
|
26
|
+
ascii_only?: true
|
27
|
+
bytesize: 3
|
28
|
+
Element 2:
|
29
|
+
Symbol (size=3):
|
30
|
+
to_s: two
|
31
|
+
encoding: !ruby/encoding US-ASCII
|
32
|
+
```
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
Set (message='My mixed set' size=3):
|
3
|
+
Element 0: Fixnum 0
|
4
|
+
Element 1:
|
5
|
+
String (size=3):
|
6
|
+
to_s: one
|
7
|
+
encoding: !ruby/encoding UTF-8
|
8
|
+
ascii_only?: true
|
9
|
+
bytesize: 3
|
10
|
+
Element 2:
|
11
|
+
Symbol (size=3):
|
12
|
+
to_s: two
|
13
|
+
encoding: !ruby/encoding US-ASCII
|
@@ -0,0 +1,34 @@
|
|
1
|
+
#### Nested Sets
|
2
|
+
|
3
|
+
This example shows nested sets.
|
4
|
+
|
5
|
+
```show.rb```:
|
6
|
+
```ruby
|
7
|
+
require 'set'
|
8
|
+
|
9
|
+
require 'debug_helper'
|
10
|
+
|
11
|
+
set = Set.new(
|
12
|
+
[0,
|
13
|
+
Set.new([1, 2]),
|
14
|
+
Set.new([3, 4]),
|
15
|
+
])
|
16
|
+
DebugHelper.show(set, 'My nested sets')
|
17
|
+
```
|
18
|
+
|
19
|
+
The output shows details of the sets.
|
20
|
+
|
21
|
+
```show.yaml```:
|
22
|
+
```yaml
|
23
|
+
---
|
24
|
+
Set (message='My nested sets' size=3):
|
25
|
+
Element 0: Fixnum 0
|
26
|
+
Element 1:
|
27
|
+
Set (size=2):
|
28
|
+
Element 0: Fixnum 1
|
29
|
+
Element 1: Fixnum 2
|
30
|
+
Element 2:
|
31
|
+
Set (size=2):
|
32
|
+
Element 0: Fixnum 3
|
33
|
+
Element 1: Fixnum 4
|
34
|
+
```
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#### Simple Set
|
2
|
+
|
3
|
+
This example shows a simple set of integers.
|
4
|
+
|
5
|
+
```show.rb```:
|
6
|
+
```ruby
|
7
|
+
require 'set'
|
8
|
+
|
9
|
+
require 'debug_helper'
|
10
|
+
|
11
|
+
set = Set.new([5, 10, 15])
|
12
|
+
DebugHelper.show(set, 'My simple set')
|
13
|
+
```
|
14
|
+
|
15
|
+
The output shows details of the set.
|
16
|
+
|
17
|
+
```show.yaml```:
|
18
|
+
```yaml
|
19
|
+
---
|
20
|
+
Set (message='My simple set' size=3):
|
21
|
+
Element 0: Fixnum 5
|
22
|
+
Element 1: Fixnum 10
|
23
|
+
Element 2: Fixnum 15
|
24
|
+
```
|
data/markdown/readme/template.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Debug Helper
|
2
2
|
|
3
|
+
## New in Version 1.7
|
4
|
+
|
5
|
+
Classes analyzed:
|
6
|
+
|
7
|
+
- [File](#file)
|
8
|
+
- [Set](#set)
|
9
|
+
|
10
|
+
Options:
|
11
|
+
|
12
|
+
- [```depth```](#option-depth)
|
13
|
+
|
14
|
+
## About Debug Helper
|
15
|
+
|
3
16
|
If (like me), your debugging style is [printf debugging](https://en.wikipedia.org/wiki/Debugging#Techniques), you will have shoved this into your code many times:
|
4
17
|
|
5
18
|
@[ruby](show_hash.rb)
|
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.7.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-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -94,6 +94,11 @@ files:
|
|
94
94
|
- markdown/readme/classes/array/simple/show.yaml
|
95
95
|
- markdown/readme/classes/array/simple/template.md
|
96
96
|
- markdown/readme/classes/array/template.md
|
97
|
+
- markdown/readme/classes/file/simple/show.md
|
98
|
+
- markdown/readme/classes/file/simple/show.rb
|
99
|
+
- markdown/readme/classes/file/simple/show.yaml
|
100
|
+
- markdown/readme/classes/file/simple/template.md
|
101
|
+
- markdown/readme/classes/file/template.md
|
97
102
|
- markdown/readme/classes/hash/circular/show.md
|
98
103
|
- markdown/readme/classes/hash/circular/show.rb
|
99
104
|
- markdown/readme/classes/hash/circular/show.yaml
|
@@ -124,6 +129,23 @@ files:
|
|
124
129
|
- markdown/readme/classes/object/regexp/show.yaml
|
125
130
|
- markdown/readme/classes/object/regexp/template.md
|
126
131
|
- markdown/readme/classes/object/template.md
|
132
|
+
- markdown/readme/classes/set/circular/show.md
|
133
|
+
- markdown/readme/classes/set/circular/show.rb
|
134
|
+
- markdown/readme/classes/set/circular/show.yaml
|
135
|
+
- markdown/readme/classes/set/circular/template.md
|
136
|
+
- markdown/readme/classes/set/mixed/show.md
|
137
|
+
- markdown/readme/classes/set/mixed/show.rb
|
138
|
+
- markdown/readme/classes/set/mixed/show.yaml
|
139
|
+
- markdown/readme/classes/set/mixed/template.md
|
140
|
+
- markdown/readme/classes/set/nested/show.md
|
141
|
+
- markdown/readme/classes/set/nested/show.rb
|
142
|
+
- markdown/readme/classes/set/nested/show.yaml
|
143
|
+
- markdown/readme/classes/set/nested/template.md
|
144
|
+
- markdown/readme/classes/set/simple/show.md
|
145
|
+
- markdown/readme/classes/set/simple/show.rb
|
146
|
+
- markdown/readme/classes/set/simple/show.yaml
|
147
|
+
- markdown/readme/classes/set/simple/template.md
|
148
|
+
- markdown/readme/classes/set/template.md
|
127
149
|
- markdown/readme/classes/string/multiline/show.md
|
128
150
|
- markdown/readme/classes/string/multiline/show.rb
|
129
151
|
- markdown/readme/classes/string/multiline/show.yaml
|