visualize_inheritance 0.0.7 → 0.0.8
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/lib/visualize_inheritance/version.rb +1 -1
- data/lib/visualize_inheritance.rb +7 -7
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 777416f39c0811f8d4d664dc40c3c09a0c085e2c
|
|
4
|
+
data.tar.gz: 2f86e76ea37a85f182b1ab47cdbc7099afe50519
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef72bdc3653e9aeacbbe71bdfe2fb33863d6dd2538d518b4610cffda27df939fe3fbad3563ca12476d3a74b4e8b6a8bdb8a971327ec89aacde12df9872137615
|
|
7
|
+
data.tar.gz: fd03e7bfa43b1dfe4884a807efa47d5b3214c02d9dd53f8d91c6df5ea1b626ce0b279d0572a420d3a993fbfdf28e511b55a827cba05ca35b00d092b72f70ba15
|
|
@@ -2,16 +2,16 @@ require_relative "visualize_inheritance/version"
|
|
|
2
2
|
|
|
3
3
|
module VisualizeInheritance
|
|
4
4
|
|
|
5
|
-
def self.
|
|
6
|
-
File.
|
|
5
|
+
def self.root
|
|
6
|
+
File.dirname __dir__
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
-
def self.
|
|
10
|
-
File.join root, '
|
|
9
|
+
def self.bin
|
|
10
|
+
File.join root, 'bin'
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
-
def self.
|
|
14
|
-
File.
|
|
13
|
+
def self.index
|
|
14
|
+
File.join root, 'lib', 'visualize_inheritance', 'templates', 'index.html'
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
def self.csv
|
|
@@ -20,7 +20,7 @@ module VisualizeInheritance
|
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
def self.write_index
|
|
23
|
-
system("
|
|
23
|
+
system("cp #{index} ./")
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
def self.graph
|