picklecore 0.11.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8cad9d181333a25aa09b840e5ffab13d68bcd93183b9a1156bc7bc4e1b020eb8
4
- data.tar.gz: c1d239f34052eadfe799c2e39cee298a2d55c03088d2cb3e438885723b68bd94
3
+ metadata.gz: e1f70df5d9d6e2b47c4b884a2e3cfa82b80a904b52f9703944c59e8f2aaa964d
4
+ data.tar.gz: 58c11febe640b17f8eeb078c3e581046611b946595a55c50213ec7c19e288338
5
5
  SHA512:
6
- metadata.gz: 696e4299a08805da28c1b3a9e26905a636525e3e3ad98fd3dc6ed4cabfb5bb794d2e18b845fe7c5f991cd5d81a3aff2e2c56cb7a9f4959e983ec7c44ca1ab56c
7
- data.tar.gz: 19212d8b8980dbd9decb26c6be048ef938a8a3bac1858ef36050622f290c816c7145ee2172626e95084fb8fad39bc2864deea6b7404f1555c8e7c9d8e778f45d
6
+ metadata.gz: 70e9b3fd10e1a0663f4b971cbac6e6f1b07ae0e8d3f21ee4fb69ccc726b28320fc1378ae599865509929f70c08570f7823485f2f266190eea360d126ef15b96d
7
+ data.tar.gz: 97a7dec2ae0ee3fe1db930aa1edb016871352ae7f008185fc7d749f32145f8b14eafe88f1dc0b93b9b97d0d09217f0d19b1cbdd81d7f3d46befb5e58f0017299
@@ -1,6 +1,6 @@
1
1
  <div class="card">
2
- <h1>{{ include.cardtitle }}</h1>
3
- <p>
4
- {{ include.cardbody }}
5
- </p>
2
+ <h1>{{ include.cardtitle }}</h1>
3
+ <p>
4
+ {{ include.cardbody }}
5
+ </p>
6
6
  </div>
@@ -1,74 +1,74 @@
1
1
  <div id="nav" class="nav">
2
- <table>
3
- {% if site.github %}
4
- <tr>
5
- <td>
6
- <i class="fab fa-github-square"></i>
7
- </td>
8
- <td>
9
- <a href="https://github.com/{{ site.github }}" alt="GitHub Profile" class="nobreak">GitHub</a>
10
- </td>
11
- </tr>
12
- {% endif %}
13
- {% if site.email %}
14
- <tr>
15
- <td>
16
- <i class="fas fa-envelope"></i>
17
- </td>
18
- <td>
19
- <a href="mailto:{{ site.email }}" alt="Email Address" class="nobreak">Email</a>
20
- </td>
21
- </tr>
22
- {% endif %}
23
- {% if site.discord %}
24
- <tr>
25
- <td>
26
- <i class="fab fa-discord"></i>
27
- </td>
28
- <td>
29
- <a href="https://discord.gg/{{ site.discord }}" alt="Discord Server" class="nobreak">Discord</a>
30
- </td>
31
- </tr>
32
- {% endif %}
33
- {% if site.twitter.username %}
34
- <tr>
35
- <td>
36
- <i class="fab fa-twitter"></i>
37
- </td>
38
- <td>
39
- <a href="https://twitter.com/{{ site.twitter.username }}" class="nobreak" alt="Twitter">Twitter</a>
40
- </td>
41
- </tr>
42
- {% endif %}
43
- {% if site.statuspage %}
44
- <tr>
45
- <td>
46
- <i class="fas fa-exclamation-triangle"></i>
47
- </td>
48
- <td>
49
- <a href="{{ site.statuspage }}" class="nobreak" alt="System Status">System Status</a>
50
- </td>
51
- </tr>
52
- {% endif %}
53
- {% if site.pgp %}
54
- <tr>
55
- <td>
56
- <i class="fas fa-lock"></i>
57
- </td>
58
- <td>
59
- <a href="{{ site.pgp }}" class="nobreak" alt="Public PGP Key">Public PGP Key</a>
60
- </td>
61
- </tr>
62
- {% endif %}
63
- {% if site.devto %}
64
- <tr>
65
- <td>
66
- <i class="fab fa-dev"></i>
67
- </td>
68
- <td>
69
- <a href="https://dev.to/{{ site.devto }}" class="nobreak" alt="DEV Profile">DEV Profile</a>
70
- </td>
71
- </tr>
72
- {% endif %}
2
+ <table>
3
+ {%- if site.github -%}
4
+ <tr>
5
+ <td>
6
+ <i class="fab fa-github-square"></i>
7
+ </td>
8
+ <td>
9
+ <a href="https://github.com/{{ site.github }}" alt="GitHub Profile" class="nobreak">GitHub</a>
10
+ </td>
11
+ </tr>
12
+ {%- endif -%}
13
+ {%- if site.email -%}
14
+ <tr>
15
+ <td>
16
+ <i class="fas fa-envelope"></i>
17
+ </td>
18
+ <td>
19
+ <a href="mailto:{{ site.email }}" alt="Email Address" class="nobreak">Email</a>
20
+ </td>
21
+ </tr>
22
+ {%- endif -%}
23
+ {%- if site.discord -%}
24
+ <tr>
25
+ <td>
26
+ <i class="fab fa-discord"></i>
27
+ </td>
28
+ <td>
29
+ <a href="https://discord.gg/{{ site.discord }}" alt="Discord Server" class="nobreak">Discord</a>
30
+ </td>
31
+ </tr>
32
+ {%- endif -%}
33
+ {%- if site.twitter.username -%}
34
+ <tr>
35
+ <td>
36
+ <i class="fab fa-twitter"></i>
37
+ </td>
38
+ <td>
39
+ <a href="https://twitter.com/{{ site.twitter.username }}" class="nobreak" alt="Twitter">Twitter</a>
40
+ </td>
41
+ </tr>
42
+ {%- endif -%}
43
+ {%- if site.statuspage -%}
44
+ <tr>
45
+ <td>
46
+ <i class="fas fa-exclamation-triangle"></i>
47
+ </td>
48
+ <td>
49
+ <a href="{{ site.statuspage }}" class="nobreak" alt="System Status">System Status</a>
50
+ </td>
51
+ </tr>
52
+ {%- endif -%}
53
+ {%- if site.pgp -%}
54
+ <tr>
55
+ <td>
56
+ <i class="fas fa-lock"></i>
57
+ </td>
58
+ <td>
59
+ <a href="{{ site.pgp }}" class="nobreak" alt="Public PGP Key">Public PGP Key</a>
60
+ </td>
61
+ </tr>
62
+ {%- endif -%}
63
+ {%- if site.devto -%}
64
+ <tr>
65
+ <td>
66
+ <i class="fab fa-dev"></i>
67
+ </td>
68
+ <td>
69
+ <a href="https://dev.to/{{ site.devto }}" class="nobreak" alt="DEV Profile">DEV Profile</a>
70
+ </td>
71
+ </tr>
72
+ {%- endif -%}
73
73
  </table>
74
74
  </div>
@@ -1,13 +1,11 @@
1
1
  <meta charset="utf-8">
2
2
  <title>{{ include.title | default: site.name }} - {{ site.name }}</title>
3
- <!--Begin static tags-->
4
3
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
5
4
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
5
  <meta name="msapplication-TileColor" content="#303f9f">
7
6
  <meta name="theme-color" content="#303f9f">
8
7
  <meta property="og:type" content="website">
9
- <meta property="og:locale" content="en_US">
10
- <!--End static tags-->
8
+ <meta property="og:locale" content='{{ site.locale | default: "en_US" }}'>
11
9
  {% if site.name %}
12
10
  <meta property="og:title" content="{{ site.name }}">
13
11
  <meta property="og:site_name" content="{{ site.name }}">
@@ -55,5 +53,5 @@
55
53
  <meta name="twitter:image" content="{{ site.twitter.image }}">
56
54
  {% endif %}
57
55
  {% unless site.no_extra_head %}
58
- {% include metadata/extra.html %}
56
+ {% include metadata/extra.html %}
59
57
  {% endunless %}
@@ -0,0 +1,28 @@
1
+ ---
2
+ layout: default
3
+ title: "Post Archives"
4
+ ---
5
+ {% include components/binds/sidebar-anchor.html %}
6
+
7
+ {% if page.type == "year" %}
8
+ <h1>Posts from {{ page.date | date: "%Y" }}</h1>
9
+ {% endif %}
10
+ {% if page.type == "month" %}
11
+ <h1>Posts from {{ page.date | date: "%-d, %Y" }}</h1>
12
+ {% endif %}
13
+ {% if page.type == "day" %}
14
+ <h1>Posts from {{ page.date | date: "%b %-d, %Y" }}</h1>
15
+ {% endif %}
16
+ {% if page.type == "tag" or page.type == "category" %}
17
+ <h1>Posts with {{ page.type }} '{{ page.title }}'</h1>
18
+ {% endif %}
19
+
20
+ <ul class="posts">
21
+ {% for post in page.posts %}
22
+ <li>
23
+ <span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
24
+ <span>-</span>
25
+ <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
26
+ </li>
27
+ {% endfor %}
28
+ </ul>
@@ -2,4 +2,5 @@
2
2
  layout: default
3
3
  ---
4
4
  {% include components/binds/sidebar-anchor.html %}
5
+
5
6
  {{ content }}
@@ -1,14 +1,14 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
- <head>
4
- {% include metadata/metadata.html title=page.title %}
5
- <link rel="stylesheet" href="/assets/css/main.css" />
6
- </head>
7
- <body>
8
- <div class="content">
9
- {{ content }}
10
- </div>
11
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
12
- <script src="/assets/js/main.js" defer></script>
13
- </body>
3
+ <head>
4
+ {% include metadata/metadata.html title=page.title %}
5
+ <link rel="stylesheet" href="/assets/css/main.css"></link>
6
+ </head>
7
+ <body>
8
+ <div class="content">
9
+ {{ content }}
10
+ </div>
11
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
12
+ <script src="/assets/js/main.js"></script>
13
+ </body>
14
14
  </html>
data/_layouts/error.html CHANGED
@@ -1,18 +1,18 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
- <head>
4
- {% include page-template/metadata.html pagename="You fell off my site!" %}
5
- <link rel="stylesheet" href="/assets/css/error.css"/>
6
- </head>
7
- <body onload="document.body.style.backgroundColor = '#303f9f'">
8
- <div class="error">
9
- <h1 class="animated fadeInRightBig">{{ site.errormessage | default: "Uh oh... You fell off our site!" }}</h1>
10
- <p class="animated delay fadeInLeftBig">
11
- Error {{ page.code }} ({{ page.desc }})
12
- {% if site.email %}
13
- - If you think this is a mistake on our part, please <a href="mailto:{{ site.email }}">send us an email</a>.
14
- {% endif %}
15
- </p>
16
- </div>
17
- </body>
3
+ <head>
4
+ {% include page-template/metadata.html pagename="You fell off my site!" %}
5
+ <link rel="stylesheet" href="/assets/css/error.css"></link>
6
+ </head>
7
+ <body onload="document.body.style.backgroundColor = '#303f9f'">
8
+ <div class="error">
9
+ <h1 class="animated fadeInRightBig">{{ site.errormessage | default: "Uh oh... You fell off our site!" }}</h1>
10
+ <p class="animated delay fadeInLeftBig">
11
+ Error {{ page.code }} ({{ page.desc }})
12
+ {% if site.email %}
13
+ - If you think this is a mistake on our part, please <a href="mailto:{{ site.email }}">send us an email</a>.
14
+ {% endif %}
15
+ </p>
16
+ </div>
17
+ </body>
18
18
  </html>
data/_layouts/post.html CHANGED
@@ -5,8 +5,16 @@ layout: default
5
5
 
6
6
  <h2>{{ page.title }}</h2>
7
7
 
8
- {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
9
- By {{ page.author | escape | default: "Administrator" }} - published {{ page.date | date: date_format }}.
8
+ <div>
9
+ {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
10
+ <i class="fas fa-user-edit"></i> Author: {{ page.author | default: "Administrator" }}
11
+ <br />
12
+ <i class="fas fa-calendar"></i> Date: {{ page.date | date: date_format }}
13
+ {% if post.tag %}
14
+ <br />
15
+ <i class="fa fa-tag"></i> Tag: {{ post.tag }}
16
+ {% endif %}
17
+ </div>
10
18
 
11
19
  <hr />
12
20
 
@@ -47,7 +47,6 @@ body {
47
47
  -webkit-transform: translate3d(2000px, 0, 0);
48
48
  transform: translate3d(2000px, 0, 0);
49
49
  }
50
-
51
50
  to {
52
51
  opacity: 1;
53
52
  -webkit-transform: translate3d(0, 0, 0);
@@ -60,7 +59,6 @@ body {
60
59
  opacity: 0;
61
60
  transform: translate3d(2000px, 0, 0);
62
61
  }
63
-
64
62
  to {
65
63
  opacity: 1;
66
64
  transform: translate3d(0, 0, 0);
@@ -77,7 +75,6 @@ body {
77
75
  -webkit-transform: translate3d(-2000px, 0, 0);
78
76
  transform: translate3d(-2000px, 0, 0);
79
77
  }
80
-
81
78
  to {
82
79
  opacity: 1;
83
80
  -webkit-transform: translate3d(0, 0, 0);
@@ -91,7 +88,6 @@ body {
91
88
  -webkit-transform: translate3d(-2000px, 0, 0);
92
89
  transform: translate3d(-2000px, 0, 0);
93
90
  }
94
-
95
91
  to {
96
92
  opacity: 1;
97
93
  -webkit-transform: translate3d(0, 0, 0);
data/assets/css/main.css CHANGED
@@ -6,35 +6,35 @@
6
6
  body {
7
7
  margin: 0;
8
8
  padding: 0;
9
- background-color: {%- include styling/theme-color.css -%}
9
+ background-color: {%- include styling/theme-color.css -%};
10
10
  }
11
11
 
12
12
  .content {
13
13
  margin: 75px 100px;
14
14
  font-family: "Open Sans", sans-serif;
15
- color: white
15
+ color: white;
16
16
  }
17
17
 
18
18
  .title {
19
- height: 45vh
19
+ height: 45vh;
20
20
  }
21
21
 
22
22
  h1 {
23
- font-size: 3em
23
+ font-size: 3em;
24
24
  }
25
25
 
26
26
  h2 {
27
- margin-top: 36px
27
+ margin-top: 36px;
28
28
  }
29
29
 
30
30
  tr {
31
- white-space: nowrap
31
+ white-space: nowrap;
32
32
  }
33
33
 
34
34
  .cards {
35
35
  display: flex;
36
36
  align-items: center;
37
- flex-wrap: wrap
37
+ flex-wrap: wrap;
38
38
  }
39
39
 
40
40
  .card {
@@ -46,23 +46,23 @@ tr {
46
46
  position: relative;
47
47
  width: 300px;
48
48
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
49
- transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1)
49
+ transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
50
50
  }
51
51
 
52
52
  .card h1 {
53
53
  font-size: 2em;
54
54
  margin-top: 20px;
55
55
  margin-left: 20px;
56
- margin-bottom: 10.5px
56
+ margin-bottom: 10.5px;
57
57
  }
58
58
 
59
59
  .card p {
60
60
  margin: 20px;
61
- line-height: 1.2
61
+ line-height: 1.2;
62
62
  }
63
63
 
64
64
  .card:hover {
65
- box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22)
65
+ box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
66
66
  }
67
67
 
68
68
  .nav {
@@ -75,7 +75,7 @@ tr {
75
75
  background-color: white;
76
76
  overflow-x: hidden;
77
77
  transition: 0.5s;
78
- padding-top: 60px
78
+ padding-top: 60px;
79
79
  }
80
80
 
81
81
  .nav a {
@@ -84,11 +84,11 @@ tr {
84
84
  color: {%- include styling/theme-color.css -%};
85
85
  font-size: 25px;
86
86
  display: block;
87
- transition: 0.3s
87
+ transition: 0.3s;
88
88
  }
89
89
 
90
90
  table {
91
- padding: 0 26px
91
+ padding: 0 26px;
92
92
  }
93
93
 
94
94
  tr {
@@ -96,11 +96,11 @@ tr {
96
96
  text-decoration: none;
97
97
  color: {%- include styling/theme-color.css -%};
98
98
  font-size: 25px;
99
- transition: 0.3s
99
+ transition: 0.3s;
100
100
  }
101
101
 
102
102
  tr:hover {
103
- cursor: pointer
103
+ cursor: pointer;
104
104
  }
105
105
 
106
106
  td {
@@ -109,28 +109,25 @@ td {
109
109
 
110
110
  @media screen and (max-height: 450px) {
111
111
  .nav {
112
- padding-top: 15px
112
+ padding-top: 15px;
113
113
  }
114
114
  .nav a {
115
- font-size: 18px
115
+ font-size: 18px;
116
116
  }
117
117
  }
118
118
 
119
119
  @media only screen and (max-width: 500px) {
120
120
  .cards {
121
- display: inline
121
+ display: inline;
122
122
  }
123
-
124
123
  .card {
125
- height: 350px
124
+ height: 350px;
126
125
  }
127
-
128
126
  .card h1 {
129
- padding-top: 14px
127
+ padding-top: 14px;
130
128
  }
131
-
132
129
  .content {
133
- margin: 75px 12.5px
130
+ margin: 75px 12.5px;
134
131
  }
135
132
  }
136
133
 
@@ -169,7 +166,7 @@ td {
169
166
  -webkit-transition: 0.25s ease-in-out;
170
167
  -moz-transition: 0.25s ease-in-out;
171
168
  -o-transition: 0.25s ease-in-out;
172
- transition: 0.25s ease-in-out
169
+ transition: 0.25s ease-in-out;
173
170
  }
174
171
 
175
172
  #nav-btn span:nth-child(1) {
@@ -177,7 +174,7 @@ td {
177
174
  -webkit-transform-origin: left center;
178
175
  -moz-transform-origin: left center;
179
176
  -o-transform-origin: left center;
180
- transform-origin: left center
177
+ transform-origin: left center;
181
178
  }
182
179
 
183
180
  #nav-btn span:nth-child(2) {
@@ -185,7 +182,7 @@ td {
185
182
  -webkit-transform-origin: left center;
186
183
  -moz-transform-origin: left center;
187
184
  -o-transform-origin: left center;
188
- transform-origin: left center
185
+ transform-origin: left center;
189
186
  }
190
187
 
191
188
  #nav-btn span:nth-child(3) {
@@ -193,11 +190,11 @@ td {
193
190
  -webkit-transform-origin: left center;
194
191
  -moz-transform-origin: left center;
195
192
  -o-transform-origin: left center;
196
- transform-origin: left center
193
+ transform-origin: left center;
197
194
  }
198
195
 
199
196
  #nav-btn.open span {
200
- background-color: {%- include styling/theme-color.css -%}
197
+ background-color: {%- include styling/theme-color.css -%};
201
198
  }
202
199
 
203
200
  #nav-btn.open span:nth-child(1) {
@@ -206,12 +203,12 @@ td {
206
203
  -o-transform: rotate(45deg);
207
204
  transform: rotate(45deg);
208
205
  top: -3px;
209
- left: 8px
206
+ left: 8px;
210
207
  }
211
208
 
212
209
  #nav-btn.open span:nth-child(2) {
213
210
  width: 0%;
214
- opacity: 0
211
+ opacity: 0;
215
212
  }
216
213
 
217
214
  #nav-btn.open span:nth-child(3) {
@@ -220,7 +217,7 @@ td {
220
217
  -o-transform: rotate(-45deg);
221
218
  transform: rotate(-45deg);
222
219
  top: 39px;
223
- left: 8px
220
+ left: 8px;
224
221
  }
225
222
 
226
223
  button {
@@ -235,12 +232,12 @@ button {
235
232
  padding: 0 2em;
236
233
  cursor: pointer;
237
234
  transition: 800ms ease all;
238
- outline: none
235
+ outline: none;
239
236
  }
240
237
 
241
238
  button:hover {
242
239
  background: #fff;
243
- color: {%- include styling/theme-color.css -%}
240
+ color: {%- include styling/theme-color.css -%};
244
241
  }
245
242
 
246
243
  button:before,
@@ -252,24 +249,24 @@ button:after {
252
249
  height: 2px;
253
250
  width: 0;
254
251
  background: {%- include styling/theme-color.css -%};
255
- transition: 400ms ease all
252
+ transition: 400ms ease all;
256
253
  }
257
254
 
258
255
  button:after {
259
256
  right: inherit;
260
257
  top: inherit;
261
258
  left: 0;
262
- bottom: 0
259
+ bottom: 0;
263
260
  }
264
261
 
265
262
  button:hover:before,
266
263
  button:hover:after {
267
264
  width: 100%;
268
- transition: 800ms ease all
265
+ transition: 800ms ease all;
269
266
  }
270
267
 
271
268
  a {
272
- color: white
269
+ color: white;
273
270
  }
274
271
 
275
272
  .block-solid {
@@ -277,7 +274,7 @@ a {
277
274
  border: white solid 4px;
278
275
  padding: 7.5px;
279
276
  margin-top: -5px;
280
- text-align: center
277
+ text-align: center;
281
278
  }
282
279
 
283
280
  {% unless site.no_extra_css %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: picklecore
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reece Dunham
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-12-16 00:00:00.000000000 Z
12
+ date: 2019-12-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -65,14 +65,14 @@ dependencies:
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 2.1.0
68
+ version: 2.1.2
69
69
  type: :development
70
70
  prerelease: false
71
71
  version_requirements: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - '='
74
74
  - !ruby/object:Gem::Version
75
- version: 2.1.0
75
+ version: 2.1.2
76
76
  - !ruby/object:Gem::Dependency
77
77
  name: rake
78
78
  requirement: !ruby/object:Gem::Requirement
@@ -104,6 +104,7 @@ files:
104
104
  - _includes/styling/extra.css
105
105
  - _includes/styling/font.css
106
106
  - _includes/styling/theme-color.css
107
+ - _layouts/archive.html
107
108
  - _layouts/default-with-sidebar.html
108
109
  - _layouts/default.html
109
110
  - _layouts/error.html
@@ -142,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
143
  - !ruby/object:Gem::Version
143
144
  version: '0'
144
145
  requirements: []
145
- rubygems_version: 3.1.1
146
+ rubygems_version: 3.1.2
146
147
  signing_key:
147
148
  specification_version: 4
148
149
  summary: A Jekyll theme built to create personal and small websites, but can easily