ed. 1.2.2 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dbbcea3a5edbec5632e44723c7dd7f71f60c492ff3d3b17ec4a88418173ccc74
4
- data.tar.gz: 40ab3ee45bef13aea0a84ce6d7d03fad3bc8f060a546c75ae2fd3c5e353db30d
3
+ metadata.gz: c213ee7742753c9be41a10d7afbf3d1d0a63ebb92b5a6705bdc3dd75b94927b8
4
+ data.tar.gz: ab9ab37163379b2ddce72b1cd83e51f7ac4d8119bcaaa7576b2fa56cdee467cb
5
5
  SHA512:
6
- metadata.gz: d4db3af4898fb9661dadb2aca213e479519f9ae78fc2fafbc8abc524f821757edd0277e35dcdc32876c8b3557a1f9ca8b9341dabe13123db6f9c14861be7e852
7
- data.tar.gz: 7009c747cf27e4108d9bfce044b930e97df9c3755d49c3a050df1141ca899542434da59a155a66ec3a5d3e66f43ca40438f9fd3b0143aeb43e7e94ac5313df01
6
+ metadata.gz: 4bb6d066f52b777da5e5ba1e057b92c698044af804d4e9953b78564bb38ac6d4dbe761e1883857c477d07135164575131ee70929ca43788cb0a2592f4b29bbf0
7
+ data.tar.gz: bf41ec6b0135ee377be297078514b1bb535aeab56709db57edf7d6d6eb3766c918f49c2fa3b1fd17c561e3337d9fd855ffac89fdbfe3fe90ac6154bd199dcdc5
@@ -12,7 +12,8 @@
12
12
  */
13
13
 
14
14
  /*
15
- To apply a different color scheme to the whole scroll down to the themes section for instructions
15
+ To apply a different color scheme to the whole scroll down to the themes section instructions at
16
+ the very bottom of this file
16
17
  */
17
18
 
18
19
 
@@ -37,7 +38,7 @@ body {
37
38
 
38
39
  html {
39
40
  font-family: $main-font;
40
- font-size: 16px;
41
+ font-size: 1em; /* 16px; specify in ems to support text resizing in all browsers */
41
42
  line-height: 1.5;
42
43
  }
43
44
 
@@ -79,52 +80,43 @@ body {
79
80
  */
80
81
 
81
82
  .container {
82
- max-width: 38rem;
83
+ max-width: 32rem;
83
84
  padding-left: 1rem;
84
85
  padding-right: 1rem;
85
86
  margin-left: auto;
86
87
  margin-right: auto;
87
88
  }
88
89
 
89
- @media (min-width: 38em) {
90
- .container {
91
- max-width: 32rem;
92
- }
93
- }
94
-
95
90
  @media (min-width: 56em) {
96
91
  .container {
97
92
  max-width: 38rem;
98
93
  }
99
94
  }
100
95
 
101
- /* Links*/
96
+ /* Links */
102
97
  a, .text-title a {
103
98
  color: $link-color;
104
99
  text-decoration: none;
105
100
  }
106
101
 
107
- /* `:focus` is linked to `:hover` for basic accessibility*/
102
+ /* `:focus` is linked to `:hover` for basic accessibility */
108
103
  a:hover,
109
104
  a:focus {
110
105
  text-decoration: underline;
111
106
  }
112
107
 
113
- /* Headings*/
108
+ /* Headings */
114
109
  h1, h2, h3, h4, h5, h6 {
115
110
  font-family: $heading-font;
116
111
  margin-bottom: .5rem;
117
- font-weight: 300;
112
+ font-weight: normal;
118
113
  color: $heading-color;
119
114
  letter-spacing: -.025rem;
120
115
  line-height: 1.25;
121
116
  text-rendering: optimizeLegibility;
122
117
  }
123
118
 
124
- h1 {
125
- font-size: 1.4rem;
126
- }
127
-
119
+ h1,
128
120
  h1.text-title {
129
121
  font-size: 1.4rem;
130
122
  }
@@ -134,7 +126,8 @@ h2 {
134
126
  font-size: 1.2rem;
135
127
  }
136
128
 
137
- h3, h4, h5 {
129
+ h3, h4, h5, h6 {
130
+ margin-top: 1rem;
138
131
  font-size: 1rem;
139
132
  }
140
133
 
@@ -142,17 +135,14 @@ h3 {
142
135
  margin-top: 1.5rem;
143
136
  }
144
137
 
145
- h4, h5, h6 {
146
- margin-top: 1rem;
147
- }
148
138
 
149
- /* Body text*/
139
+ /* Body text */
150
140
  p {
151
141
  margin-top: 0;
152
142
  margin-bottom: 1rem;
153
143
  }
154
144
 
155
- /* Lists*/
145
+ /* Lists */
156
146
  ul {
157
147
  list-style: circle;
158
148
  }
@@ -162,9 +152,8 @@ ul, ol {
162
152
  margin-bottom: 1rem;
163
153
  }
164
154
 
165
- /* Horizontal ruler*/
155
+ /* Horizontal ruler */
166
156
  hr {
167
- margin-top: 60px;
168
157
  position: relative;
169
158
  margin: 1.5rem 0;
170
159
  border: 0;
@@ -172,13 +161,13 @@ hr {
172
161
  border-bottom: 1px solid #fff;
173
162
  }
174
163
 
175
- /* Search Highlihting*/
164
+ /* Search highlighting */
176
165
  mark {
177
166
  color: white;
178
167
  background-color: $link-color;
179
168
  }
180
169
 
181
- /* Quotes*/
170
+ /* Quotes */
182
171
  blockquote {
183
172
  padding: 0rem 1.5rem 0rem 2rem;
184
173
  margin: 0 0 20px 0;
@@ -198,16 +187,7 @@ blockquote p:last-child {
198
187
  }
199
188
  }
200
189
 
201
- /* To add an attribution make sure to make a line with the attribution class*/
202
- li.attribution {
203
- text-align: right;
204
- list-style: none;
205
- padding: 0rem 1.5rem 0rem 2rem;
206
- margin: 0 0 20px 0;
207
- color: $text-color;
208
- }
209
-
210
- /* Images*/
190
+ /* Images */
211
191
  img {
212
192
  display: block;
213
193
  max-width: 100%;
@@ -215,7 +195,7 @@ img {
215
195
  border-radius: 5px;
216
196
  }
217
197
 
218
- /* Tables*/
198
+ /* Tables */
219
199
  table {
220
200
  margin-bottom: 1rem;
221
201
  width: 100%;
@@ -242,73 +222,48 @@ tbody tr:nth-child(odd) th {
242
222
  */
243
223
 
244
224
  .masthead {
225
+ border-bottom: 1px solid #eee;
245
226
  margin-bottom: 3rem;
246
- text-align: center;
247
227
  padding-top: 26px;
248
228
  padding-bottom: 1rem;
249
- border-bottom: 1px solid #eee;
229
+ text-align: center;
250
230
  }
251
231
 
252
232
  .masthead-title {
253
- margin-top: 0;
254
- margin-bottom: 0;
255
233
  color: #505050;
234
+ font-family: $main-font;
235
+ font-size: 1.8rem;
256
236
  line-height: .777em;
257
- }
258
-
259
- .masthead-title a {
260
- color: $link-color;
237
+ margin-top: 2em;
238
+ margin-bottom: 0;
239
+ margin-right: 0;
240
+ margin-left: 0;
241
+ text-align: center;
261
242
  }
262
243
 
263
244
  .masthead-title small {
264
- font-family: $main-font;
265
- font-size: .88rem;
266
- font-weight: 300;
267
245
  color: $text-color;
268
- letter-spacing: .05rem;
246
+ display: none; /* This is an accessibility no-no */
269
247
  font-family: $heading-font;
248
+ font-size: .88rem;
249
+ font-weight: normal;
250
+ letter-spacing: .05rem;
270
251
  }
271
252
 
272
- h3.masthead-title {
273
- font-family: $main-font;
274
- font-size: 1.8rem;
275
- margin-top: 2px;
276
- }
277
-
278
- @media (max-width: 48em) {
253
+ @media (min-width: 320px) {
279
254
  .masthead-title {
280
- text-align: center;
281
- }
282
-
283
- .masthead-title small {
284
- display: none;
285
- }
286
-
287
- h3.masthead-title {
288
- margin-left: 15%;
289
- margin-right: 15%;
255
+ margin-top: 2px;
256
+ margin-right: 15%;
257
+ margin-left: 15%;
290
258
  }
291
259
  }
292
260
 
293
- @media (max-width: 320px) {
294
- h3.masthead-title {
295
- margin-top: 2em;
296
- margin-left: 0%;
297
- margin-right: 0%;
261
+ @media (min-width: 48em) {
262
+ .masthead-title small {
263
+ display: inline;
298
264
  }
299
265
  }
300
266
 
301
- /* Page and Posts*/
302
- .page {
303
- margin-bottom: 4em;
304
- }
305
-
306
- .page-title {
307
- color: $heading-color;
308
- margin-top: 0;
309
- }
310
-
311
-
312
267
  /*
313
268
  Sidebar
314
269
 
@@ -323,7 +278,7 @@ h3.masthead-title {
323
278
  Source: http://css-tricks.com/off-canvas-menu-with-css-target/#comment-207504
324
279
  */
325
280
 
326
- /* Style and "hide" the sidebar*/
281
+ /* Style and "hide" the sidebar */
327
282
  .sidebar {
328
283
  position: fixed;
329
284
  top: 0;
@@ -342,11 +297,11 @@ h3.masthead-title {
342
297
 
343
298
  @media (min-width: 30em) {
344
299
  .sidebar {
345
- font-size: .75rem;/* 14px*/
300
+ font-size: .75rem;/* 14px */
346
301
  }
347
302
  }
348
303
 
349
- /* Sidebar content*/
304
+ /* Sidebar content */
350
305
  .sidebar {
351
306
  background-color: $link-color;
352
307
  }
@@ -364,7 +319,7 @@ h3.masthead-title {
364
319
  margin-bottom: 0;
365
320
  }
366
321
 
367
- /* Sidebar nav*/
322
+ /* Sidebar nav */
368
323
  .sidebar-nav {
369
324
  border-bottom: 1px solid rgba(255,255,255,.1);
370
325
  }
@@ -398,12 +353,12 @@ a.sidebar-nav-item:focus {
398
353
  }
399
354
  }
400
355
 
401
- /* Hide the sidebar checkbox that we toggle with `.sidebar-toggle`*/
356
+ /* Hide the sidebar checkbox that we toggle with `.sidebar-toggle` */
402
357
  .sidebar-checkbox {
403
358
  display: none;
404
359
  }
405
360
 
406
- /* Style the `label` that we use to target the `.sidebar-checkbox`*/
361
+ /* Style the `label` that we use to target the `.sidebar-checkbox` */
407
362
  .sidebar-toggle {
408
363
  position: absolute;
409
364
  top: .8rem;
@@ -459,10 +414,10 @@ a.sidebar-nav-item:focus {
459
414
  /*
460
415
  Slide effect
461
416
 
462
- Handle the sliding effects of the sidebar and content in one spot, seperate from the default
417
+ Handle the sliding effects of the sidebar and content in one spot, separate from the default
463
418
  styles.
464
419
 
465
- As an a heads up, we don't use `transform: translate3d()` here because when mixed with
420
+ As a heads-up, we don't use `transform: translate3d()` here because, when mixed with
466
421
  `position: fixed;` for the sidebar toggle, it creates a new containing block. Put simply, the
467
422
  fixed sidebar toggle behaves like `position: absolute;` when transformed.
468
423
 
@@ -500,8 +455,7 @@ a.sidebar-nav-item:focus {
500
455
  /*
501
456
  Reverse layout
502
457
 
503
- Flip the orientation of the page by placing the `.sidebar` and sidebar toggle
504
- on the right side.
458
+ Flip the orientation of the page by placing the `.sidebar` and sidebar toggle on the right side.
505
459
  */
506
460
 
507
461
  .layout-reverse .sidebar {
@@ -526,8 +480,7 @@ a.sidebar-nav-item:focus {
526
480
  /*
527
481
  Overlay sidebar
528
482
 
529
- Make the sidebar content overlay the viewport content instead of pushing it
530
- aside when toggled.
483
+ Make the sidebar content overlay the viewport content instead of pushing it aside when toggled.
531
484
  */
532
485
 
533
486
  .sidebar-overlay #sidebar-checkbox:checked ~ .wrap {
@@ -551,100 +504,7 @@ a.sidebar-nav-item:focus {
551
504
 
552
505
 
553
506
  /*
554
- Themes
555
-
556
- Applies custom color schemes by adding the appropriate class to the `body`. Based on colors from
557
- Base16: http://chriskempson.com/projects/base16/
558
- */
559
-
560
- /* Red*/
561
- .theme-base-red .sidebar,
562
- .theme-base-red .sidebar-toggle:active,
563
- .theme-base-red #sidebar-checkbox:checked ~ .sidebar-toggle {
564
- background-color: #ac4142;
565
- }
566
-
567
- .theme-base-red .container a,
568
- .theme-base-red .sidebar-toggle,
569
- .theme-base-red .related-posts li a:hover {
570
- color: #ac4142;
571
- }
572
-
573
- /* Orange*/
574
- .theme-base-orange .sidebar,
575
- .theme-base-orange .sidebar-toggle:active {
576
- background-color: #d28445;
577
- }
578
-
579
- .theme-base-orange .container a,
580
- .theme-base-orange .sidebar-toggle,
581
- .theme-base-orange .related-posts li a:hover {
582
- color: #d28445;
583
- }
584
-
585
- /* Green*/
586
- .theme-base-green .sidebar,
587
- .theme-base-green .sidebar-toggle:active {
588
- background-color: #90a959;
589
- }
590
-
591
- .theme-base-green .container a,
592
- .theme-base-green .sidebar-toggle,
593
- .theme-base-green .related-posts li a:hover {
594
- color: #90a959;
595
- }
596
-
597
- /* Cyan*/
598
- .theme-base-cyan .sidebar,
599
- .theme-base-cyan .sidebar-toggle:active {
600
- background-color: #75b5aa;
601
- }
602
-
603
- .theme-base-cyan .container a,
604
- .theme-base-cyan .sidebar-toggle,
605
- .theme-base-cyan .related-posts li a:hover {
606
- color: #75b5aa;
607
- }
608
-
609
- /* Blue*/
610
- .theme-base-blue .sidebar,
611
- .theme-base-blue .sidebar-toggle:active {
612
- background-color: #6a9fb5;
613
- }
614
-
615
- .theme-base-blue .container a,
616
- .theme-base-blue .sidebar-toggle,
617
- .theme-base-blue .related-posts li a:hover {
618
- color: #6a9fb5;
619
- }
620
-
621
- /* Magenta*/
622
- .theme-base-magenta .sidebar,
623
- .theme-base-magenta .sidebar-toggle:active {
624
- background-color: #aa759f;
625
- }
626
-
627
- .theme-base-magenta .container a,
628
- .theme-base-magenta .sidebar-toggle,
629
- .theme-base-magenta .related-posts li a:hover {
630
- color: #aa759f;
631
- }
632
-
633
- /* Brown*/
634
- .theme-base-brown .sidebar,
635
- .theme-base-brown .sidebar-toggle:active {
636
- background-color: #8f5536;
637
- }
638
-
639
- .theme-base-brown .container a,
640
- .theme-base-brown .sidebar-toggle,
641
- .theme-base-brown .related-posts li a:hover {
642
- color: #8f5536;
643
- }
644
-
645
-
646
- /*
647
- ED SPECIAL LAYOUTS
507
+ ED special layouts
648
508
  */
649
509
 
650
510
  p.centered {
@@ -692,76 +552,67 @@ ul.poetry {
692
552
  }
693
553
 
694
554
 
695
- /* This snippet helps us reset the margin for all spans with the indent- class*/
696
- .poetry span[class^='indent-']{
555
+ /* This snippet helps us reset the margin for all spans with the indent- class */
556
+ .poem span[class^='indent-'],
557
+ .poetry span[class^='indent-'] {
697
558
  margin: 0;/* reset browsers default margin styles*/
698
559
  }
699
560
 
700
561
 
701
562
  /*
702
- To set line indentation for poetry wrap the line in a span, with a class="indent-x" attribute.
703
- The x is represents an rem (root em) value
563
+ To set line indentation for poetry wrap the line in a span with a class="indent-x" attribute.
564
+ The x is represents a rem (root em) value
704
565
  */
705
566
 
706
567
  .indent-1 {
707
- font-style: normal;
708
568
  padding-left: 1rem;
709
569
  }
710
570
 
711
571
  .indent-2 {
712
- font-style: normal;
713
572
  padding-left: 2rem;
714
573
  }
715
574
 
716
575
  .indent-3 {
717
- font-style: normal;
718
576
  padding-left: 3rem;
719
577
  }
720
578
 
721
579
  .indent-4 {
722
- font-style: normal;
723
580
  padding-left: 4rem;
724
581
  }
725
582
 
726
583
  .indent-5 {
727
- font-style: normal;
728
584
  padding-left: 5rem;
729
585
  }
730
586
 
731
587
  .indent-6 {
732
- font-style: normal;
733
588
  padding-left: 6rem;
734
589
  }
735
590
 
736
591
  .indent-7 {
737
- font-style: normal;
738
592
  padding-left: 7rem;
739
593
  }
740
594
 
741
595
  .indent-8 {
742
- font-style: normal;
743
596
  padding-left: 8rem;
744
597
  }
745
598
 
746
599
  .indent-9 {
747
- font-style: normal;
748
600
  padding-left: 9rem;
749
601
  }
750
602
 
751
603
  .indent-10 {
752
- font-style: normal;
753
604
  padding-left: 10rem;
754
605
  }
755
606
 
756
607
  .poem .byline,
757
608
  .poetry .byline {
758
609
  font-style: italic;
759
- font-weight: 300;
610
+ font-weight: normal;
760
611
  letter-spacing: 0;
761
612
  margin-top: -.5rem;
762
613
  }
763
614
 
764
- /* Footnotes styles*/
615
+ /* Footnotes styles */
765
616
  sub,
766
617
  sup {
767
618
  font-size: 75%;
@@ -792,24 +643,27 @@ a.footnote {
792
643
  font-size: .66rem;
793
644
  }
794
645
 
795
- /*Bibliography styles*/
646
+ /*Bibliography styles */
796
647
  ol.bibliography {
797
648
  list-style-type:none;
798
649
  padding-left: 1rem;
799
650
  text-indent: -1rem;
800
651
  }
801
652
 
802
- /* Diplomatic editions*/
653
+ /* Diplomatic editions */
654
+ ins,
803
655
  .add {
804
656
  color:#288828;
805
657
  font-style: italic;
806
658
  }
807
659
 
660
+ del,
808
661
  .delete {
809
662
  text-decoration: line-through;
810
663
  color: #AA3232;
811
664
  }
812
665
 
666
+ u,
813
667
  .underline {
814
668
  text-decoration: underline;
815
669
  }
@@ -836,6 +690,8 @@ li.speakerGroup {
836
690
  margin-bottom: -1.6em;
837
691
  }
838
692
 
693
+ /* To add an attribution, make sure to make a line with the attribution class */
694
+
839
695
  li.attribution {
840
696
  text-align: right;
841
697
  list-style: none;
@@ -853,3 +709,96 @@ li.prose {
853
709
  li.prose-indent {
854
710
  text-indent: 2rem;
855
711
  }
712
+
713
+
714
+ /*
715
+ Themes
716
+
717
+ Applies custom color schemes by adding the appropriate class to the `body`. Based on colors from
718
+ Base16: http://chriskempson.com/projects/base16/
719
+ */
720
+
721
+ /* Red */
722
+ .theme-base-red .sidebar,
723
+ .theme-base-red .sidebar-toggle:active,
724
+ .theme-base-red #sidebar-checkbox:checked ~ .sidebar-toggle {
725
+ background-color: #ac4142;
726
+ }
727
+
728
+ .theme-base-red .container a,
729
+ .theme-base-red .sidebar-toggle,
730
+ .theme-base-red .related-posts li a:hover {
731
+ color: #ac4142;
732
+ }
733
+
734
+ /* Orange */
735
+ .theme-base-orange .sidebar,
736
+ .theme-base-orange .sidebar-toggle:active {
737
+ background-color: #d28445;
738
+ }
739
+
740
+ .theme-base-orange .container a,
741
+ .theme-base-orange .sidebar-toggle,
742
+ .theme-base-orange .related-posts li a:hover {
743
+ color: #d28445;
744
+ }
745
+
746
+ /* Green */
747
+ .theme-base-green .sidebar,
748
+ .theme-base-green .sidebar-toggle:active {
749
+ background-color: #90a959;
750
+ }
751
+
752
+ .theme-base-green .container a,
753
+ .theme-base-green .sidebar-toggle,
754
+ .theme-base-green .related-posts li a:hover {
755
+ color: #90a959;
756
+ }
757
+
758
+ /* Cyan */
759
+ .theme-base-cyan .sidebar,
760
+ .theme-base-cyan .sidebar-toggle:active {
761
+ background-color: #75b5aa;
762
+ }
763
+
764
+ .theme-base-cyan .container a,
765
+ .theme-base-cyan .sidebar-toggle,
766
+ .theme-base-cyan .related-posts li a:hover {
767
+ color: #75b5aa;
768
+ }
769
+
770
+ /* Blue */
771
+ .theme-base-blue .sidebar,
772
+ .theme-base-blue .sidebar-toggle:active {
773
+ background-color: #6a9fb5;
774
+ }
775
+
776
+ .theme-base-blue .container a,
777
+ .theme-base-blue .sidebar-toggle,
778
+ .theme-base-blue .related-posts li a:hover {
779
+ color: #6a9fb5;
780
+ }
781
+
782
+ /* Magenta */
783
+ .theme-base-magenta .sidebar,
784
+ .theme-base-magenta .sidebar-toggle:active {
785
+ background-color: #aa759f;
786
+ }
787
+
788
+ .theme-base-magenta .container a,
789
+ .theme-base-magenta .sidebar-toggle,
790
+ .theme-base-magenta .related-posts li a:hover {
791
+ color: #aa759f;
792
+ }
793
+
794
+ /* Brown */
795
+ .theme-base-brown .sidebar,
796
+ .theme-base-brown .sidebar-toggle:active {
797
+ background-color: #8f5536;
798
+ }
799
+
800
+ .theme-base-brown .container a,
801
+ .theme-base-brown .sidebar-toggle,
802
+ .theme-base-brown .related-posts li a:hover {
803
+ color: #8f5536;
804
+ }
@@ -64,7 +64,8 @@
64
64
  .css .o + .nt,
65
65
  .css .nt + .nt { color: #999; }
66
66
 
67
- /* Transfered from poole.css */
67
+ /* Transferred from poole.css */
68
+
68
69
  /* Code */
69
70
  code,
70
71
  pre {
@@ -9,16 +9,16 @@ sitemap: false
9
9
  Feel free to change!
10
10
  */
11
11
 
12
- /* FONTS */
12
+ /* Fonts */
13
13
  $main-font: "Palatino Linotype", "Book Antiqua", Palatino, serif;
14
14
  $heading-font: sans-serif;
15
- $regular-font-size: 20px;
15
+ $regular-font-size: 1.25em; /* 20px / 16px = 1.25em; support text resizing in all browsers */
16
16
 
17
17
 
18
18
  /*
19
- COLOR.
19
+ Color
20
20
 
21
- Make sure to leave color-scheme in config file empty for granular control
21
+ Make sure to leave color-scheme in `_config.yml` file empty for granular control
22
22
  */
23
23
 
24
24
  $text-color: #454545;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ed.
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Gil
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-09-23 00:00:00.000000000 Z
12
+ date: 2019-11-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -29,14 +29,14 @@ dependencies:
29
29
  name: bundler
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - "~>"
32
+ - - ">="
33
33
  - !ruby/object:Gem::Version
34
34
  version: '1.16'
35
35
  type: :development
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - "~>"
39
+ - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: '1.16'
42
42
  - !ruby/object:Gem::Dependency
@@ -111,7 +111,7 @@ metadata:
111
111
  bug_tracker_uri: https://github.com/minicomp/ed/issues
112
112
  changelog_uri: https://github.com/minicomp/ed/releases
113
113
  documentation_uri: https://minicomp.github.io/ed/documentation/
114
- wiki-uri: https://github.com/minicomp/ed/wiki
114
+ wiki_uri: https://github.com/minicomp/ed/wiki
115
115
  homepage_uri: https://minicomp.github.io/ed/
116
116
  source_code_uri: https://github.com/minicomp/ed
117
117
  post_install_message:
@@ -122,7 +122,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
122
122
  requirements:
123
123
  - - ">="
124
124
  - !ruby/object:Gem::Version
125
- version: 2.1.0
125
+ version: 2.2.7
126
126
  required_rubygems_version: !ruby/object:Gem::Requirement
127
127
  requirements:
128
128
  - - ">="