jekyll-theme-graphite 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: adb530414f7e4ada13377639949af97e78e6526899d14cba92c5066eb97a49a5
4
+ data.tar.gz: ce4a80107a2e85af608860a18201557a53a1280bf907bc6854f06e5b29d6dd75
5
+ SHA512:
6
+ metadata.gz: 4fec20594f01eeb1a51b88f8d0afdc5aeb839a9bede40aa6de901b840b13b5dc2931589ff0528b1fb3af97df0f081d860f5df09e92529d8e5a6a043fbd4bcb0e
7
+ data.tar.gz: '08aa9041aa3405acfdcd480317257aedf4a43ebc5679b249145c21af0311747eb73a798cb1cf35eecf7b86c56d957c8043f22d7c2b807180dbb5904339bf9715'
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Curtis Updike
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
+ # jekyll-theme-graphite
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 "jekyll-theme-graphite"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: jekyll-theme-graphite
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install jekyll-theme-graphite
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 `jekyll-theme-graphite.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="site-footer">
2
+ {%- include social-media.html -%}
3
+ </footer>
@@ -0,0 +1,9 @@
1
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
2
+ <script>
3
+ window['ga-disable-{{ site.google_analytics }}'] = window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1";
4
+ window.dataLayer = window.dataLayer || [];
5
+ function gtag(){dataLayer.push(arguments);}
6
+ gtag('js', new Date());
7
+
8
+ gtag('config', '{{ site.google_analytics }}');
9
+ </script>
@@ -0,0 +1,18 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ {%- if seo -%}
6
+ {%- seo -%}
7
+ {%- endif -%}
8
+ <link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css">
9
+ <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Serif+Pro" rel="stylesheet">
10
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
11
+ <link rel="stylesheet" href="{{ "/assets/css/styles.css" | relative_url }}">
12
+ {%- if feed_meta -%}
13
+ {%- feed_meta -%}
14
+ {%- endif -%}
15
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
16
+ {%- include google-analytics.html -%}
17
+ {%- endif -%}
18
+ </head>
@@ -0,0 +1,5 @@
1
+ <header class="site-header">
2
+ <h1 class="site-title"><a href="{{ "/" | relative_url }}">{{ site.title | escape }}</a></h1>
3
+
4
+ {%- include nav.html -%}
5
+ </header>
@@ -0,0 +1,13 @@
1
+ <nav class="site-nav">
2
+ {%- assign default_paths = site.pages | map: "path" -%}
3
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
4
+
5
+ <ul>
6
+ {%- for path in page_paths -%}
7
+ {%- assign my_page = site.pages | where: "path", path | first -%}
8
+ {%- if my_page.title -%}
9
+ <li><a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a></li>
10
+ {%- endif -%}
11
+ {%- endfor -%}
12
+ <ul>
13
+ </nav>
@@ -0,0 +1,12 @@
1
+ <ul class="social-media">
2
+ {%- for account in site.social_media_links -%}
3
+ <li><a href="{{ account.link }}">
4
+ <i class="fab {{ account.icon }}"></i>
5
+ </a></li>
6
+ {%- endfor -%}
7
+ {%- if site.show_rss -%}
8
+ <li><a href="{{ 'feed.xml' | relative_url }}">
9
+ <i class="fas fa-rss"></i>
10
+ </a></li>
11
+ {%- endif -%}
12
+ </ul>
@@ -0,0 +1,26 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="home">
6
+
7
+ {%- if site.posts.size > 0 -%}
8
+ <ul class="post-list">
9
+ {%- for post in site.posts -%}
10
+ <li>
11
+ {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
12
+ <span class="post-meta">{{ post.date | date: date_format }}</span>
13
+ <h3>
14
+ <a class="post-link" href="{{ post.url | relative_url }}">
15
+ {{ post.title | escape }}
16
+ </a>
17
+ </h3>
18
+ {%- if site.show_excerpts -%}
19
+ {{ post.excerpt }}
20
+ {%- endif -%}
21
+ </li>
22
+ {%- endfor -%}
23
+ </ul>
24
+ {%- endif -%}
25
+
26
+ </div>
@@ -0,0 +1,18 @@
1
+ <!doctype html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+
8
+ {%- include header.html -%}
9
+
10
+ <main class="page-content" aria-label="Content">
11
+ {{ content }}
12
+ </main>
13
+
14
+ {%- include footer.html -%}
15
+
16
+ </body>
17
+
18
+ </html>
File without changes
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
5
+ <header class="post-header">
6
+ <span class="post-meta">
7
+ <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
8
+ {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
9
+ {{ page.date | date: date_format }}
10
+ </time>
11
+ </span>
12
+ <h1 class="post-title p-name" itemprop="name headline">
13
+ {{ page.title | escape }}
14
+ </h1>
15
+ </header>
16
+
17
+ <div class="post-content e-content" itemprop="articleBody">
18
+ {{ content }}
19
+ </div>
20
+ </article>
data/_sass/main.sass ADDED
@@ -0,0 +1,9 @@
1
+ $backgroud-color: lighten(#F5EDE1, 3%) !default
2
+ $text-color: #58595E !default
3
+ $theme-color: #BE5141 !default
4
+
5
+ $base-font-family: 'Source Serif Pro', serif !default
6
+ $code-font-family: 'Source Code Pro', monospace !default
7
+
8
+ @import 'theme/base'
9
+ @import 'theme/trac-syntax-highlighting'
@@ -0,0 +1,136 @@
1
+ html
2
+ font-family: $base-font-family
3
+ font-size: 2.8vw
4
+ background-color: $backgroud-color
5
+ color: $text-color
6
+ height: 100%
7
+ line-height: 1.45
8
+
9
+ pre, code
10
+ background-color: lighten($backgroud-color, 15%)
11
+ border-radius: 2px
12
+
13
+ pre
14
+ padding: .5rem 1rem
15
+
16
+ code
17
+ border-radius: 2px
18
+ font-family: $code-font-family
19
+ font-size: .75rem
20
+ margin: 0 .05em
21
+ padding: .1em .2em
22
+
23
+ figure
24
+ margin: 0
25
+
26
+ body
27
+ box-sizing: border-box
28
+ border: .5rem solid $theme-color
29
+ align-items: center
30
+ display: flex
31
+ flex-direction: column
32
+ min-height: 100%
33
+ margin: 0
34
+ width: 100%
35
+ & main
36
+ flex: 1
37
+
38
+ header, main, footer
39
+ max-width: 600px
40
+ width: 92%
41
+
42
+ h1
43
+ font-size: 1.2rem
44
+
45
+ p
46
+ margin: 0 0 1em 0
47
+
48
+ a
49
+ color: $text-color
50
+ text-decoration: none
51
+ transition: color 200ms
52
+ &:hover
53
+ color: $theme-color
54
+
55
+ nav a,
56
+ p a
57
+ font-variant: small-caps
58
+ letter-spacing: 0.05rem
59
+
60
+ p a
61
+ font-size: 0.9em
62
+ font-weight: 300
63
+ padding: 0 .05em
64
+
65
+ .site-header
66
+ margin: 24px 0
67
+ text-align: center
68
+
69
+ .site-title
70
+ display: block
71
+ margin: 0.67em 0
72
+ padding-top: 24px
73
+ & a
74
+ font-size: 2rem
75
+ font-variant: none
76
+ font-weight: 600
77
+ letter-spacing: 0
78
+ & a:hover
79
+ color: $text-color
80
+
81
+ .site-nav
82
+ border-bottom: 1px solid $text-color
83
+ border-top: 1px solid $text-color
84
+ & ul
85
+ margin: 0
86
+ padding: 0
87
+ & li
88
+ display: inline-block
89
+ margin: .5rem 1rem
90
+
91
+ .site-footer
92
+ padding-top: 2rem
93
+ padding-bottom: 1rem
94
+ text-align: center
95
+
96
+ .social-media
97
+ font-size: 18px
98
+ margin: 0
99
+ padding: 0
100
+ & li
101
+ display: inline-block
102
+ list-style: none
103
+ & li:nth-child(n+2)
104
+ margin-left: 0.75em
105
+ & li a:hover
106
+ color: $theme-color
107
+
108
+ .post-list
109
+ margin: 0
110
+ padding: 0
111
+ & li
112
+ list-style: none
113
+ & h3
114
+ margin-top: 0rem
115
+ & a
116
+ font-variant: none
117
+
118
+ .post-link
119
+ font-size: 1.2rem
120
+
121
+ .post-title
122
+ margin-top: 0
123
+
124
+ .post-meta
125
+ font-size: 14px
126
+
127
+ @media all and (max-width:520px)
128
+ html
129
+ font-size: 18px
130
+ body
131
+ border-left: none
132
+ border-right: none
133
+
134
+ @media all and (min-width:700px)
135
+ html
136
+ font-size: 20px
@@ -0,0 +1,71 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+ // @extend %vertical-rhythm;
7
+
8
+ .highlighter-rouge & {
9
+ background: #eef;
10
+ }
11
+
12
+ .c { color: #998; font-style: italic } // Comment
13
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
14
+ .k { font-weight: bold } // Keyword
15
+ .o { font-weight: bold } // Operator
16
+ .cm { color: #998; font-style: italic } // Comment.Multiline
17
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
18
+ .c1 { color: #998; font-style: italic } // Comment.Single
19
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
20
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
21
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
22
+ .ge { font-style: italic } // Generic.Emph
23
+ .gr { color: #a00 } // Generic.Error
24
+ .gh { color: #999 } // Generic.Heading
25
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
26
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
27
+ .go { color: #888 } // Generic.Output
28
+ .gp { color: #555 } // Generic.Prompt
29
+ .gs { font-weight: bold } // Generic.Strong
30
+ .gu { color: #aaa } // Generic.Subheading
31
+ .gt { color: #a00 } // Generic.Traceback
32
+ .kc { font-weight: bold } // Keyword.Constant
33
+ .kd { font-weight: bold } // Keyword.Declaration
34
+ .kp { font-weight: bold } // Keyword.Pseudo
35
+ .kr { font-weight: bold } // Keyword.Reserved
36
+ .kt { color: #458; font-weight: bold } // Keyword.Type
37
+ .m { color: #099 } // Literal.Number
38
+ .s { color: #d14 } // Literal.String
39
+ .na { color: #008080 } // Name.Attribute
40
+ .nb { color: #0086B3 } // Name.Builtin
41
+ .nc { color: #458; font-weight: bold } // Name.Class
42
+ .no { color: #008080 } // Name.Constant
43
+ .ni { color: #800080 } // Name.Entity
44
+ .ne { color: #900; font-weight: bold } // Name.Exception
45
+ .nf { color: #900; font-weight: bold } // Name.Function
46
+ .nn { color: #555 } // Name.Namespace
47
+ .nt { color: #000080 } // Name.Tag
48
+ .nv { color: #008080 } // Name.Variable
49
+ .ow { font-weight: bold } // Operator.Word
50
+ .w { color: #bbb } // Text.Whitespace
51
+ .mf { color: #099 } // Literal.Number.Float
52
+ .mh { color: #099 } // Literal.Number.Hex
53
+ .mi { color: #099 } // Literal.Number.Integer
54
+ .mo { color: #099 } // Literal.Number.Oct
55
+ .sb { color: #d14 } // Literal.String.Backtick
56
+ .sc { color: #d14 } // Literal.String.Char
57
+ .sd { color: #d14 } // Literal.String.Doc
58
+ .s2 { color: #d14 } // Literal.String.Double
59
+ .se { color: #d14 } // Literal.String.Escape
60
+ .sh { color: #d14 } // Literal.String.Heredoc
61
+ .si { color: #d14 } // Literal.String.Interpol
62
+ .sx { color: #d14 } // Literal.String.Other
63
+ .sr { color: #009926 } // Literal.String.Regex
64
+ .s1 { color: #d14 } // Literal.String.Single
65
+ .ss { color: #990073 } // Literal.String.Symbol
66
+ .bp { color: #999 } // Name.Builtin.Pseudo
67
+ .vc { color: #008080 } // Name.Variable.Class
68
+ .vg { color: #008080 } // Name.Variable.Global
69
+ .vi { color: #008080 } // Name.Variable.Instance
70
+ .il { color: #099 } // Literal.Number.Integer.Long
71
+ }
@@ -0,0 +1,61 @@
1
+ .highlight {
2
+ .hll { background-color: #ffffcc }
3
+ .c { color: #999988; font-style: italic } /* Comment */
4
+ .err { color: #a61717; background-color: #e3d2d2 } /* Error */
5
+ .k { font-weight: bold } /* Keyword */
6
+ .o { font-weight: bold } /* Operator */
7
+ .cm { color: #999988; font-style: italic } /* Comment.Multiline */
8
+ .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
9
+ .c1 { color: #999988; font-style: italic } /* Comment.Single */
10
+ .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
11
+ .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
12
+ .ge { font-style: italic } /* Generic.Emph */
13
+ .gr { color: #aa0000 } /* Generic.Error */
14
+ .gh { color: #999999 } /* Generic.Heading */
15
+ .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16
+ .go { color: #888888 } /* Generic.Output */
17
+ .gp { color: #555555 } /* Generic.Prompt */
18
+ .gs { font-weight: bold } /* Generic.Strong */
19
+ .gu { color: #aaaaaa } /* Generic.Subheading */
20
+ .gt { color: #aa0000 } /* Generic.Traceback */
21
+ .kc { font-weight: bold } /* Keyword.Constant */
22
+ .kd { font-weight: bold } /* Keyword.Declaration */
23
+ .kn { font-weight: bold } /* Keyword.Namespace */
24
+ .kp { font-weight: bold } /* Keyword.Pseudo */
25
+ .kr { font-weight: bold } /* Keyword.Reserved */
26
+ .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27
+ .m { color: #009999 } /* Literal.Number */
28
+ .s { color: #bb8844 } /* Literal.String */
29
+ .na { color: #008080 } /* Name.Attribute */
30
+ .nb { color: #999999 } /* Name.Builtin */
31
+ .nc { color: #445588; font-weight: bold } /* Name.Class */
32
+ .no { color: #008080 } /* Name.Constant */
33
+ .ni { color: #800080 } /* Name.Entity */
34
+ .ne { color: #990000; font-weight: bold } /* Name.Exception */
35
+ .nf { color: #990000; font-weight: bold } /* Name.Function */
36
+ .nn { color: #555555 } /* Name.Namespace */
37
+ .nt { color: #000080 } /* Name.Tag */
38
+ .nv { color: #008080 } /* Name.Variable */
39
+ .ow { font-weight: bold } /* Operator.Word */
40
+ .w { color: #bbbbbb } /* Text.Whitespace */
41
+ .mf { color: #009999 } /* Literal.Number.Float */
42
+ .mh { color: #009999 } /* Literal.Number.Hex */
43
+ .mi { color: #009999 } /* Literal.Number.Integer */
44
+ .mo { color: #009999 } /* Literal.Number.Oct */
45
+ .sb { color: #bb8844 } /* Literal.String.Backtick */
46
+ .sc { color: #bb8844 } /* Literal.String.Char */
47
+ .sd { color: #bb8844 } /* Literal.String.Doc */
48
+ .s2 { color: #bb8844 } /* Literal.String.Double */
49
+ .se { color: #bb8844 } /* Literal.String.Escape */
50
+ .sh { color: #bb8844 } /* Literal.String.Heredoc */
51
+ .si { color: #bb8844 } /* Literal.String.Interpol */
52
+ .sx { color: #bb8844 } /* Literal.String.Other */
53
+ .sr { color: #808000 } /* Literal.String.Regex */
54
+ .s1 { color: #bb8844 } /* Literal.String.Single */
55
+ .ss { color: #bb8844 } /* Literal.String.Symbol */
56
+ .bp { color: #999999 } /* Name.Builtin.Pseudo */
57
+ .vc { color: #008080 } /* Name.Variable.Class */
58
+ .vg { color: #008080 } /* Name.Variable.Global */
59
+ .vi { color: #008080 } /* Name.Variable.Instance */
60
+ .il { color: #009999 } /* Literal.Number.Integer.Long */
61
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "main"
metadata ADDED
@@ -0,0 +1,130 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-graphite
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Curtis Updike
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-04-24 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.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.9'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.9'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-seo-tag
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '12.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '12.0'
83
+ description:
84
+ email:
85
+ - cjupdike9@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - LICENSE.txt
91
+ - README.md
92
+ - _includes/footer.html
93
+ - _includes/google-analytics.html
94
+ - _includes/head.html
95
+ - _includes/header.html
96
+ - _includes/nav.html
97
+ - _includes/social-media.html
98
+ - _layouts/blog.html
99
+ - _layouts/default.html
100
+ - _layouts/page.html
101
+ - _layouts/post.html
102
+ - _sass/main.sass
103
+ - _sass/theme/_base.sass
104
+ - _sass/theme/_syntax-highlighting.scss
105
+ - _sass/theme/_trac-syntax-highlighting.scss
106
+ - assets/css/styles.sass
107
+ homepage: https://jekyllrb.com/
108
+ licenses:
109
+ - MIT
110
+ metadata: {}
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ required_ruby_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ requirements: []
126
+ rubygems_version: 3.0.1
127
+ signing_key:
128
+ specification_version: 4
129
+ summary: A beautiful, minimal theme for Jekyll.
130
+ test_files: []