intranet-core 2.4.1 → 2.4.5
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/intranet/core/version.rb +1 -1
- data/lib/intranet/resources/www/nav.js +5 -1
- data/lib/intranet/resources/www/style.css +236 -200
- data/spec/core_extensions/tree_spec.rb +23 -22
- data/spec/spec_helper.rb +6 -8
- metadata +18 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d768f3eff39ce79e45930e74577e9d232245f2e475a7ad1e746b9be79f695181
|
4
|
+
data.tar.gz: 0540662becbc8df7d0432985b3a560f87a7acd27634811543d0ae5e1d02f87c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a941c459c619d32896fa340e383f03cf9018fb7283da470e9611f591688704050b4553b9bbf75248592eb548e48a209b8b2be65b91aa1c74225d09d53eb0d3a4
|
7
|
+
data.tar.gz: 395367b08e462a97e060165c2e17771f1e365bba3cba0d88514f84138cd36cd15fa01f0fb4a129ba46fefd5d21af73ca4982f1bcb80f39e2e2f95a24b8f1dc96
|
@@ -13,4 +13,8 @@ closeMenu.addEventListener('click', function() { navMenu.style.width = ''; });
|
|
13
13
|
const openModal = document.getElementById('openmodal');
|
14
14
|
const modal = document.getElementById('modal');
|
15
15
|
openModal.addEventListener('click', function() { modal.style.display = 'block'; });
|
16
|
-
modal.addEventListener('click', function() {
|
16
|
+
modal.addEventListener('click', function(event) {
|
17
|
+
if (event.target == modal) {
|
18
|
+
modal.style.display = 'none';
|
19
|
+
}
|
20
|
+
});
|
@@ -6,260 +6,300 @@
|
|
6
6
|
/***************************************** External Fonts *****************************************/
|
7
7
|
|
8
8
|
@font-face {
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
9
|
+
font-family: "Source Sans Pro";
|
10
|
+
font-style: normal;
|
11
|
+
font-weight: 300;
|
12
|
+
src: url("fonts/SourceSansPro.woff2") format("woff2");
|
13
|
+
unicode-range: U+0-FF, U+131, U+152-153, U+2C6, U+2DA, U+2DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
14
14
|
}
|
15
15
|
|
16
16
|
/***************************************** General design *****************************************/
|
17
17
|
|
18
18
|
body, html {
|
19
|
-
|
20
|
-
|
21
|
-
|
19
|
+
padding: 0px;
|
20
|
+
margin: 0px;
|
21
|
+
height: 100%;
|
22
22
|
}
|
23
23
|
body {
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
24
|
+
background: #f7f8fa;
|
25
|
+
font-family: "Source Sans Pro", Cantarell, sans-serif;
|
26
|
+
color: black;
|
27
|
+
font-size: 1.0rem;
|
28
|
+
-moz-text-size-adjust: none;
|
29
|
+
-webkit-text-size-adjust: none;
|
30
|
+
-ms-text-size-adjust: none;
|
31
|
+
font-size-adjust: none;
|
32
32
|
}
|
33
33
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
34
|
+
h1 {
|
35
|
+
font-size: 2.25em;
|
36
|
+
text-align: center;
|
37
|
+
margin: 1.5em 0px 2em; /* top sides bottom */
|
38
38
|
}
|
39
39
|
|
40
|
-
|
40
|
+
h2 {
|
41
|
+
font-size: 2em;
|
42
|
+
text-align: center;
|
43
|
+
margin: 1.5em 0px 2em; /* top sides bottom */
|
44
|
+
}
|
41
45
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
width: 100%;
|
46
|
-
margin: auto;
|
47
|
-
background-color: #1e262b;
|
48
|
-
color: white;
|
49
|
-
z-index: 2;
|
50
|
-
}
|
51
|
-
header h1 {
|
52
|
-
float: left;
|
53
|
-
font-size: 2.25em;
|
54
|
-
font-weight: 500;
|
55
|
-
margin: 0px;
|
56
|
-
padding: 5px 20px 8px; /* top sides bottom */
|
46
|
+
h3 {
|
47
|
+
font-size: 1.3em;
|
48
|
+
margin: 3em 0px 1em; /* top sides bottom */
|
57
49
|
}
|
58
|
-
|
59
|
-
|
60
|
-
|
50
|
+
|
51
|
+
h4 {
|
52
|
+
font-size: 1.1em;
|
53
|
+
margin: 1em 0px 1em;
|
61
54
|
}
|
62
|
-
|
63
|
-
|
64
|
-
|
55
|
+
|
56
|
+
blockquote {
|
57
|
+
border-left: 1px solid #d0d0d0;
|
58
|
+
padding-left: 1em;
|
59
|
+
margin: 2em 0px; /* top/bottom sides */
|
65
60
|
}
|
66
|
-
|
67
|
-
|
61
|
+
|
62
|
+
p {
|
63
|
+
text-align: justify;
|
68
64
|
}
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
65
|
+
p.right {
|
66
|
+
text-align: right;
|
67
|
+
}
|
68
|
+
|
69
|
+
hr {
|
70
|
+
height: 2px;
|
71
|
+
border: 0px;
|
72
|
+
background: #1e262b;
|
73
|
+
margin: 3em 0px /* top/bottom sides */
|
75
74
|
}
|
76
|
-
|
77
|
-
|
75
|
+
|
76
|
+
dt {
|
77
|
+
font-weight: bold;
|
78
|
+
}
|
79
|
+
dd {
|
80
|
+
margin: 0px 0px 1em 2em; /* top right bottom left */
|
81
|
+
}
|
82
|
+
dd:last-child {
|
83
|
+
margin-bottom: 0px;
|
84
|
+
}
|
85
|
+
|
86
|
+
a {
|
87
|
+
color: #6a81aa;
|
88
|
+
text-decoration: inherit;
|
89
|
+
cursor: pointer;
|
90
|
+
}
|
91
|
+
|
92
|
+
/******************************************* Navigation *******************************************/
|
93
|
+
|
94
|
+
body > header {
|
95
|
+
position: fixed;
|
96
|
+
top: 0px;
|
97
|
+
width: 100%;
|
98
|
+
margin: auto;
|
99
|
+
background-color: #1e262b;
|
100
|
+
color: white;
|
101
|
+
z-index: 10;
|
102
|
+
}
|
103
|
+
body > header h1 {
|
104
|
+
float: left;
|
105
|
+
font-weight: 500;
|
106
|
+
margin: 0px;
|
107
|
+
padding: 5px 20px 8px; /* top sides bottom */
|
108
|
+
}
|
109
|
+
body > header a {
|
110
|
+
color: inherit;
|
111
|
+
}
|
112
|
+
body > header nav {
|
113
|
+
float: right;
|
114
|
+
padding: 0px 20px;
|
115
|
+
}
|
116
|
+
body > header nav ul {
|
117
|
+
margin: 0px;
|
118
|
+
padding: 0px;
|
119
|
+
}
|
120
|
+
body > header nav > ul > li {
|
121
|
+
display: inline-block;
|
122
|
+
}
|
123
|
+
body > header nav > ul > li a {
|
124
|
+
display: block;
|
125
|
+
padding: 16px 20px;
|
126
|
+
margin: 0px;
|
127
|
+
font-size: 1.25em;
|
128
|
+
color: rgba(255, 255, 255, 0.7);
|
129
|
+
}
|
130
|
+
body > header nav > ul > li a:hover {
|
131
|
+
color: rgba(255, 255, 255, 1.0);
|
78
132
|
}
|
79
133
|
|
80
134
|
/* dropdown menus */
|
81
|
-
header nav > ul > li > ul {
|
82
|
-
|
83
|
-
|
84
|
-
|
135
|
+
body > header nav > ul > li > ul {
|
136
|
+
display: none;
|
137
|
+
background-color: #1e262b;
|
138
|
+
position: absolute;
|
85
139
|
}
|
86
|
-
header nav > ul > li > ul > li {
|
87
|
-
|
140
|
+
body > header nav > ul > li > ul > li {
|
141
|
+
display: block;
|
88
142
|
}
|
89
|
-
header nav > ul > li > ul > li a {
|
90
|
-
|
143
|
+
body > header nav > ul > li > ul > li a {
|
144
|
+
padding: 8px 20px;
|
91
145
|
}
|
92
|
-
header nav > ul > li:hover > ul, header nav > ul > li:active > ul {
|
93
|
-
|
146
|
+
body > header nav > ul > li:hover > ul, body > header nav > ul > li:active > ul {
|
147
|
+
display: block;
|
94
148
|
}
|
95
149
|
|
96
|
-
header a#openmenu, header a#closemenu {
|
97
|
-
|
150
|
+
body > header a#openmenu, body > header a#closemenu {
|
151
|
+
display: none;
|
98
152
|
}
|
99
153
|
|
100
154
|
/* Mobile devices only */
|
101
155
|
@media only screen and (max-width: 600px), only screen and (max-device-width: 600px) {
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
padding: 10px 100px 10px 90px; /* top right bottom left */
|
152
|
-
}
|
156
|
+
body > header a#openmenu {
|
157
|
+
display: block;
|
158
|
+
position: absolute;
|
159
|
+
top: 12%;
|
160
|
+
left: 20px;
|
161
|
+
font-size: 2em;
|
162
|
+
font-weight: bold;
|
163
|
+
}
|
164
|
+
body > header nav a#closemenu {
|
165
|
+
display: block;
|
166
|
+
font-size: 2.5em;
|
167
|
+
font-weight: bold;
|
168
|
+
text-align: right;
|
169
|
+
margin-right: 0.5em;
|
170
|
+
}
|
171
|
+
body > header h1 {
|
172
|
+
float: none;
|
173
|
+
text-align: center;
|
174
|
+
}
|
175
|
+
body > header nav {
|
176
|
+
position: fixed;
|
177
|
+
top: 0;
|
178
|
+
left: 0;
|
179
|
+
height: 100%;
|
180
|
+
padding: 0;
|
181
|
+
z-index: 20;
|
182
|
+
background: inherit;
|
183
|
+
font-size: 1.25em;
|
184
|
+
overflow-y: scroll;
|
185
|
+
width: 0;
|
186
|
+
max-width: 100%;
|
187
|
+
}
|
188
|
+
body > header nav > ul {
|
189
|
+
height: auto;
|
190
|
+
}
|
191
|
+
body > header nav > ul > li {
|
192
|
+
display: block;
|
193
|
+
}
|
194
|
+
body > header nav > ul > li a {
|
195
|
+
padding: 10px 150px 10px 40px; /* top right bottom left */
|
196
|
+
}
|
197
|
+
body > header nav > ul > li > ul {
|
198
|
+
display: block;
|
199
|
+
position: static; /* reset absolute positionning */
|
200
|
+
}
|
201
|
+
body > header nav > ul > li > ul > li a {
|
202
|
+
margin: 0px;
|
203
|
+
padding: 10px 100px 10px 90px; /* top right bottom left */
|
204
|
+
}
|
153
205
|
}
|
154
206
|
|
155
207
|
/* breadcrumb navigation menu */
|
156
208
|
ul.breadcrumb {
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
209
|
+
list-style: none;
|
210
|
+
padding: 0px;
|
211
|
+
font-size: 0.9em;
|
212
|
+
margin-bottom: 1.5em;
|
161
213
|
}
|
162
214
|
ul.breadcrumb li {
|
163
|
-
|
215
|
+
display: inline;
|
164
216
|
}
|
165
217
|
ul.breadcrumb li+li:before {
|
166
|
-
|
167
|
-
|
168
|
-
}
|
169
|
-
main a {
|
170
|
-
color: #748ea3;
|
218
|
+
padding: 4px;
|
219
|
+
content: "/\00a0";
|
171
220
|
}
|
172
221
|
|
173
222
|
/* Mobile devices only */
|
174
223
|
@media only screen and (max-width: 600px), only screen and (max-device-width: 600px) {
|
175
|
-
|
176
|
-
|
177
|
-
|
224
|
+
ul.breadcrumb {
|
225
|
+
display: none;
|
226
|
+
}
|
178
227
|
}
|
179
228
|
|
180
|
-
|
229
|
+
/****************************************** Main content ******************************************/
|
181
230
|
|
182
231
|
body > main {
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
width: 75%;
|
189
|
-
max-width: 1200px;
|
190
|
-
margin: auto;
|
191
|
-
}
|
192
|
-
body > main hr {
|
193
|
-
height: 2px;
|
194
|
-
border: 0px;
|
195
|
-
background: #1e262b;
|
196
|
-
margin-top: 3em;
|
197
|
-
margin-bottom: 3em;
|
232
|
+
padding: 58px 0px; /* height of the navigation bar */
|
233
|
+
width: 85%;
|
234
|
+
max-width: 1366px;
|
235
|
+
margin: auto;
|
236
|
+
min-height: calc(100vh - 2*58px - 66px); /* 2*height of nav bar + height of footer */
|
198
237
|
}
|
199
238
|
|
200
239
|
/* Mobile devices only */
|
201
240
|
@media only screen and (max-width: 600px), only screen and (max-device-width: 600px) {
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
}
|
206
|
-
|
207
|
-
body > main section h2 {
|
208
|
-
font-size: 2em;
|
209
|
-
text-align: center;
|
210
|
-
margin: 50px 0px 2em; /* top sides bottom */
|
211
|
-
}
|
212
|
-
body > main article h2 {
|
213
|
-
margin-bottom: 40px;
|
214
|
-
}
|
215
|
-
body > main section h3 {
|
216
|
-
font-size: 1.17em;
|
217
|
-
margin: 3em 0px 1em; /* top sides bottom */
|
241
|
+
body > main section, body > main hr, body > footer p {
|
242
|
+
width: 100%;
|
243
|
+
margin: auto;
|
244
|
+
}
|
218
245
|
}
|
219
246
|
|
220
247
|
body > main div.loading {
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
248
|
+
width: 100px;
|
249
|
+
height: 100px;
|
250
|
+
margin: auto;
|
251
|
+
border: 16px solid #eaeaea;
|
252
|
+
border-radius: 50%;
|
253
|
+
border-top: 16px solid #a0c5e2;
|
254
|
+
animation: spin 2s linear infinite;
|
228
255
|
}
|
229
256
|
@keyframes spin { /* animation definition */
|
230
|
-
|
231
|
-
|
257
|
+
0% { transform: rotate(0deg); }
|
258
|
+
100% { transform: rotate(360deg); }
|
232
259
|
}
|
233
260
|
|
261
|
+
/********************************************* Footer *********************************************/
|
262
|
+
|
234
263
|
body > footer {
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
padding: 15px 0px; /* top sides */
|
264
|
+
background: #1e262b;
|
265
|
+
color: white;
|
266
|
+
padding: 0px;
|
239
267
|
}
|
240
268
|
body > footer p {
|
241
|
-
|
269
|
+
text-align: center;
|
270
|
+
font-size: 0.9em;
|
271
|
+
padding: 15px 0px; /* top sides */
|
272
|
+
margin: 0px;
|
273
|
+
}
|
274
|
+
body > footer a {
|
275
|
+
color: inherit;
|
242
276
|
}
|
243
277
|
body > footer aside#modal { /* modal box container */
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
278
|
+
display: none;
|
279
|
+
position: fixed;
|
280
|
+
z-index: 1000;
|
281
|
+
left: 0;
|
282
|
+
top: 0;
|
283
|
+
width: 100%;
|
284
|
+
height: 100%;
|
285
|
+
overflow: auto;
|
286
|
+
color: black;
|
287
|
+
background-color: rgba(0, 0, 0, 0.8);
|
254
288
|
}
|
255
289
|
body > footer aside#modal #modal-content { /* modal box */
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
290
|
+
background-color: #f7f8fa;
|
291
|
+
margin: auto;
|
292
|
+
margin-top: 50vh;
|
293
|
+
transform: translateY(-50%);
|
294
|
+
padding: 20px 25px 40px; /* top sides bottom */
|
295
|
+
border: 1px solid #1e262b;
|
296
|
+
width: 25%;
|
297
|
+
max-width: 425px;
|
298
|
+
min-width: 375px;
|
299
|
+
}
|
300
|
+
body > footer aside#modal #modal-content h2 {
|
301
|
+
font-size: 1.6em;
|
302
|
+
margin: 1em 0px; /* top/bottom sides */
|
263
303
|
}
|
264
304
|
body > footer aside#modal #modal-content dl {
|
265
305
|
display: grid;
|
@@ -267,27 +307,23 @@ body > footer aside#modal #modal-content dl {
|
|
267
307
|
grid-gap: 5px 25px;
|
268
308
|
}
|
269
309
|
body > footer aside#modal #modal-content dl dt {
|
270
|
-
font-weight: bold;
|
271
310
|
text-align: right;
|
272
311
|
}
|
273
312
|
body > footer aside#modal #modal-content dl dd {
|
274
313
|
text-align: left;
|
275
|
-
margin
|
314
|
+
margin: 0;
|
276
315
|
}
|
277
316
|
|
278
317
|
|
279
318
|
/******************************************* Error pages ******************************************/
|
280
319
|
|
281
320
|
section#error h2 {
|
282
|
-
|
321
|
+
color: #ff3333;
|
283
322
|
}
|
284
323
|
section#error p {
|
285
|
-
|
324
|
+
text-align: center;
|
286
325
|
}
|
287
326
|
section#error p img {
|
288
|
-
|
289
|
-
|
290
|
-
}
|
291
|
-
section#error a {
|
292
|
-
color: #748ea3;
|
327
|
+
width: 25%;
|
328
|
+
margin-bottom: 3em;
|
293
329
|
}
|
@@ -171,7 +171,7 @@ RSpec.describe CoreExtensions::Tree do
|
|
171
171
|
end
|
172
172
|
|
173
173
|
describe '#to_s' do
|
174
|
-
context 'given a
|
174
|
+
context 'given a Tree' do
|
175
175
|
before do
|
176
176
|
@tree = described_class.new(0.0)
|
177
177
|
@tree.add_child_node('left', 1.0)
|
@@ -185,27 +185,28 @@ RSpec.describe CoreExtensions::Tree do
|
|
185
185
|
@tree.child_node('right').add_child_node('right', 3.3)
|
186
186
|
end
|
187
187
|
it 'should return an ASCII representation of the Tree' do
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
188
|
+
expected_string = <<~END_HEREDOC
|
189
|
+
VALUE: 0.0
|
190
|
+
* ID: 'left'
|
191
|
+
VALUE: 1.0
|
192
|
+
* ID: 'left'
|
193
|
+
VALUE: 1.1
|
194
|
+
* ID: 'right'
|
195
|
+
VALUE: 1.2
|
196
|
+
* ID: 'middle'
|
197
|
+
VALUE: 2.0
|
198
|
+
* ID: 'middle'
|
199
|
+
VALUE: 2.1
|
200
|
+
* ID: 'right'
|
201
|
+
VALUE: 3.0
|
202
|
+
* ID: 'left'
|
203
|
+
VALUE: 3.1
|
204
|
+
* ID: 'middle'
|
205
|
+
VALUE: 3.2
|
206
|
+
* ID: 'right'
|
207
|
+
VALUE: 3.3
|
208
|
+
END_HEREDOC
|
209
|
+
expect(@tree.to_s).to eql(expected_string)
|
209
210
|
end
|
210
211
|
end
|
211
212
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -41,13 +41,11 @@ RSpec.configure do |config|
|
|
41
41
|
$LOAD_PATH << File.absolute_path(File.join('..', 'lib'), __dir__)
|
42
42
|
|
43
43
|
# Load and start SimpleCov to gather code coverage information
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
add_filter 'spec' # exclude 'spec' folder from coverage
|
51
|
-
end
|
44
|
+
require 'simplecov'
|
45
|
+
SimpleCov.start do
|
46
|
+
enable_coverage :branch # measure branches coverage
|
47
|
+
primary_coverage :branch
|
48
|
+
minimum_coverage line: 100, branch: 100 # minimal coverage rate to succeed
|
49
|
+
add_filter 'spec' # exclude 'spec' folder from coverage
|
52
50
|
end
|
53
51
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: intranet-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ebling Mis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: haml
|
@@ -84,44 +84,44 @@ dependencies:
|
|
84
84
|
name: rake
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - "
|
87
|
+
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
89
|
+
version: '13.0'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- - "
|
94
|
+
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
96
|
+
version: '13.0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: rspec
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- - "
|
101
|
+
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
103
|
+
version: '3.0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- - "
|
108
|
+
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
110
|
+
version: '3.0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: rubocop
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- - "
|
115
|
+
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
117
|
+
version: '1.0'
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
|
-
- - "
|
122
|
+
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
124
|
+
version: '1.0'
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: simplecov
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -140,16 +140,16 @@ dependencies:
|
|
140
140
|
name: yard
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
|
-
- - "
|
143
|
+
- - "~>"
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version: '0'
|
145
|
+
version: '0.0'
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
|
-
- - "
|
150
|
+
- - "~>"
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: '0'
|
152
|
+
version: '0.0'
|
153
153
|
description:
|
154
154
|
email: ebling.mis@protonmail.com
|
155
155
|
executables: []
|