vite-jekyll 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +81 -0
  4. data/_includes/_footer.html +24 -0
  5. data/_includes/_head.html +61 -0
  6. data/_includes/_header.html +10 -0
  7. data/_includes/_nav.html +20 -0
  8. data/_includes/_search.html +13 -0
  9. data/_includes/_socials.html +0 -0
  10. data/_includes/asides/_recent_posts.html +0 -0
  11. data/_includes/asides/_sidebar.html +3 -0
  12. data/_includes/google_analytics.html +0 -0
  13. data/_layouts/about.html +0 -0
  14. data/_layouts/default.html +36 -0
  15. data/_layouts/page.html +8 -0
  16. data/_layouts/post-archive.html +5 -0
  17. data/_layouts/post-grid.html +0 -0
  18. data/_layouts/post.html +8 -0
  19. data/_layouts/projects.html +10 -0
  20. data/_sass/_shame.scss +0 -0
  21. data/_sass/_vite-jekyll.scss +35 -0
  22. data/_sass/config/_accessibility.scss +0 -0
  23. data/_sass/config/_animations.scss +0 -0
  24. data/_sass/config/_helpers.scss +0 -0
  25. data/_sass/config/_layout.scss +0 -0
  26. data/_sass/config/_mixins.scss +0 -0
  27. data/_sass/config/_svgs.scss +0 -0
  28. data/_sass/config/_variables.scss +0 -0
  29. data/_sass/elements/_buttons.scss +0 -0
  30. data/_sass/elements/_fonts.scss +0 -0
  31. data/_sass/elements/_forms.scss +0 -0
  32. data/_sass/elements/_icons.scss +0 -0
  33. data/_sass/elements/_links.scss +0 -0
  34. data/_sass/elements/_lists.scss +0 -0
  35. data/_sass/elements/_progress.scss +0 -0
  36. data/_sass/elements/_tables.scss +0 -0
  37. data/_sass/elements/_typography.scss +0 -0
  38. data/_sass/site/_404.scss +0 -0
  39. data/_sass/site/_base.scss +0 -0
  40. data/_sass/site/_footer.scss +0 -0
  41. data/_sass/site/_posts.scss +0 -0
  42. data/_sass/site/_sections.scss +0 -0
  43. data/_sass/site/_sidebar.scss +0 -0
  44. data/_sass/site/_site-header.scss +0 -0
  45. data/_sass/site/_site.nav.scss +0 -0
  46. data/_sass/site/_site.scss +0 -0
  47. data/assets/css/main.scss +6 -0
  48. data/assets/js/main.js +0 -0
  49. data/assets/js/main.min.js +0 -0
  50. metadata +133 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 931bb21e77f5b39b8a94a5c8fc8d8df1e15aafd4a3122a9de07be244041b34af
4
+ data.tar.gz: b1b4c2c8abfc1285384a1a32fc5c21a7abd7af1ea81862f33aabf42910122f4d
5
+ SHA512:
6
+ metadata.gz: 30bc528ef7603dae5157d7ccb4ddd678d5939e74331ff0ef1cf20116b2bc6d969a46d1d1751ce03cf89a4bed686c65c703678de4c0e99512e7e1fdc6fa37e9c7
7
+ data.tar.gz: 72f85444b67279c847f54a9853598738821338e2542be9b55c0047a4b358f047519c9d825edb35653c9a4e6fde8c77e90b11139995e04ec7094409cd604a529c
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Alex Mamel
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,81 @@
1
+ # vite Jekyll minimal starter theme
2
+ A starter kit for using [Sass](http://sass-lang.com/) with [Jekyll](https://jekyllrb.com/) that includes:
3
+ * A barebones Jekyll starter theme
4
+ * A Gulp file with a default task that does the following:
5
+
6
+ * Builds Sass
7
+ * Runs [Autoprefixer](https://github.com/postcss/autoprefixer)
8
+ * Minifies your CSS
9
+ * Builds Jekyll
10
+ * Runs [Browsersync](https://www.browsersync.io/) for live reload
11
+
12
+ ## What is Sass?
13
+ >"Sass makes CSS fun again. Sass is an extension of CSS, adding nested rules, variables, mixins, selector inheritance, and more. It's translated to well-formatted, standard CSS using the command line tool or a web-framework plugin."
14
+ – [Sass](http://sass-lang.com/)
15
+
16
+ ## What is Jekyll?
17
+ >"Jekyll is a simple, blog-aware, static site generator perfect for personal, project, or organization sites. Think of it like a file-based CMS, without all the complexity. Jekyll takes your content, renders Markdown and Liquid templates, and spits out a complete, static website ready to be served by Apache, Nginx or another web server. Jekyll is the engine behind GitHub Pages, which you can use to host sites right from your GitHub repositories."
18
+ – [Jekyll](https://jekyllrb.com/)
19
+
20
+
21
+ ## Requirements
22
+ * [Bundler](http://bundler.io/)
23
+ * [gulp-cli](https://www.npmjs.com/package/gulp-cli)
24
+ * [Jekyll](https://jekyllrb.com/)
25
+ * [Node.js](https://nodejs.org/en/)
26
+ * [npm](https://www.npmjs.com/)
27
+ * [Ruby](https://www.ruby-lang.org/en/)
28
+
29
+
30
+ ## Get started
31
+ * `bundle install` to install Ruby gems
32
+ * `npm install` to install npm packages
33
+ * `gulp` to run the default Gulp task
34
+
35
+
36
+ Inspired by [@taylorbryant](https://github.com/taylorbryant)'s [Sass Jekyll Starter](https://github.com/taylorbryant/sass-jekyll/blob/master/README.md).
37
+
38
+
39
+ ## Installation
40
+
41
+ Add this line to your Jekyll site's `Gemfile`:
42
+
43
+ ```ruby
44
+ gem "vite-jekyll"
45
+ ```
46
+
47
+ And add this line to your Jekyll site's `_config.yml`:
48
+
49
+ ```yaml
50
+ theme: vite-jekyll
51
+ ```
52
+
53
+ And then execute:
54
+
55
+ $ `bundle exec jekyll serve`
56
+
57
+ Or install it yourself as:
58
+
59
+ $ gem install vite-jekyll
60
+
61
+ ## Usage
62
+
63
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
64
+
65
+ ## Contributing
66
+
67
+ 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.
68
+
69
+ ## Development
70
+
71
+ To set up your environment to develop this theme, run `bundle install`.
72
+
73
+ 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.
74
+
75
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
76
+ To add a custom directory to your theme-gem, please edit the regexp in `vite-jekyll.gemspec` accordingly.
77
+
78
+ ## License
79
+
80
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
81
+
@@ -0,0 +1,24 @@
1
+ <footer class="site-footer h-card" role="contentinfo">
2
+ <data class="u-url" href="/"></data>
3
+
4
+ <div class="container">
5
+
6
+ <h2 class="footer-heading">Your awesome title</h2>
7
+
8
+ <div class="footer-col-wrapper">
9
+ <div class="footer-col footer-col-1">
10
+ <ul class="contact-list">
11
+ <li class="p-name">Your awesome title</li><li><a class="u-email" href="mailto:your-email@example.com">your-email@example.com</a></li></ul>
12
+ </div>
13
+
14
+ <div class="footer-col footer-col-2"><ul class="social-media-list"><li><a href="https://github.com/jekyll"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">jekyll</span></a></li><li><a href="https://www.twitter.com/jekyllrb"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#twitter"></use></svg> <span class="username">jekyllrb</span></a></li></ul>
15
+ </div>
16
+
17
+ <div class="footer-col footer-col-3">
18
+ <p>Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.</p>
19
+ </div>
20
+ </div>
21
+
22
+ </div>
23
+
24
+ </footer>
@@ -0,0 +1,61 @@
1
+ <head>
2
+ <!-- Canonical link to help search engines -->
3
+ <link rel="canonical" href="{{ site.baseurl }}{{ page.url }}" />
4
+
5
+ <!-- Basic meta elements -->
6
+ <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
7
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
8
+
9
+ <!-- Enable responsiveness on mobile devices-->
10
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"/>
11
+
12
+ <!-- Dublin Core metadata for Site -->
13
+ <meta name="DC.title" content="{{ page.title }}" />
14
+ <meta name="DC.creator" content="{{ page.author }}" />
15
+ <meta name="DC.contributor" content="{{ page.editor }}" />
16
+ <meta name="DC.date" content="{{ page.publication-date }}" />
17
+ <meta name="DC.rights" content="{{ page.rights }}" />
18
+ <meta name="DC.source" content="{{ site.title }}" />
19
+
20
+ <!-- Open Graph metadata -->
21
+
22
+ {% if page.layout == "default" %}
23
+ <meta property="og:title" content="{{page.title}}"/>
24
+ <meta property="og:description" content="{{site.description}}">
25
+ <meta property="og:type" content="website" />
26
+ <meta property="og:url" content="{{site.url}}{{site.baseurl}}{{page.url}}"/>
27
+ <meta property="og:image" content="{{site.url}}{{site.baseurl}}/assets/open-graph-logo.png"/>
28
+ <meta property="og:image:width" content="200" />
29
+ <meta property="og:image:height" content="200" />
30
+
31
+ {% else %}
32
+ <meta property="og:title" content="{{page.title}}"/>
33
+ <meta property="og:description" content="{{site.description}}">
34
+ <meta property="og:type" content="article" />
35
+ <meta property="og:url" content="{{site.url}}{{site.baseurl}}{{page.url}}"/>
36
+ <meta property="og:image" content="{{site.url}}{{site.baseurl}}/assets/open-graph-logo.png"/>
37
+ <meta property="og:image:width" content="200" />
38
+ <meta property="og:image:height" content="200" />
39
+ {% endif %}
40
+
41
+ <title>
42
+ {% if page.title == "Projects" %}
43
+ {{ site.title }}
44
+ {% else %}
45
+ {{ page.title }}
46
+ {% endif %}
47
+ </title>
48
+
49
+ <!-- CSS link -->
50
+ <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css"/>
51
+
52
+ <!-- Icons -->
53
+ <link rel="apple-touch-icon-precomposed" sizes="180x180" href="/assets/apple-touch-icon-precomposed.png"/>
54
+ <link rel="shortcut icon" href="/assets/favicon.ico"/>
55
+
56
+ <script type="application/ld+json">
57
+ {"url":"http://localhost:4000/","headline":"Your awesome title","description":"Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.","name":"Your awesome title","@type":"WebSite","@context":"http://schema.org"}</script>
58
+
59
+ <!-- RSS -->
60
+ <link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml"/>
61
+ </head>
@@ -0,0 +1,10 @@
1
+ <header class="site-header" role="banner">
2
+ <div class="container">
3
+ <h3>
4
+ <a class="site-title" rel="author" href="{{ site.baseurl }}/" title="Portfolio">{{ site.title | newline_to_br }}</a>
5
+ <br><small>{{ site.tagline }}</small>
6
+ </h3>
7
+
8
+ {% include nav.html %}
9
+ </div>
10
+ </header><!-- End Site Header -->
@@ -0,0 +1,20 @@
1
+ <!-- Site Navigation -->
2
+ <nav class="site-nav">
3
+ <ul>
4
+ {% if page.active == "projects" %}
5
+ <li class="active"><a class="page-link" href="/">Projects</a></li>
6
+ {% else %}
7
+ <li><a class="page-link" href="/">Projects</a></li>
8
+ {% endif %}
9
+ {% if page.active == "writing" %}
10
+ <li class="active"><a class="page-link" href="/writing/">Writing</a></li>
11
+ {% else %}
12
+ <li><a class="page-link" href="/writing/">Writing</a></li>
13
+ {% endif %}
14
+ {% if page.active == "about" %}
15
+ <li class="active"><a class="page-link" href="/about/">About</a></li>
16
+ {% else %}
17
+ <li><a class="page-link" href="/about/">About</a></li>
18
+ {% endif %}
19
+ </ul>
20
+ </nav><!-- End Site Nav -->
@@ -0,0 +1,13 @@
1
+ <form id="site_search">
2
+ <div>In case you don't want to use the search box provided by your browser:</div>
3
+ <br>
4
+ <input id="search" type="text" aria-labelledby="search site_search" size="12" />
5
+ </form>
6
+
7
+ <div id="results"></div>
8
+ <ul id="search_results"></ul>
9
+
10
+ <!-- Search Specific Scripts -->
11
+ <script src="{{site.baseurl}}/assets/js/elasticlunr.min.js"></script>
12
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
13
+ <script src="{{site.baseurl}}/assets/js/search.js"></script>
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ <aside>
2
+ <p>Sidebar</p>
3
+ </aside>
File without changes
File without changes
@@ -0,0 +1,36 @@
1
+ <!doctype html>
2
+ <html class="no-js" lang="en-us">
3
+
4
+ {% include head.html %}
5
+
6
+ <body class="theme-base-{{site.color-scheme}}">
7
+ <!-- This if statement decides which sidebar to use -->
8
+ {% if page.toc %}
9
+ {% include sidebar-toc.html %}
10
+ {% else %}
11
+ {% include sidebar.html %}
12
+ {% endif %}
13
+
14
+ <!-- Wrap is the content to shift when toggling the sidebar. We wrap the content to avoid any CSS collisions with our real content. -->
15
+ <div class="site-wrapper">
16
+ <header class="site-header" role="banner">
17
+ <div class="container">
18
+ <h3>
19
+ <a class="site-title" rel="author" href="{{ site.baseurl }}/" title="Portfolio">{{ site.title | newline_to_br }}</a>
20
+ <br><small>{{ site.tagline }}</small>
21
+ </h3>
22
+
23
+ {% include nav.html %}
24
+ </div>
25
+ </header><!-- End Site Header -->
26
+
27
+ <main id="main" class="container page-content" aria-label="Content" role="main">
28
+ {{ content }}
29
+ </main><!-- End Main Content -->
30
+ </div><!-- End Site Wrapper -->
31
+
32
+ <!-- Set conditional, async loading of JS in footer -->
33
+ <script src="/assets/js/scripts.min.js"></script>
34
+ {% include google_analytics.html %}
35
+ </body>
36
+ </html>
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="page">
6
+ <h1 class="page-title">{{ page.title }}</h1>
7
+ {{ content }}
8
+ </div>
@@ -0,0 +1,5 @@
1
+ <div class="tiles">
2
+ {% for post in site.categories %}
3
+ {% include post-grid.html %}
4
+ {% endfor %}
5
+ </div><!-- /.tiles -->
File without changes
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="post">
6
+ <h1 class="text-title">{{ page.title }}</h1>
7
+ {{ content }}
8
+ </div>
@@ -0,0 +1,10 @@
1
+ ---
2
+ layout: default
3
+ title: Projects
4
+ active: projects
5
+ ---
6
+
7
+ {% for post in site.posts % }
8
+ <li><a href="{{ post.url }}">{{ post.title }}</a></li>
9
+
10
+ {% endfor %}
data/_sass/_shame.scss ADDED
File without changes
@@ -0,0 +1,35 @@
1
+ // TODO : consider scaffold for dark and light theme
2
+
3
+ @charset 'UTF-8';
4
+ // 1. Configuration and helpers - mixins, variables and tools that do not output code
5
+ @import //'config/normalize',
6
+ 'config/variables',
7
+ 'config/accessibility',
8
+ 'config/layout',
9
+ 'config/mixins',
10
+ 'config/helpers',
11
+ 'config/animations',
12
+ 'config/svgs';
13
+ // 2. Elemental stuff - Root elements styles
14
+ @import 'elements/progress',
15
+ 'elements/icons',
16
+ 'elements/typography',
17
+ 'elements/forms',
18
+ 'elements/links',
19
+ 'elements/buttons',
20
+ 'elements/tables',
21
+ 'elements/lists';
22
+ // 3. Site - Main site components
23
+ @import 'site/base',
24
+ 'site/site-nav',
25
+ 'site/grid',
26
+ 'site/sidebar',
27
+ 'site/site-header',
28
+ 'site/footer',
29
+ 'site/sections',
30
+ 'site/posts',
31
+ 'site/front-page',
32
+ 'site/404',
33
+ 'site/site';
34
+ // 4. Shameful styles - styles that need to be removed and handled differently
35
+ @import 'shame';
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,6 @@
1
+ ---
2
+ # this ensures jekyll reads the file to be transformed into CSS later
3
+ # only Main files contain this front matter, not partials.
4
+ ---
5
+
6
+ @import 'vite-jekyll'
data/assets/js/main.js ADDED
File without changes
File without changes
metadata ADDED
@@ -0,0 +1,133 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vite-jekyll
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - xja
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-03-11 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
+ - xja@pm.me
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/_nav.html
68
+ - _includes/_search.html
69
+ - _includes/_socials.html
70
+ - _includes/asides/_recent_posts.html
71
+ - _includes/asides/_sidebar.html
72
+ - _includes/google_analytics.html
73
+ - _layouts/about.html
74
+ - _layouts/default.html
75
+ - _layouts/page.html
76
+ - _layouts/post-archive.html
77
+ - _layouts/post-grid.html
78
+ - _layouts/post.html
79
+ - _layouts/projects.html
80
+ - _sass/_shame.scss
81
+ - _sass/_vite-jekyll.scss
82
+ - _sass/config/_accessibility.scss
83
+ - _sass/config/_animations.scss
84
+ - _sass/config/_helpers.scss
85
+ - _sass/config/_layout.scss
86
+ - _sass/config/_mixins.scss
87
+ - _sass/config/_svgs.scss
88
+ - _sass/config/_variables.scss
89
+ - _sass/elements/_buttons.scss
90
+ - _sass/elements/_fonts.scss
91
+ - _sass/elements/_forms.scss
92
+ - _sass/elements/_icons.scss
93
+ - _sass/elements/_links.scss
94
+ - _sass/elements/_lists.scss
95
+ - _sass/elements/_progress.scss
96
+ - _sass/elements/_tables.scss
97
+ - _sass/elements/_typography.scss
98
+ - _sass/site/_404.scss
99
+ - _sass/site/_base.scss
100
+ - _sass/site/_footer.scss
101
+ - _sass/site/_posts.scss
102
+ - _sass/site/_sections.scss
103
+ - _sass/site/_sidebar.scss
104
+ - _sass/site/_site-header.scss
105
+ - _sass/site/_site.nav.scss
106
+ - _sass/site/_site.scss
107
+ - assets/css/main.scss
108
+ - assets/js/main.js
109
+ - assets/js/main.min.js
110
+ homepage: https://github.com/amamel/vite-jekyll
111
+ licenses:
112
+ - MIT
113
+ metadata: {}
114
+ post_install_message:
115
+ rdoc_options: []
116
+ require_paths:
117
+ - lib
118
+ required_ruby_version: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ required_rubygems_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ requirements: []
129
+ rubygems_version: 3.0.2
130
+ signing_key:
131
+ specification_version: 4
132
+ summary: a mobile-friendly Jekyll theme for designers and quick deploys
133
+ test_files: []