names_are_hard 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5d693c8e1ce6c254abd4a6ba5709ca702ddfa4e4
4
+ data.tar.gz: f1bdffd289a8119b9725a6ce2e4d0b1e93df949b
5
+ SHA512:
6
+ metadata.gz: ea9d2ecd0c11ca2418bf7ad10bd2d3d478e58ecbdb3dac7f95646e9cdca424ebf355e2cf2fa25b5915815f80b2b2a221ed7ee6dfa0ffeac0dfd21cb31d4a2836
7
+ data.tar.gz: c9c6e81bb40bd7c7035145c27b1ce8894d64b185fe991291e8a2c504dd469f428ea3c1638f717b526ab5fa63a6f16802f1be7c74dad291d29b00cb7e4bb4ce0f
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Chris Johnston
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # names_are_hard
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+ TODO: Delete this and the text above, and describe your gem
8
+
9
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "names_are_hard"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: names_are_hard
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install names_are_hard
31
+
32
+ ## Usage
33
+
34
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
+
36
+ ## Contributing
37
+
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
39
+
40
+ ## Development
41
+
42
+ To set up your environment to develop this theme, run `bundle install`.
43
+
44
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
45
+
46
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
+ To add a custom directory to your theme-gem, please edit the regexp in `names_are_hard.gemspec` accordingly.
48
+
49
+ ## License
50
+
51
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
+
@@ -0,0 +1,3 @@
1
+ <footer class="page-footer">
2
+ <div class="footer-copyright">{{ site.github_username }} {{ 'now' | date: "%Y" }}</dev>
3
+ </footer>
@@ -0,0 +1,5 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1">
4
+ <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
5
+ </head>
@@ -0,0 +1,6 @@
1
+ <header class="site-header" role="banner">
2
+ <!-- <div class="header-wrapper"> -->
3
+ <a class="site-title" href="{{ "/" | relative_url }}">{{ site.website_title | escape }}</a>
4
+ <a class="github-link" href="https://github.com/{{ site.github_username }}">github.com/{{ site.github_username }}</a>
5
+ <!-- </div> -->
6
+ </header>
@@ -0,0 +1,24 @@
1
+ <header class="site-header-tall" role="banner">
2
+ <!-- <div class="header-wrapper"> -->
3
+ <a class="site-title" href="{{ "/" | relative_url }}">{{ site.website_title | escape }}</a>
4
+ <a class="github-link" href="https://github.com/{{ site.github_username }}">github.com/{{ site.github_username }}</a>
5
+ <!-- </div> -->
6
+
7
+ <!-- include some recent posts underneath -->
8
+
9
+ <div class="post-wrapper">
10
+ {% if site.posts.size > 0 %}
11
+ <h2 class="post-list-heading">Recent:</h2>
12
+ <ul class="post-list">
13
+ {% for post in site.posts limit:3 %}
14
+ <li class="post-element">
15
+ <a class="post-link" href="{{ post.url | relative_url }}">
16
+ {{ post.title }}
17
+ </a>
18
+ </li>
19
+ {% endfor %}
20
+ </ul>
21
+ {% endif %}
22
+ </div>
23
+
24
+ </header>
@@ -0,0 +1,15 @@
1
+
2
+ <div class="post-wrapper">
3
+ {% if site.posts.size > 0 %}
4
+ <h2 class="post-list-heading">Posts</h2>
5
+ <ul class="post-list">
6
+ {% for post in site.posts limit:3 %}
7
+ <li class="post-element">
8
+ <a class="post-link" href="{{ post.url | relative_url }}">
9
+ {{ post.title }}
10
+ </a>
11
+ </li>
12
+ {% endfor %}
13
+ </ul>
14
+ {% endif %}
15
+ </div>
@@ -0,0 +1,3 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ </head>
@@ -0,0 +1,11 @@
1
+ ---
2
+ # plain and simple format
3
+ layout: boring
4
+ ---
5
+
6
+ {% include simple_page_head.html %}
7
+
8
+ <body style="font-family: monospace;">
9
+ {{ content }}
10
+ </body>
11
+ {% include footer.html %}
@@ -0,0 +1,18 @@
1
+
2
+ {% include head.html %}
3
+ {% include header_posts.html %}
4
+
5
+ <body>
6
+ <div class="home">
7
+
8
+ {% if page.title %}
9
+ <h1 class="page-title"> {{ page.title }}</h1>
10
+ {% endif %}
11
+ <div class="content-wrapper">
12
+ {{ content }}
13
+ </div>
14
+
15
+
16
+ </div>
17
+ </body>
18
+ {% include footer.html %}
@@ -0,0 +1,33 @@
1
+
2
+ {% include head.html %}
3
+ {% include header_posts.html %}
4
+
5
+ <body>
6
+
7
+ <div class="home">
8
+
9
+ {% if page.title %}
10
+ <h1 class="page-title"> {{ page.title }}</h1>
11
+ {% endif %}
12
+ <div class="content-wrapper">
13
+ {{ content }}
14
+ </div>
15
+
16
+ <!-- this does not work -->
17
+ <!--{% if site.posts.size > 0 %}-->
18
+ <!--<div class="home-post-wrapper">-->
19
+ <!--{% for post in site.posts limit:1 %}-->
20
+ <!--<div class="home-first-post-title">-->
21
+ <!--{{ post.title }}-->
22
+ <!--</div>-->
23
+ <!--<div class="home-first-post-wrapper">-->
24
+ <!--{{ post.excerpt | strip_html | truncatewords:50 }}-->
25
+ <!--</div>-->
26
+ <!--{% endfor %}-->
27
+ <!--</div>-->
28
+ <!--{% endif %}-->
29
+
30
+ </div>
31
+
32
+ </body>
33
+ {% include footer.html %}
@@ -0,0 +1,16 @@
1
+ {% include head.html %}
2
+ <body>
3
+
4
+ <div class="home">
5
+
6
+ {% if page.title %}
7
+ <h1 class="page-title"> {{ page.title }}</h1>
8
+ {% endif %}
9
+ <div class="content-wrapper">
10
+ {{ content }}
11
+ </div>
12
+
13
+ </div>
14
+ </body>
15
+
16
+ {% include footer.html %}
@@ -0,0 +1 @@
1
+ {{ content }}
@@ -0,0 +1,18 @@
1
+
2
+ {% include head.html %}
3
+ {% include header.html %}
4
+
5
+ <body>
6
+ <div class="home">
7
+
8
+ {% if page.title %}
9
+ <h1 class="page-title"> {{ page.title }}</h1>
10
+ {% endif %}
11
+ <div class="content-wrapper">
12
+ {{ content }}
13
+ </div>
14
+
15
+ </div>
16
+ </body>
17
+
18
+ {% include footer.html %}
@@ -0,0 +1,313 @@
1
+ @charset "UTF-8";
2
+
3
+ // use the style reset
4
+ @import "reset";
5
+ @import url('https://fonts.googleapis.com/css?family=Oswald|Roboto+Condensed');
6
+
7
+ $font-title: 'Oswald', sans-serif;
8
+ $font-main: 'Roboto Condensed', sans-serif !important;
9
+
10
+ $background-color: #142B51 !default;
11
+ $text-background-color: #263037;
12
+ $code-background-color: #D9D9D9;
13
+ $code-foreground-color: black;
14
+ $foreground-color: #E2E4E9 !default;
15
+ $highlight-color: #d2f9e6;
16
+
17
+ $body-font-size: 12pt !default;
18
+ $body-li-size: 10pt;
19
+
20
+ $line-style: 0.5px dotted $foreground-color;
21
+
22
+ body
23
+ {
24
+ color: $foreground-color;
25
+ background-color: $background-color;
26
+ font-family: $font-main;
27
+ }
28
+
29
+ body p
30
+ {
31
+ font-size: $body-font-size;
32
+ line-height: 15pt;
33
+
34
+ margin-top: 7pt;
35
+ margin-bottom: 7pt;
36
+ }
37
+
38
+ body li
39
+ {
40
+ font-size: $body-li-size;
41
+ line-height: $body-li-size;
42
+
43
+ margin-top: 2pt;
44
+ margin-bottom: 2pt;
45
+ }
46
+
47
+
48
+ // .site-header a
49
+ // {
50
+ // color: $foreground-color;
51
+ // text-decoration: none;
52
+ // }
53
+
54
+ .site-header
55
+ {
56
+ position:relative;
57
+
58
+ background-color: $background-color;
59
+ color: $foreground-color;
60
+
61
+ font-family: $font-title;
62
+
63
+ height: 50pt;
64
+ // margin-bottom: 20pt;
65
+ // padding-bottom: 10pt;
66
+ }
67
+
68
+ // tall site header used for headerposts
69
+ .site-header-tall
70
+ {
71
+ // I'm literally extending the height of it. lol
72
+ @extend .site-header;
73
+
74
+ height: 70pt;
75
+
76
+ border-bottom: $line-style;
77
+ }
78
+
79
+ .site-title
80
+ {
81
+ height: 30pt;
82
+ position: absolute;
83
+ top: 5pt;
84
+ bottom: 15pt;
85
+ left: 10pt;
86
+ font-size: 40pt;
87
+ text-decoration: underline;
88
+ }
89
+
90
+ .github-link
91
+ {
92
+ position: absolute;
93
+ bottom: 15pt;
94
+ right: 10pt;
95
+ font-size: 12pt;
96
+ }
97
+
98
+ .home
99
+ {
100
+ padding-left: 20pt;
101
+ padding-right: 20pt;
102
+ }
103
+
104
+ .content-wrapper
105
+ {
106
+ padding-top: 10pt;
107
+ }
108
+
109
+ .post-wrapper
110
+ {
111
+ border-top: $line-style;
112
+ padding-top: 10pt;
113
+ padding-bottom: 5pt;
114
+ border-bottom: $line-style;
115
+ }
116
+
117
+ .site-header-tall > .post-wrapper
118
+ {
119
+ border: 0;
120
+ padding-top: 0;
121
+ position: absolute;
122
+ top: 50pt;
123
+ left: 10pt;
124
+ font-size: 12pt;
125
+ }
126
+
127
+ .site-header-tall > .post-wrapper > .post-list-heading
128
+ {
129
+ font-size: 12pt;
130
+ }
131
+
132
+ .post-list-heading
133
+ {
134
+ display: inline;
135
+ }
136
+
137
+ .post-list
138
+ {
139
+ margin-left: 1pt;
140
+ display: inline;
141
+ overflow: hidden;
142
+ width: 50%;
143
+ }
144
+
145
+ .post-element
146
+ {
147
+ display: inline;
148
+ margin-left: 5pt;
149
+ }
150
+
151
+ .page-title
152
+ {
153
+ margin-top: 10pt;
154
+ margin-bottom: 20pt;
155
+ padding-bottom: 5pt;
156
+ border-bottom: $line-style;
157
+ }
158
+
159
+
160
+ .page-footer
161
+ {
162
+ //background: $background-color;
163
+ height: 10pt;
164
+ position: absolute;
165
+ right: 0;
166
+ bottom: 0;
167
+ width: 100%;
168
+ padding: 5pt;
169
+ }
170
+
171
+ .footer-copyright
172
+ {
173
+ text-align: center;
174
+ }
175
+
176
+ a {
177
+ color: $highlight-color;
178
+
179
+ &:visited {
180
+ color: darken($highlight-color, 10%);
181
+ }
182
+
183
+ &:hover {
184
+ color: $highlight-color;
185
+ text-decoration: underline;
186
+ }
187
+ }
188
+
189
+ .site-title, .github-link
190
+ {
191
+ color: $highlight-color;
192
+ text-decoration: none;
193
+ }
194
+
195
+ h1, h2, h3, h4, h5, h6 {
196
+ font-weight: bold;
197
+ margin-top: 10pt;
198
+ margin-bottom: 8pt;
199
+
200
+ }
201
+
202
+ h1 { font-size: 25pt;}
203
+ h2 { font-size: 22pt;}
204
+ h3 { font-size: 20pt;}
205
+ h4 { font-size: 18pt;}
206
+ h5 { font-size: 15pt;}
207
+ h6 { font-size: 12pt;}
208
+
209
+ b, strong, i, em
210
+ {
211
+ color: $highlight-color;
212
+ }
213
+
214
+ b, strong
215
+ {
216
+ font-weight: bold;
217
+ }
218
+
219
+ i, em
220
+ {
221
+ font-style: italic;
222
+ }
223
+
224
+ ul
225
+ {
226
+ margin-left: 15pt;
227
+ list-style-type: disc;
228
+ }
229
+
230
+ ol {
231
+ margin-left: 15pt;
232
+ list-style: decimal;
233
+ }
234
+
235
+ li {
236
+ > ul,
237
+ > ol {
238
+ margin-bottom: 0;
239
+ }
240
+ }
241
+
242
+ // pre > code is a code block
243
+ // code is inline
244
+
245
+
246
+ // code blcok
247
+ pre.highlight
248
+ {
249
+ background-color: $code-background-color;
250
+ color: $code-foreground-color;
251
+ font-family: monospace;
252
+ border: 1px solid black;
253
+ }
254
+
255
+ // inline code
256
+ code
257
+ {
258
+ background-color: $code-background-color;
259
+ color: $code-foreground-color;
260
+ font-family: monospace;
261
+
262
+ padding-left: 3px;
263
+ padding-right: 3px;
264
+ }
265
+
266
+ pre.highlight > code
267
+ {
268
+ display: block;
269
+ padding: 5pt;
270
+ }
271
+
272
+ img {
273
+ margin-left: auto;
274
+ margin-right: auto;
275
+ display: block;
276
+ width: auto;
277
+ height: auto;
278
+ max-width: 80%;
279
+ vertical-align: middle;
280
+ }
281
+
282
+ blockquote
283
+ {
284
+ display: block;
285
+ padding: 8pt;
286
+ background: lighten($background-color, 10%);
287
+ }
288
+
289
+ table {
290
+ margin-bottom: 5pt;
291
+ width: 100%;
292
+ text-align: left;
293
+ border-collapse: collapse;
294
+ border: 1px solid $foreground-color;
295
+ tr {
296
+ &:nth-child(even) {
297
+ background-color: lighten($background-color, 10%);
298
+ }
299
+ }
300
+ th, td {
301
+ padding: 2pt;
302
+ }
303
+ th {
304
+ background-color: lighten($background-color, 15%);
305
+ border: 1px solid $foreground-color;
306
+ border-bottom-color: darken($foreground-color, 35%);
307
+ }
308
+ td {
309
+ border: 1px solid darken($foreground-color, 35%);
310
+ }
311
+ }
312
+
313
+ @import "syntax";
data/_sass/reset.scss ADDED
@@ -0,0 +1,41 @@
1
+ /* https://gist.github.com/hcatlin/1027867#file-reset-scss */
2
+ /* http://meyerweb.com/eric/tools/css/reset/
3
+ v2.0 | 20110126
4
+ License: none (public domain)
5
+ */
6
+
7
+ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
8
+ margin: 0;
9
+ padding: 0;
10
+ border: 0;
11
+ font-size: 100%;
12
+ font: inherit;
13
+ vertical-align: baseline; }
14
+
15
+ /* HTML5 display-role reset for older browsers */
16
+
17
+ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
18
+ display: block; }
19
+
20
+ body {
21
+ line-height: 1; }
22
+
23
+ ol, ul {
24
+ list-style: none; }
25
+
26
+ blockquote, q {
27
+ quotes: none; }
28
+
29
+ blockquote {
30
+ &:before, &:after {
31
+ content: '';
32
+ content: none; } }
33
+
34
+ q {
35
+ &:before, &:after {
36
+ content: '';
37
+ content: none; } }
38
+
39
+ table {
40
+ border-collapse: collapse;
41
+ border-spacing: 0; }
data/_sass/syntax.scss ADDED
@@ -0,0 +1,70 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+
7
+ .highlighter-rouge & {
8
+ background: #eef;
9
+ }
10
+
11
+ .c { color: #998; font-style: italic } // Comment
12
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
13
+ .k { font-weight: bold } // Keyword
14
+ .o { font-weight: bold } // Operator
15
+ .cm { color: #998; font-style: italic } // Comment.Multiline
16
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
17
+ .c1 { color: #998; font-style: italic } // Comment.Single
18
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
19
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
20
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
21
+ .ge { font-style: italic } // Generic.Emph
22
+ .gr { color: #a00 } // Generic.Error
23
+ .gh { color: #999 } // Generic.Heading
24
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
25
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
26
+ .go { color: #888 } // Generic.Output
27
+ .gp { color: #555 } // Generic.Prompt
28
+ .gs { font-weight: bold } // Generic.Strong
29
+ .gu { color: #aaa } // Generic.Subheading
30
+ .gt { color: #a00 } // Generic.Traceback
31
+ .kc { font-weight: bold } // Keyword.Constant
32
+ .kd { font-weight: bold } // Keyword.Declaration
33
+ .kp { font-weight: bold } // Keyword.Pseudo
34
+ .kr { font-weight: bold } // Keyword.Reserved
35
+ .kt { color: #458; font-weight: bold } // Keyword.Type
36
+ .m { color: #099 } // Literal.Number
37
+ .s { color: #d14 } // Literal.String
38
+ .na { color: #008080 } // Name.Attribute
39
+ .nb { color: #0086B3 } // Name.Builtin
40
+ .nc { color: #458; font-weight: bold } // Name.Class
41
+ .no { color: #008080 } // Name.Constant
42
+ .ni { color: #800080 } // Name.Entity
43
+ .ne { color: #900; font-weight: bold } // Name.Exception
44
+ .nf { color: #900; font-weight: bold } // Name.Function
45
+ .nn { color: #555 } // Name.Namespace
46
+ .nt { color: #000080 } // Name.Tag
47
+ .nv { color: #008080 } // Name.Variable
48
+ .ow { font-weight: bold } // Operator.Word
49
+ .w { color: #bbb } // Text.Whitespace
50
+ .mf { color: #099 } // Literal.Number.Float
51
+ .mh { color: #099 } // Literal.Number.Hex
52
+ .mi { color: #099 } // Literal.Number.Integer
53
+ .mo { color: #099 } // Literal.Number.Oct
54
+ .sb { color: #d14 } // Literal.String.Backtick
55
+ .sc { color: #d14 } // Literal.String.Char
56
+ .sd { color: #d14 } // Literal.String.Doc
57
+ .s2 { color: #d14 } // Literal.String.Double
58
+ .se { color: #d14 } // Literal.String.Escape
59
+ .sh { color: #d14 } // Literal.String.Heredoc
60
+ .si { color: #d14 } // Literal.String.Interpol
61
+ .sx { color: #d14 } // Literal.String.Other
62
+ .sr { color: #009926 } // Literal.String.Regex
63
+ .s1 { color: #d14 } // Literal.String.Single
64
+ .ss { color: #990073 } // Literal.String.Symbol
65
+ .bp { color: #999 } // Name.Builtin.Pseudo
66
+ .vc { color: #008080 } // Name.Variable.Class
67
+ .vg { color: #008080 } // Name.Variable.Global
68
+ .vi { color: #008080 } // Name.Variable.Instance
69
+ .il { color: #099 } // Literal.Number.Integer.Long
70
+ }
data/assets/main.scss ADDED
@@ -0,0 +1,5 @@
1
+ ---
2
+ # only main sass file needs front matter
3
+ ---
4
+
5
+ @import "names_are_hard";
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: names_are_hard
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Chris Johnston
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-02-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - githubchrisjohnston@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/head.html
66
+ - _includes/header.html
67
+ - _includes/header_posts.html
68
+ - _includes/recent_posts.html
69
+ - _includes/simple_page_head.html
70
+ - _layouts/boring.html
71
+ - _layouts/home.html
72
+ - _layouts/homeposts.html
73
+ - _layouts/page.html
74
+ - _layouts/plainhtml.html
75
+ - _layouts/post.html
76
+ - _sass/names_are_hard.scss
77
+ - _sass/reset.scss
78
+ - _sass/syntax.scss
79
+ - assets/main.scss
80
+ homepage: https://chrisjohnston.me
81
+ licenses:
82
+ - MIT
83
+ metadata: {}
84
+ post_install_message:
85
+ rdoc_options: []
86
+ require_paths:
87
+ - lib
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ requirements: []
99
+ rubyforge_project:
100
+ rubygems_version: 2.5.2.1
101
+ signing_key:
102
+ specification_version: 4
103
+ summary: This is a placeholder summary
104
+ test_files: []