sevgi-showcase 0.73.2 → 0.93.1
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/README.md +5 -0
- data/lib/sevgi/showcase/minitest/script.rb +36 -4
- data/lib/sevgi/showcase/minitest/shell.rb +33 -4
- data/lib/sevgi/showcase/minitest/suite.rb +17 -0
- data/lib/sevgi/showcase/passive.rb +25 -0
- data/lib/sevgi/showcase/version.rb +3 -1
- data/srv/checker-board.sevgi +96 -0
- data/srv/checker-board.svg +117 -0
- data/srv/checker-board.yml +6 -0
- data/srv/gear-wheel.sevgi +22 -0
- data/srv/gear-wheel.svg +11 -0
- data/srv/gear-wheel.yml +3 -0
- data/srv/grid-cells.sevgi +20 -0
- data/srv/grid-cells.svg +34 -0
- data/srv/grid-cells.yml +4 -0
- data/srv/heart-mask.sevgi +14 -0
- data/srv/heart-mask.svg +8 -0
- data/srv/heart-mask.yml +3 -0
- data/srv/meter-face.sevgi +20 -0
- data/srv/meter-face.svg +13 -0
- data/srv/meter-face.yml +3 -0
- data/srv/pacman-pokey.sevgi +17 -0
- data/srv/pacman-pokey.svg +9 -0
- data/srv/pacman-pokey.yml +3 -0
- data/srv/pacman-single.sevgi +17 -0
- data/srv/pacman-single.svg +14 -0
- data/srv/pacman-single.yml +3 -0
- data/srv/ruler-hline.sevgi +52 -0
- data/srv/ruler-hline.svg +443 -0
- data/srv/ruler-hline.yml +3 -0
- data/srv/ruler-line.sevgi +52 -0
- data/srv/ruler-line.svg +443 -0
- data/srv/ruler-line.yml +3 -0
- data/srv/snow-flake.sevgi +17 -0
- data/srv/snow-flake.svg +20 -0
- data/srv/snow-flake.yml +3 -0
- metadata +34 -4
- data/lib/sevgi/showcase/kludge.rb +0 -12
data/srv/ruler-line.svg
ADDED
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="210mm" height="50mm" viewBox="0 0 210 50">
|
|
3
|
+
<style type="text/css">
|
|
4
|
+
<![CDATA[
|
|
5
|
+
.labels {
|
|
6
|
+
fill: black;
|
|
7
|
+
font: 3pt monospace;
|
|
8
|
+
}
|
|
9
|
+
.majors {
|
|
10
|
+
stroke: black;
|
|
11
|
+
stroke-width: 0.2;
|
|
12
|
+
}
|
|
13
|
+
.halves {
|
|
14
|
+
stroke: black;
|
|
15
|
+
stroke-width: 0.1;
|
|
16
|
+
}
|
|
17
|
+
.minors {
|
|
18
|
+
stroke: black;
|
|
19
|
+
stroke-width: 0.1;
|
|
20
|
+
}
|
|
21
|
+
.frame {
|
|
22
|
+
stroke: black;
|
|
23
|
+
stroke-width: 0.05;
|
|
24
|
+
fill: none;
|
|
25
|
+
}
|
|
26
|
+
]]>
|
|
27
|
+
</style>
|
|
28
|
+
<rect id="frame" width="150" height="20" class="frame"/>
|
|
29
|
+
<g id="minors">
|
|
30
|
+
<line x1="0" y1="0" x2="0" y2="2" class="minors"/>
|
|
31
|
+
<line x1="0" y1="20" x2="0" y2="18" class="minors"/>
|
|
32
|
+
<line x1="1" y1="0" x2="1" y2="2" class="minors"/>
|
|
33
|
+
<line x1="1" y1="20" x2="1" y2="18" class="minors"/>
|
|
34
|
+
<line x1="2" y1="0" x2="2" y2="2" class="minors"/>
|
|
35
|
+
<line x1="2" y1="20" x2="2" y2="18" class="minors"/>
|
|
36
|
+
<line x1="3" y1="0" x2="3" y2="2" class="minors"/>
|
|
37
|
+
<line x1="3" y1="20" x2="3" y2="18" class="minors"/>
|
|
38
|
+
<line x1="4" y1="0" x2="4" y2="2" class="minors"/>
|
|
39
|
+
<line x1="4" y1="20" x2="4" y2="18" class="minors"/>
|
|
40
|
+
<line x1="5" y1="0" x2="5" y2="2" class="minors"/>
|
|
41
|
+
<line x1="5" y1="20" x2="5" y2="18" class="minors"/>
|
|
42
|
+
<line x1="6" y1="0" x2="6" y2="2" class="minors"/>
|
|
43
|
+
<line x1="6" y1="20" x2="6" y2="18" class="minors"/>
|
|
44
|
+
<line x1="7" y1="0" x2="7" y2="2" class="minors"/>
|
|
45
|
+
<line x1="7" y1="20" x2="7" y2="18" class="minors"/>
|
|
46
|
+
<line x1="8" y1="0" x2="8" y2="2" class="minors"/>
|
|
47
|
+
<line x1="8" y1="20" x2="8" y2="18" class="minors"/>
|
|
48
|
+
<line x1="9" y1="0" x2="9" y2="2" class="minors"/>
|
|
49
|
+
<line x1="9" y1="20" x2="9" y2="18" class="minors"/>
|
|
50
|
+
<line x1="10" y1="0" x2="10" y2="2" class="minors"/>
|
|
51
|
+
<line x1="10" y1="20" x2="10" y2="18" class="minors"/>
|
|
52
|
+
<line x1="11" y1="0" x2="11" y2="2" class="minors"/>
|
|
53
|
+
<line x1="11" y1="20" x2="11" y2="18" class="minors"/>
|
|
54
|
+
<line x1="12" y1="0" x2="12" y2="2" class="minors"/>
|
|
55
|
+
<line x1="12" y1="20" x2="12" y2="18" class="minors"/>
|
|
56
|
+
<line x1="13" y1="0" x2="13" y2="2" class="minors"/>
|
|
57
|
+
<line x1="13" y1="20" x2="13" y2="18" class="minors"/>
|
|
58
|
+
<line x1="14" y1="0" x2="14" y2="2" class="minors"/>
|
|
59
|
+
<line x1="14" y1="20" x2="14" y2="18" class="minors"/>
|
|
60
|
+
<line x1="15" y1="0" x2="15" y2="2" class="minors"/>
|
|
61
|
+
<line x1="15" y1="20" x2="15" y2="18" class="minors"/>
|
|
62
|
+
<line x1="16" y1="0" x2="16" y2="2" class="minors"/>
|
|
63
|
+
<line x1="16" y1="20" x2="16" y2="18" class="minors"/>
|
|
64
|
+
<line x1="17" y1="0" x2="17" y2="2" class="minors"/>
|
|
65
|
+
<line x1="17" y1="20" x2="17" y2="18" class="minors"/>
|
|
66
|
+
<line x1="18" y1="0" x2="18" y2="2" class="minors"/>
|
|
67
|
+
<line x1="18" y1="20" x2="18" y2="18" class="minors"/>
|
|
68
|
+
<line x1="19" y1="0" x2="19" y2="2" class="minors"/>
|
|
69
|
+
<line x1="19" y1="20" x2="19" y2="18" class="minors"/>
|
|
70
|
+
<line x1="20" y1="0" x2="20" y2="2" class="minors"/>
|
|
71
|
+
<line x1="20" y1="20" x2="20" y2="18" class="minors"/>
|
|
72
|
+
<line x1="21" y1="0" x2="21" y2="2" class="minors"/>
|
|
73
|
+
<line x1="21" y1="20" x2="21" y2="18" class="minors"/>
|
|
74
|
+
<line x1="22" y1="0" x2="22" y2="2" class="minors"/>
|
|
75
|
+
<line x1="22" y1="20" x2="22" y2="18" class="minors"/>
|
|
76
|
+
<line x1="23" y1="0" x2="23" y2="2" class="minors"/>
|
|
77
|
+
<line x1="23" y1="20" x2="23" y2="18" class="minors"/>
|
|
78
|
+
<line x1="24" y1="0" x2="24" y2="2" class="minors"/>
|
|
79
|
+
<line x1="24" y1="20" x2="24" y2="18" class="minors"/>
|
|
80
|
+
<line x1="25" y1="0" x2="25" y2="2" class="minors"/>
|
|
81
|
+
<line x1="25" y1="20" x2="25" y2="18" class="minors"/>
|
|
82
|
+
<line x1="26" y1="0" x2="26" y2="2" class="minors"/>
|
|
83
|
+
<line x1="26" y1="20" x2="26" y2="18" class="minors"/>
|
|
84
|
+
<line x1="27" y1="0" x2="27" y2="2" class="minors"/>
|
|
85
|
+
<line x1="27" y1="20" x2="27" y2="18" class="minors"/>
|
|
86
|
+
<line x1="28" y1="0" x2="28" y2="2" class="minors"/>
|
|
87
|
+
<line x1="28" y1="20" x2="28" y2="18" class="minors"/>
|
|
88
|
+
<line x1="29" y1="0" x2="29" y2="2" class="minors"/>
|
|
89
|
+
<line x1="29" y1="20" x2="29" y2="18" class="minors"/>
|
|
90
|
+
<line x1="30" y1="0" x2="30" y2="2" class="minors"/>
|
|
91
|
+
<line x1="30" y1="20" x2="30" y2="18" class="minors"/>
|
|
92
|
+
<line x1="31" y1="0" x2="31" y2="2" class="minors"/>
|
|
93
|
+
<line x1="31" y1="20" x2="31" y2="18" class="minors"/>
|
|
94
|
+
<line x1="32" y1="0" x2="32" y2="2" class="minors"/>
|
|
95
|
+
<line x1="32" y1="20" x2="32" y2="18" class="minors"/>
|
|
96
|
+
<line x1="33" y1="0" x2="33" y2="2" class="minors"/>
|
|
97
|
+
<line x1="33" y1="20" x2="33" y2="18" class="minors"/>
|
|
98
|
+
<line x1="34" y1="0" x2="34" y2="2" class="minors"/>
|
|
99
|
+
<line x1="34" y1="20" x2="34" y2="18" class="minors"/>
|
|
100
|
+
<line x1="35" y1="0" x2="35" y2="2" class="minors"/>
|
|
101
|
+
<line x1="35" y1="20" x2="35" y2="18" class="minors"/>
|
|
102
|
+
<line x1="36" y1="0" x2="36" y2="2" class="minors"/>
|
|
103
|
+
<line x1="36" y1="20" x2="36" y2="18" class="minors"/>
|
|
104
|
+
<line x1="37" y1="0" x2="37" y2="2" class="minors"/>
|
|
105
|
+
<line x1="37" y1="20" x2="37" y2="18" class="minors"/>
|
|
106
|
+
<line x1="38" y1="0" x2="38" y2="2" class="minors"/>
|
|
107
|
+
<line x1="38" y1="20" x2="38" y2="18" class="minors"/>
|
|
108
|
+
<line x1="39" y1="0" x2="39" y2="2" class="minors"/>
|
|
109
|
+
<line x1="39" y1="20" x2="39" y2="18" class="minors"/>
|
|
110
|
+
<line x1="40" y1="0" x2="40" y2="2" class="minors"/>
|
|
111
|
+
<line x1="40" y1="20" x2="40" y2="18" class="minors"/>
|
|
112
|
+
<line x1="41" y1="0" x2="41" y2="2" class="minors"/>
|
|
113
|
+
<line x1="41" y1="20" x2="41" y2="18" class="minors"/>
|
|
114
|
+
<line x1="42" y1="0" x2="42" y2="2" class="minors"/>
|
|
115
|
+
<line x1="42" y1="20" x2="42" y2="18" class="minors"/>
|
|
116
|
+
<line x1="43" y1="0" x2="43" y2="2" class="minors"/>
|
|
117
|
+
<line x1="43" y1="20" x2="43" y2="18" class="minors"/>
|
|
118
|
+
<line x1="44" y1="0" x2="44" y2="2" class="minors"/>
|
|
119
|
+
<line x1="44" y1="20" x2="44" y2="18" class="minors"/>
|
|
120
|
+
<line x1="45" y1="0" x2="45" y2="2" class="minors"/>
|
|
121
|
+
<line x1="45" y1="20" x2="45" y2="18" class="minors"/>
|
|
122
|
+
<line x1="46" y1="0" x2="46" y2="2" class="minors"/>
|
|
123
|
+
<line x1="46" y1="20" x2="46" y2="18" class="minors"/>
|
|
124
|
+
<line x1="47" y1="0" x2="47" y2="2" class="minors"/>
|
|
125
|
+
<line x1="47" y1="20" x2="47" y2="18" class="minors"/>
|
|
126
|
+
<line x1="48" y1="0" x2="48" y2="2" class="minors"/>
|
|
127
|
+
<line x1="48" y1="20" x2="48" y2="18" class="minors"/>
|
|
128
|
+
<line x1="49" y1="0" x2="49" y2="2" class="minors"/>
|
|
129
|
+
<line x1="49" y1="20" x2="49" y2="18" class="minors"/>
|
|
130
|
+
<line x1="50" y1="0" x2="50" y2="2" class="minors"/>
|
|
131
|
+
<line x1="50" y1="20" x2="50" y2="18" class="minors"/>
|
|
132
|
+
<line x1="51" y1="0" x2="51" y2="2" class="minors"/>
|
|
133
|
+
<line x1="51" y1="20" x2="51" y2="18" class="minors"/>
|
|
134
|
+
<line x1="52" y1="0" x2="52" y2="2" class="minors"/>
|
|
135
|
+
<line x1="52" y1="20" x2="52" y2="18" class="minors"/>
|
|
136
|
+
<line x1="53" y1="0" x2="53" y2="2" class="minors"/>
|
|
137
|
+
<line x1="53" y1="20" x2="53" y2="18" class="minors"/>
|
|
138
|
+
<line x1="54" y1="0" x2="54" y2="2" class="minors"/>
|
|
139
|
+
<line x1="54" y1="20" x2="54" y2="18" class="minors"/>
|
|
140
|
+
<line x1="55" y1="0" x2="55" y2="2" class="minors"/>
|
|
141
|
+
<line x1="55" y1="20" x2="55" y2="18" class="minors"/>
|
|
142
|
+
<line x1="56" y1="0" x2="56" y2="2" class="minors"/>
|
|
143
|
+
<line x1="56" y1="20" x2="56" y2="18" class="minors"/>
|
|
144
|
+
<line x1="57" y1="0" x2="57" y2="2" class="minors"/>
|
|
145
|
+
<line x1="57" y1="20" x2="57" y2="18" class="minors"/>
|
|
146
|
+
<line x1="58" y1="0" x2="58" y2="2" class="minors"/>
|
|
147
|
+
<line x1="58" y1="20" x2="58" y2="18" class="minors"/>
|
|
148
|
+
<line x1="59" y1="0" x2="59" y2="2" class="minors"/>
|
|
149
|
+
<line x1="59" y1="20" x2="59" y2="18" class="minors"/>
|
|
150
|
+
<line x1="60" y1="0" x2="60" y2="2" class="minors"/>
|
|
151
|
+
<line x1="60" y1="20" x2="60" y2="18" class="minors"/>
|
|
152
|
+
<line x1="61" y1="0" x2="61" y2="2" class="minors"/>
|
|
153
|
+
<line x1="61" y1="20" x2="61" y2="18" class="minors"/>
|
|
154
|
+
<line x1="62" y1="0" x2="62" y2="2" class="minors"/>
|
|
155
|
+
<line x1="62" y1="20" x2="62" y2="18" class="minors"/>
|
|
156
|
+
<line x1="63" y1="0" x2="63" y2="2" class="minors"/>
|
|
157
|
+
<line x1="63" y1="20" x2="63" y2="18" class="minors"/>
|
|
158
|
+
<line x1="64" y1="0" x2="64" y2="2" class="minors"/>
|
|
159
|
+
<line x1="64" y1="20" x2="64" y2="18" class="minors"/>
|
|
160
|
+
<line x1="65" y1="0" x2="65" y2="2" class="minors"/>
|
|
161
|
+
<line x1="65" y1="20" x2="65" y2="18" class="minors"/>
|
|
162
|
+
<line x1="66" y1="0" x2="66" y2="2" class="minors"/>
|
|
163
|
+
<line x1="66" y1="20" x2="66" y2="18" class="minors"/>
|
|
164
|
+
<line x1="67" y1="0" x2="67" y2="2" class="minors"/>
|
|
165
|
+
<line x1="67" y1="20" x2="67" y2="18" class="minors"/>
|
|
166
|
+
<line x1="68" y1="0" x2="68" y2="2" class="minors"/>
|
|
167
|
+
<line x1="68" y1="20" x2="68" y2="18" class="minors"/>
|
|
168
|
+
<line x1="69" y1="0" x2="69" y2="2" class="minors"/>
|
|
169
|
+
<line x1="69" y1="20" x2="69" y2="18" class="minors"/>
|
|
170
|
+
<line x1="70" y1="0" x2="70" y2="2" class="minors"/>
|
|
171
|
+
<line x1="70" y1="20" x2="70" y2="18" class="minors"/>
|
|
172
|
+
<line x1="71" y1="0" x2="71" y2="2" class="minors"/>
|
|
173
|
+
<line x1="71" y1="20" x2="71" y2="18" class="minors"/>
|
|
174
|
+
<line x1="72" y1="0" x2="72" y2="2" class="minors"/>
|
|
175
|
+
<line x1="72" y1="20" x2="72" y2="18" class="minors"/>
|
|
176
|
+
<line x1="73" y1="0" x2="73" y2="2" class="minors"/>
|
|
177
|
+
<line x1="73" y1="20" x2="73" y2="18" class="minors"/>
|
|
178
|
+
<line x1="74" y1="0" x2="74" y2="2" class="minors"/>
|
|
179
|
+
<line x1="74" y1="20" x2="74" y2="18" class="minors"/>
|
|
180
|
+
<line x1="75" y1="0" x2="75" y2="2" class="minors"/>
|
|
181
|
+
<line x1="75" y1="20" x2="75" y2="18" class="minors"/>
|
|
182
|
+
<line x1="76" y1="0" x2="76" y2="2" class="minors"/>
|
|
183
|
+
<line x1="76" y1="20" x2="76" y2="18" class="minors"/>
|
|
184
|
+
<line x1="77" y1="0" x2="77" y2="2" class="minors"/>
|
|
185
|
+
<line x1="77" y1="20" x2="77" y2="18" class="minors"/>
|
|
186
|
+
<line x1="78" y1="0" x2="78" y2="2" class="minors"/>
|
|
187
|
+
<line x1="78" y1="20" x2="78" y2="18" class="minors"/>
|
|
188
|
+
<line x1="79" y1="0" x2="79" y2="2" class="minors"/>
|
|
189
|
+
<line x1="79" y1="20" x2="79" y2="18" class="minors"/>
|
|
190
|
+
<line x1="80" y1="0" x2="80" y2="2" class="minors"/>
|
|
191
|
+
<line x1="80" y1="20" x2="80" y2="18" class="minors"/>
|
|
192
|
+
<line x1="81" y1="0" x2="81" y2="2" class="minors"/>
|
|
193
|
+
<line x1="81" y1="20" x2="81" y2="18" class="minors"/>
|
|
194
|
+
<line x1="82" y1="0" x2="82" y2="2" class="minors"/>
|
|
195
|
+
<line x1="82" y1="20" x2="82" y2="18" class="minors"/>
|
|
196
|
+
<line x1="83" y1="0" x2="83" y2="2" class="minors"/>
|
|
197
|
+
<line x1="83" y1="20" x2="83" y2="18" class="minors"/>
|
|
198
|
+
<line x1="84" y1="0" x2="84" y2="2" class="minors"/>
|
|
199
|
+
<line x1="84" y1="20" x2="84" y2="18" class="minors"/>
|
|
200
|
+
<line x1="85" y1="0" x2="85" y2="2" class="minors"/>
|
|
201
|
+
<line x1="85" y1="20" x2="85" y2="18" class="minors"/>
|
|
202
|
+
<line x1="86" y1="0" x2="86" y2="2" class="minors"/>
|
|
203
|
+
<line x1="86" y1="20" x2="86" y2="18" class="minors"/>
|
|
204
|
+
<line x1="87" y1="0" x2="87" y2="2" class="minors"/>
|
|
205
|
+
<line x1="87" y1="20" x2="87" y2="18" class="minors"/>
|
|
206
|
+
<line x1="88" y1="0" x2="88" y2="2" class="minors"/>
|
|
207
|
+
<line x1="88" y1="20" x2="88" y2="18" class="minors"/>
|
|
208
|
+
<line x1="89" y1="0" x2="89" y2="2" class="minors"/>
|
|
209
|
+
<line x1="89" y1="20" x2="89" y2="18" class="minors"/>
|
|
210
|
+
<line x1="90" y1="0" x2="90" y2="2" class="minors"/>
|
|
211
|
+
<line x1="90" y1="20" x2="90" y2="18" class="minors"/>
|
|
212
|
+
<line x1="91" y1="0" x2="91" y2="2" class="minors"/>
|
|
213
|
+
<line x1="91" y1="20" x2="91" y2="18" class="minors"/>
|
|
214
|
+
<line x1="92" y1="0" x2="92" y2="2" class="minors"/>
|
|
215
|
+
<line x1="92" y1="20" x2="92" y2="18" class="minors"/>
|
|
216
|
+
<line x1="93" y1="0" x2="93" y2="2" class="minors"/>
|
|
217
|
+
<line x1="93" y1="20" x2="93" y2="18" class="minors"/>
|
|
218
|
+
<line x1="94" y1="0" x2="94" y2="2" class="minors"/>
|
|
219
|
+
<line x1="94" y1="20" x2="94" y2="18" class="minors"/>
|
|
220
|
+
<line x1="95" y1="0" x2="95" y2="2" class="minors"/>
|
|
221
|
+
<line x1="95" y1="20" x2="95" y2="18" class="minors"/>
|
|
222
|
+
<line x1="96" y1="0" x2="96" y2="2" class="minors"/>
|
|
223
|
+
<line x1="96" y1="20" x2="96" y2="18" class="minors"/>
|
|
224
|
+
<line x1="97" y1="0" x2="97" y2="2" class="minors"/>
|
|
225
|
+
<line x1="97" y1="20" x2="97" y2="18" class="minors"/>
|
|
226
|
+
<line x1="98" y1="0" x2="98" y2="2" class="minors"/>
|
|
227
|
+
<line x1="98" y1="20" x2="98" y2="18" class="minors"/>
|
|
228
|
+
<line x1="99" y1="0" x2="99" y2="2" class="minors"/>
|
|
229
|
+
<line x1="99" y1="20" x2="99" y2="18" class="minors"/>
|
|
230
|
+
<line x1="100" y1="0" x2="100" y2="2" class="minors"/>
|
|
231
|
+
<line x1="100" y1="20" x2="100" y2="18" class="minors"/>
|
|
232
|
+
<line x1="101" y1="0" x2="101" y2="2" class="minors"/>
|
|
233
|
+
<line x1="101" y1="20" x2="101" y2="18" class="minors"/>
|
|
234
|
+
<line x1="102" y1="0" x2="102" y2="2" class="minors"/>
|
|
235
|
+
<line x1="102" y1="20" x2="102" y2="18" class="minors"/>
|
|
236
|
+
<line x1="103" y1="0" x2="103" y2="2" class="minors"/>
|
|
237
|
+
<line x1="103" y1="20" x2="103" y2="18" class="minors"/>
|
|
238
|
+
<line x1="104" y1="0" x2="104" y2="2" class="minors"/>
|
|
239
|
+
<line x1="104" y1="20" x2="104" y2="18" class="minors"/>
|
|
240
|
+
<line x1="105" y1="0" x2="105" y2="2" class="minors"/>
|
|
241
|
+
<line x1="105" y1="20" x2="105" y2="18" class="minors"/>
|
|
242
|
+
<line x1="106" y1="0" x2="106" y2="2" class="minors"/>
|
|
243
|
+
<line x1="106" y1="20" x2="106" y2="18" class="minors"/>
|
|
244
|
+
<line x1="107" y1="0" x2="107" y2="2" class="minors"/>
|
|
245
|
+
<line x1="107" y1="20" x2="107" y2="18" class="minors"/>
|
|
246
|
+
<line x1="108" y1="0" x2="108" y2="2" class="minors"/>
|
|
247
|
+
<line x1="108" y1="20" x2="108" y2="18" class="minors"/>
|
|
248
|
+
<line x1="109" y1="0" x2="109" y2="2" class="minors"/>
|
|
249
|
+
<line x1="109" y1="20" x2="109" y2="18" class="minors"/>
|
|
250
|
+
<line x1="110" y1="0" x2="110" y2="2" class="minors"/>
|
|
251
|
+
<line x1="110" y1="20" x2="110" y2="18" class="minors"/>
|
|
252
|
+
<line x1="111" y1="0" x2="111" y2="2" class="minors"/>
|
|
253
|
+
<line x1="111" y1="20" x2="111" y2="18" class="minors"/>
|
|
254
|
+
<line x1="112" y1="0" x2="112" y2="2" class="minors"/>
|
|
255
|
+
<line x1="112" y1="20" x2="112" y2="18" class="minors"/>
|
|
256
|
+
<line x1="113" y1="0" x2="113" y2="2" class="minors"/>
|
|
257
|
+
<line x1="113" y1="20" x2="113" y2="18" class="minors"/>
|
|
258
|
+
<line x1="114" y1="0" x2="114" y2="2" class="minors"/>
|
|
259
|
+
<line x1="114" y1="20" x2="114" y2="18" class="minors"/>
|
|
260
|
+
<line x1="115" y1="0" x2="115" y2="2" class="minors"/>
|
|
261
|
+
<line x1="115" y1="20" x2="115" y2="18" class="minors"/>
|
|
262
|
+
<line x1="116" y1="0" x2="116" y2="2" class="minors"/>
|
|
263
|
+
<line x1="116" y1="20" x2="116" y2="18" class="minors"/>
|
|
264
|
+
<line x1="117" y1="0" x2="117" y2="2" class="minors"/>
|
|
265
|
+
<line x1="117" y1="20" x2="117" y2="18" class="minors"/>
|
|
266
|
+
<line x1="118" y1="0" x2="118" y2="2" class="minors"/>
|
|
267
|
+
<line x1="118" y1="20" x2="118" y2="18" class="minors"/>
|
|
268
|
+
<line x1="119" y1="0" x2="119" y2="2" class="minors"/>
|
|
269
|
+
<line x1="119" y1="20" x2="119" y2="18" class="minors"/>
|
|
270
|
+
<line x1="120" y1="0" x2="120" y2="2" class="minors"/>
|
|
271
|
+
<line x1="120" y1="20" x2="120" y2="18" class="minors"/>
|
|
272
|
+
<line x1="121" y1="0" x2="121" y2="2" class="minors"/>
|
|
273
|
+
<line x1="121" y1="20" x2="121" y2="18" class="minors"/>
|
|
274
|
+
<line x1="122" y1="0" x2="122" y2="2" class="minors"/>
|
|
275
|
+
<line x1="122" y1="20" x2="122" y2="18" class="minors"/>
|
|
276
|
+
<line x1="123" y1="0" x2="123" y2="2" class="minors"/>
|
|
277
|
+
<line x1="123" y1="20" x2="123" y2="18" class="minors"/>
|
|
278
|
+
<line x1="124" y1="0" x2="124" y2="2" class="minors"/>
|
|
279
|
+
<line x1="124" y1="20" x2="124" y2="18" class="minors"/>
|
|
280
|
+
<line x1="125" y1="0" x2="125" y2="2" class="minors"/>
|
|
281
|
+
<line x1="125" y1="20" x2="125" y2="18" class="minors"/>
|
|
282
|
+
<line x1="126" y1="0" x2="126" y2="2" class="minors"/>
|
|
283
|
+
<line x1="126" y1="20" x2="126" y2="18" class="minors"/>
|
|
284
|
+
<line x1="127" y1="0" x2="127" y2="2" class="minors"/>
|
|
285
|
+
<line x1="127" y1="20" x2="127" y2="18" class="minors"/>
|
|
286
|
+
<line x1="128" y1="0" x2="128" y2="2" class="minors"/>
|
|
287
|
+
<line x1="128" y1="20" x2="128" y2="18" class="minors"/>
|
|
288
|
+
<line x1="129" y1="0" x2="129" y2="2" class="minors"/>
|
|
289
|
+
<line x1="129" y1="20" x2="129" y2="18" class="minors"/>
|
|
290
|
+
<line x1="130" y1="0" x2="130" y2="2" class="minors"/>
|
|
291
|
+
<line x1="130" y1="20" x2="130" y2="18" class="minors"/>
|
|
292
|
+
<line x1="131" y1="0" x2="131" y2="2" class="minors"/>
|
|
293
|
+
<line x1="131" y1="20" x2="131" y2="18" class="minors"/>
|
|
294
|
+
<line x1="132" y1="0" x2="132" y2="2" class="minors"/>
|
|
295
|
+
<line x1="132" y1="20" x2="132" y2="18" class="minors"/>
|
|
296
|
+
<line x1="133" y1="0" x2="133" y2="2" class="minors"/>
|
|
297
|
+
<line x1="133" y1="20" x2="133" y2="18" class="minors"/>
|
|
298
|
+
<line x1="134" y1="0" x2="134" y2="2" class="minors"/>
|
|
299
|
+
<line x1="134" y1="20" x2="134" y2="18" class="minors"/>
|
|
300
|
+
<line x1="135" y1="0" x2="135" y2="2" class="minors"/>
|
|
301
|
+
<line x1="135" y1="20" x2="135" y2="18" class="minors"/>
|
|
302
|
+
<line x1="136" y1="0" x2="136" y2="2" class="minors"/>
|
|
303
|
+
<line x1="136" y1="20" x2="136" y2="18" class="minors"/>
|
|
304
|
+
<line x1="137" y1="0" x2="137" y2="2" class="minors"/>
|
|
305
|
+
<line x1="137" y1="20" x2="137" y2="18" class="minors"/>
|
|
306
|
+
<line x1="138" y1="0" x2="138" y2="2" class="minors"/>
|
|
307
|
+
<line x1="138" y1="20" x2="138" y2="18" class="minors"/>
|
|
308
|
+
<line x1="139" y1="0" x2="139" y2="2" class="minors"/>
|
|
309
|
+
<line x1="139" y1="20" x2="139" y2="18" class="minors"/>
|
|
310
|
+
<line x1="140" y1="0" x2="140" y2="2" class="minors"/>
|
|
311
|
+
<line x1="140" y1="20" x2="140" y2="18" class="minors"/>
|
|
312
|
+
<line x1="141" y1="0" x2="141" y2="2" class="minors"/>
|
|
313
|
+
<line x1="141" y1="20" x2="141" y2="18" class="minors"/>
|
|
314
|
+
<line x1="142" y1="0" x2="142" y2="2" class="minors"/>
|
|
315
|
+
<line x1="142" y1="20" x2="142" y2="18" class="minors"/>
|
|
316
|
+
<line x1="143" y1="0" x2="143" y2="2" class="minors"/>
|
|
317
|
+
<line x1="143" y1="20" x2="143" y2="18" class="minors"/>
|
|
318
|
+
<line x1="144" y1="0" x2="144" y2="2" class="minors"/>
|
|
319
|
+
<line x1="144" y1="20" x2="144" y2="18" class="minors"/>
|
|
320
|
+
<line x1="145" y1="0" x2="145" y2="2" class="minors"/>
|
|
321
|
+
<line x1="145" y1="20" x2="145" y2="18" class="minors"/>
|
|
322
|
+
<line x1="146" y1="0" x2="146" y2="2" class="minors"/>
|
|
323
|
+
<line x1="146" y1="20" x2="146" y2="18" class="minors"/>
|
|
324
|
+
<line x1="147" y1="0" x2="147" y2="2" class="minors"/>
|
|
325
|
+
<line x1="147" y1="20" x2="147" y2="18" class="minors"/>
|
|
326
|
+
<line x1="148" y1="0" x2="148" y2="2" class="minors"/>
|
|
327
|
+
<line x1="148" y1="20" x2="148" y2="18" class="minors"/>
|
|
328
|
+
<line x1="149" y1="0" x2="149" y2="2" class="minors"/>
|
|
329
|
+
<line x1="149" y1="20" x2="149" y2="18" class="minors"/>
|
|
330
|
+
<line x1="150" y1="0" x2="150" y2="2" class="minors"/>
|
|
331
|
+
<line x1="150" y1="20" x2="150" y2="18" class="minors"/>
|
|
332
|
+
</g>
|
|
333
|
+
<g id="halves">
|
|
334
|
+
<line x1="0" y1="0" x2="0" y2="4" class="halves"/>
|
|
335
|
+
<line x1="0" y1="20" x2="0" y2="16" class="halves"/>
|
|
336
|
+
<line x1="5" y1="0" x2="5" y2="4" class="halves"/>
|
|
337
|
+
<line x1="5" y1="20" x2="5" y2="16" class="halves"/>
|
|
338
|
+
<line x1="10" y1="0" x2="10" y2="4" class="halves"/>
|
|
339
|
+
<line x1="10" y1="20" x2="10" y2="16" class="halves"/>
|
|
340
|
+
<line x1="15" y1="0" x2="15" y2="4" class="halves"/>
|
|
341
|
+
<line x1="15" y1="20" x2="15" y2="16" class="halves"/>
|
|
342
|
+
<line x1="20" y1="0" x2="20" y2="4" class="halves"/>
|
|
343
|
+
<line x1="20" y1="20" x2="20" y2="16" class="halves"/>
|
|
344
|
+
<line x1="25" y1="0" x2="25" y2="4" class="halves"/>
|
|
345
|
+
<line x1="25" y1="20" x2="25" y2="16" class="halves"/>
|
|
346
|
+
<line x1="30" y1="0" x2="30" y2="4" class="halves"/>
|
|
347
|
+
<line x1="30" y1="20" x2="30" y2="16" class="halves"/>
|
|
348
|
+
<line x1="35" y1="0" x2="35" y2="4" class="halves"/>
|
|
349
|
+
<line x1="35" y1="20" x2="35" y2="16" class="halves"/>
|
|
350
|
+
<line x1="40" y1="0" x2="40" y2="4" class="halves"/>
|
|
351
|
+
<line x1="40" y1="20" x2="40" y2="16" class="halves"/>
|
|
352
|
+
<line x1="45" y1="0" x2="45" y2="4" class="halves"/>
|
|
353
|
+
<line x1="45" y1="20" x2="45" y2="16" class="halves"/>
|
|
354
|
+
<line x1="50" y1="0" x2="50" y2="4" class="halves"/>
|
|
355
|
+
<line x1="50" y1="20" x2="50" y2="16" class="halves"/>
|
|
356
|
+
<line x1="55" y1="0" x2="55" y2="4" class="halves"/>
|
|
357
|
+
<line x1="55" y1="20" x2="55" y2="16" class="halves"/>
|
|
358
|
+
<line x1="60" y1="0" x2="60" y2="4" class="halves"/>
|
|
359
|
+
<line x1="60" y1="20" x2="60" y2="16" class="halves"/>
|
|
360
|
+
<line x1="65" y1="0" x2="65" y2="4" class="halves"/>
|
|
361
|
+
<line x1="65" y1="20" x2="65" y2="16" class="halves"/>
|
|
362
|
+
<line x1="70" y1="0" x2="70" y2="4" class="halves"/>
|
|
363
|
+
<line x1="70" y1="20" x2="70" y2="16" class="halves"/>
|
|
364
|
+
<line x1="75" y1="0" x2="75" y2="4" class="halves"/>
|
|
365
|
+
<line x1="75" y1="20" x2="75" y2="16" class="halves"/>
|
|
366
|
+
<line x1="80" y1="0" x2="80" y2="4" class="halves"/>
|
|
367
|
+
<line x1="80" y1="20" x2="80" y2="16" class="halves"/>
|
|
368
|
+
<line x1="85" y1="0" x2="85" y2="4" class="halves"/>
|
|
369
|
+
<line x1="85" y1="20" x2="85" y2="16" class="halves"/>
|
|
370
|
+
<line x1="90" y1="0" x2="90" y2="4" class="halves"/>
|
|
371
|
+
<line x1="90" y1="20" x2="90" y2="16" class="halves"/>
|
|
372
|
+
<line x1="95" y1="0" x2="95" y2="4" class="halves"/>
|
|
373
|
+
<line x1="95" y1="20" x2="95" y2="16" class="halves"/>
|
|
374
|
+
<line x1="100" y1="0" x2="100" y2="4" class="halves"/>
|
|
375
|
+
<line x1="100" y1="20" x2="100" y2="16" class="halves"/>
|
|
376
|
+
<line x1="105" y1="0" x2="105" y2="4" class="halves"/>
|
|
377
|
+
<line x1="105" y1="20" x2="105" y2="16" class="halves"/>
|
|
378
|
+
<line x1="110" y1="0" x2="110" y2="4" class="halves"/>
|
|
379
|
+
<line x1="110" y1="20" x2="110" y2="16" class="halves"/>
|
|
380
|
+
<line x1="115" y1="0" x2="115" y2="4" class="halves"/>
|
|
381
|
+
<line x1="115" y1="20" x2="115" y2="16" class="halves"/>
|
|
382
|
+
<line x1="120" y1="0" x2="120" y2="4" class="halves"/>
|
|
383
|
+
<line x1="120" y1="20" x2="120" y2="16" class="halves"/>
|
|
384
|
+
<line x1="125" y1="0" x2="125" y2="4" class="halves"/>
|
|
385
|
+
<line x1="125" y1="20" x2="125" y2="16" class="halves"/>
|
|
386
|
+
<line x1="130" y1="0" x2="130" y2="4" class="halves"/>
|
|
387
|
+
<line x1="130" y1="20" x2="130" y2="16" class="halves"/>
|
|
388
|
+
<line x1="135" y1="0" x2="135" y2="4" class="halves"/>
|
|
389
|
+
<line x1="135" y1="20" x2="135" y2="16" class="halves"/>
|
|
390
|
+
<line x1="140" y1="0" x2="140" y2="4" class="halves"/>
|
|
391
|
+
<line x1="140" y1="20" x2="140" y2="16" class="halves"/>
|
|
392
|
+
<line x1="145" y1="0" x2="145" y2="4" class="halves"/>
|
|
393
|
+
<line x1="145" y1="20" x2="145" y2="16" class="halves"/>
|
|
394
|
+
<line x1="150" y1="0" x2="150" y2="4" class="halves"/>
|
|
395
|
+
<line x1="150" y1="20" x2="150" y2="16" class="halves"/>
|
|
396
|
+
</g>
|
|
397
|
+
<g id="majors">
|
|
398
|
+
<line x1="10" y1="0" x2="10" y2="6" class="majors"/>
|
|
399
|
+
<line x1="10" y1="20" x2="10" y2="14" class="majors"/>
|
|
400
|
+
<line x1="20" y1="0" x2="20" y2="6" class="majors"/>
|
|
401
|
+
<line x1="20" y1="20" x2="20" y2="14" class="majors"/>
|
|
402
|
+
<line x1="30" y1="0" x2="30" y2="6" class="majors"/>
|
|
403
|
+
<line x1="30" y1="20" x2="30" y2="14" class="majors"/>
|
|
404
|
+
<line x1="40" y1="0" x2="40" y2="6" class="majors"/>
|
|
405
|
+
<line x1="40" y1="20" x2="40" y2="14" class="majors"/>
|
|
406
|
+
<line x1="50" y1="0" x2="50" y2="6" class="majors"/>
|
|
407
|
+
<line x1="50" y1="20" x2="50" y2="14" class="majors"/>
|
|
408
|
+
<line x1="60" y1="0" x2="60" y2="6" class="majors"/>
|
|
409
|
+
<line x1="60" y1="20" x2="60" y2="14" class="majors"/>
|
|
410
|
+
<line x1="70" y1="0" x2="70" y2="6" class="majors"/>
|
|
411
|
+
<line x1="70" y1="20" x2="70" y2="14" class="majors"/>
|
|
412
|
+
<line x1="80" y1="0" x2="80" y2="6" class="majors"/>
|
|
413
|
+
<line x1="80" y1="20" x2="80" y2="14" class="majors"/>
|
|
414
|
+
<line x1="90" y1="0" x2="90" y2="6" class="majors"/>
|
|
415
|
+
<line x1="90" y1="20" x2="90" y2="14" class="majors"/>
|
|
416
|
+
<line x1="100" y1="0" x2="100" y2="6" class="majors"/>
|
|
417
|
+
<line x1="100" y1="20" x2="100" y2="14" class="majors"/>
|
|
418
|
+
<line x1="110" y1="0" x2="110" y2="6" class="majors"/>
|
|
419
|
+
<line x1="110" y1="20" x2="110" y2="14" class="majors"/>
|
|
420
|
+
<line x1="120" y1="0" x2="120" y2="6" class="majors"/>
|
|
421
|
+
<line x1="120" y1="20" x2="120" y2="14" class="majors"/>
|
|
422
|
+
<line x1="130" y1="0" x2="130" y2="6" class="majors"/>
|
|
423
|
+
<line x1="130" y1="20" x2="130" y2="14" class="majors"/>
|
|
424
|
+
<line x1="140" y1="0" x2="140" y2="6" class="majors"/>
|
|
425
|
+
<line x1="140" y1="20" x2="140" y2="14" class="majors"/>
|
|
426
|
+
<g id="labels">
|
|
427
|
+
<text text-anchor="middle" x="10" y="11.5" class="labels">1</text>
|
|
428
|
+
<text text-anchor="middle" x="20" y="11.5" class="labels">2</text>
|
|
429
|
+
<text text-anchor="middle" x="30" y="11.5" class="labels">3</text>
|
|
430
|
+
<text text-anchor="middle" x="40" y="11.5" class="labels">4</text>
|
|
431
|
+
<text text-anchor="middle" x="50" y="11.5" class="labels">5</text>
|
|
432
|
+
<text text-anchor="middle" x="60" y="11.5" class="labels">6</text>
|
|
433
|
+
<text text-anchor="middle" x="70" y="11.5" class="labels">7</text>
|
|
434
|
+
<text text-anchor="middle" x="80" y="11.5" class="labels">8</text>
|
|
435
|
+
<text text-anchor="middle" x="90" y="11.5" class="labels">9</text>
|
|
436
|
+
<text text-anchor="middle" x="100" y="11.5" class="labels">10</text>
|
|
437
|
+
<text text-anchor="middle" x="110" y="11.5" class="labels">11</text>
|
|
438
|
+
<text text-anchor="middle" x="120" y="11.5" class="labels">12</text>
|
|
439
|
+
<text text-anchor="middle" x="130" y="11.5" class="labels">13</text>
|
|
440
|
+
<text text-anchor="middle" x="140" y="11.5" class="labels">14</text>
|
|
441
|
+
</g>
|
|
442
|
+
</g>
|
|
443
|
+
</svg>
|
data/srv/ruler-line.yml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env -S ruby -S sevgi
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
# Example taken from: https://svg-tutorial.com/svg/use
|
|
4
|
+
|
|
5
|
+
SVG :minimal, width: 200, height: 200, viewBox: "-100 -100 200 200" do
|
|
6
|
+
path id: "branch", stroke: "#e5c39c", "stroke-width": 5, d: <<~PATH
|
|
7
|
+
M 0 0 L 0 -90
|
|
8
|
+
M 0 -20 L 20 -34
|
|
9
|
+
M 0 -20 L -20 -34
|
|
10
|
+
M 0 -40 L 20 -54
|
|
11
|
+
M 0 -40 L -20 -54
|
|
12
|
+
M 0 -60 L 20 -74
|
|
13
|
+
M 0 -60 L -20 -74
|
|
14
|
+
PATH
|
|
15
|
+
|
|
16
|
+
60.step(300, 60) { use(href: "#branch").Rotate(it) }
|
|
17
|
+
end.Save
|
data/srv/snow-flake.svg
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg width="200" height="200" viewBox="-100 -100 200 200">
|
|
2
|
+
<path
|
|
3
|
+
id="branch"
|
|
4
|
+
stroke="#e5c39c"
|
|
5
|
+
stroke-width="5"
|
|
6
|
+
d="M 0 0 L 0 -90
|
|
7
|
+
M 0 -20 L 20 -34
|
|
8
|
+
M 0 -20 L -20 -34
|
|
9
|
+
M 0 -40 L 20 -54
|
|
10
|
+
M 0 -40 L -20 -54
|
|
11
|
+
M 0 -60 L 20 -74
|
|
12
|
+
M 0 -60 L -20 -74
|
|
13
|
+
"
|
|
14
|
+
/>
|
|
15
|
+
<use href="#branch" transform="rotate(60)"/>
|
|
16
|
+
<use href="#branch" transform="rotate(120)"/>
|
|
17
|
+
<use href="#branch" transform="rotate(180)"/>
|
|
18
|
+
<use href="#branch" transform="rotate(240)"/>
|
|
19
|
+
<use href="#branch" transform="rotate(300)"/>
|
|
20
|
+
</svg>
|
data/srv/snow-flake.yml
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sevgi-showcase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.93.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Recai Oktaş
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.
|
|
18
|
+
version: 0.93.1
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.
|
|
25
|
+
version: 0.93.1
|
|
26
26
|
description: Provides documents and examples to demonstrate the Sevgi toolkit.
|
|
27
27
|
email: roktas@gmail.com
|
|
28
28
|
executables: []
|
|
@@ -31,12 +31,42 @@ extra_rdoc_files: []
|
|
|
31
31
|
files:
|
|
32
32
|
- README.md
|
|
33
33
|
- lib/sevgi/showcase.rb
|
|
34
|
-
- lib/sevgi/showcase/kludge.rb
|
|
35
34
|
- lib/sevgi/showcase/minitest.rb
|
|
36
35
|
- lib/sevgi/showcase/minitest/script.rb
|
|
37
36
|
- lib/sevgi/showcase/minitest/shell.rb
|
|
38
37
|
- lib/sevgi/showcase/minitest/suite.rb
|
|
38
|
+
- lib/sevgi/showcase/passive.rb
|
|
39
39
|
- lib/sevgi/showcase/version.rb
|
|
40
|
+
- srv/checker-board.sevgi
|
|
41
|
+
- srv/checker-board.svg
|
|
42
|
+
- srv/checker-board.yml
|
|
43
|
+
- srv/gear-wheel.sevgi
|
|
44
|
+
- srv/gear-wheel.svg
|
|
45
|
+
- srv/gear-wheel.yml
|
|
46
|
+
- srv/grid-cells.sevgi
|
|
47
|
+
- srv/grid-cells.svg
|
|
48
|
+
- srv/grid-cells.yml
|
|
49
|
+
- srv/heart-mask.sevgi
|
|
50
|
+
- srv/heart-mask.svg
|
|
51
|
+
- srv/heart-mask.yml
|
|
52
|
+
- srv/meter-face.sevgi
|
|
53
|
+
- srv/meter-face.svg
|
|
54
|
+
- srv/meter-face.yml
|
|
55
|
+
- srv/pacman-pokey.sevgi
|
|
56
|
+
- srv/pacman-pokey.svg
|
|
57
|
+
- srv/pacman-pokey.yml
|
|
58
|
+
- srv/pacman-single.sevgi
|
|
59
|
+
- srv/pacman-single.svg
|
|
60
|
+
- srv/pacman-single.yml
|
|
61
|
+
- srv/ruler-hline.sevgi
|
|
62
|
+
- srv/ruler-hline.svg
|
|
63
|
+
- srv/ruler-hline.yml
|
|
64
|
+
- srv/ruler-line.sevgi
|
|
65
|
+
- srv/ruler-line.svg
|
|
66
|
+
- srv/ruler-line.yml
|
|
67
|
+
- srv/snow-flake.sevgi
|
|
68
|
+
- srv/snow-flake.svg
|
|
69
|
+
- srv/snow-flake.yml
|
|
40
70
|
homepage: https://sevgi.roktas.dev
|
|
41
71
|
licenses:
|
|
42
72
|
- GPL-3.0-or-later
|