HackerMatrix 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5cd48671ff29c798edbb9ea05314db33e27ad4f1
4
+ data.tar.gz: 853161a62c65241288bc6308e7ed5bbaa0892e1c
5
+ SHA512:
6
+ metadata.gz: 6358109c1f70cb1ae8ab90a3d4cb1e3fc0bfa67ad7cdb6b3aabb6c226295fec0dbfbfed5ec3c34839fd1e5f6e67370beaf0fddb54be6e2428c2fec0b9b637a48
7
+ data.tar.gz: 6b8ada9aafe0f31eddccb40851d2afe19fee009a151c807c2d4491ff888155a8f6c40ba90ede698aabf67a1f7703525308cab1e4188b376907c0431b5c6f6bbb
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Charlie WONG
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.
@@ -0,0 +1,35 @@
1
+ # HackerMatrix
2
+ HackerMatrix is a theme for Jekyll!
3
+
4
+ ## Installation
5
+
6
+ Add this line to your Jekyll site's `Gemfile`:
7
+
8
+ ```ruby
9
+ gem "HackerMatrix"
10
+ ```
11
+
12
+ And add this line to your Jekyll site's `_config.yml`:
13
+
14
+ ```yaml
15
+ theme: HackerMatrix
16
+ ```
17
+
18
+ And then execute:
19
+
20
+ $ bundle
21
+
22
+ Or install it yourself as:
23
+
24
+ $ gem install HackerMatrix
25
+
26
+ ## Development
27
+
28
+ To set up your environment to develop this theme, run `bundle install`.
29
+
30
+ To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`.
31
+
32
+ ## License
33
+
34
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
35
+
@@ -0,0 +1,46 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ site.lang | default: "en-US" }}">
3
+ <head>
4
+ <meta charset='utf-8'>
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1">
7
+ <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
8
+
9
+ {% seo %}
10
+ </head>
11
+
12
+ <body>
13
+
14
+ <header>
15
+ <div class="container">
16
+ <h1>{{ site.title | default: site.github.repository_name }}</h1>
17
+ <h2>{{ site.description | default: site.github.project_tagline }}</h2>
18
+
19
+ <section id="downloads">
20
+ {% if site.show_downloads %}
21
+ <a href="{{ site.github.zip_url }}" class="btn">Download as .zip</a>
22
+ <a href="{{ site.github.tar_url }}" class="btn">Download as .tar.gz</a>
23
+ {% endif %}
24
+ <a href="{{ site.github.repository_url }}" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
25
+ </section>
26
+ </div>
27
+ </header>
28
+
29
+ <div class="container">
30
+ <section id="main_content">
31
+ {{ content }}
32
+ </section>
33
+ </div>
34
+
35
+ {% if site.google_analytics %}
36
+ <script>
37
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
38
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
39
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
40
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
41
+ ga('create', '{{ site.google_analytics }}', 'auto');
42
+ ga('send', 'pageview');
43
+ </script>
44
+ {% endif %}
45
+ </body>
46
+ </html>
@@ -0,0 +1,14 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <small>{{ page.date | date: "%-d %B %Y" }}</small>
6
+ <h1>{{ page.title }}</h1>
7
+
8
+ <p class="view">by {{ page.author | default: site.author }}</p>
9
+
10
+ {{content}}
11
+
12
+ {% if page.tags %}
13
+ <small>tags: <em>{{ page.tags | join: "</em> - <em>" }}</em></small>
14
+ {% endif %}
@@ -0,0 +1,15 @@
1
+ $apple-blossom: #ac4142;
2
+ $alto: #d0d0d0;
3
+ $bouquet: #aa759f;
4
+ $chelsea-cucumber: #90a959;
5
+ $cod-grey: #151515;
6
+ $conifer: #b5e853;
7
+ $dove-grey: #666;
8
+ $gallery: #eaeaea;
9
+ $grey: #888;
10
+ $gulf-stream: #75b5aa;
11
+ $hippie-blue: #6a9fb5;
12
+ $potters-clay: #8f5536;
13
+ $rajah: #f4bf75;
14
+ $raw-sienna: #d28445;
15
+ $silver-chalice: #aaa;
@@ -0,0 +1,253 @@
1
+ @import "rouge-base16-dark";
2
+ @import "default_colors";
3
+
4
+ $body-background: $cod-grey !default;
5
+ $body-foreground: $gallery !default;
6
+ $header: $conifer !default;
7
+ $blockquote-color: $silver-chalice !default;
8
+ $blockquote-border: $dove-grey !default;
9
+
10
+ body {
11
+ margin: 0;
12
+ padding: 0;
13
+ background: $body-background url("../images/bkg.png") 0 0;
14
+ color: $body-foreground;
15
+ font-size: 16px;
16
+ line-height: 1.5;
17
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
18
+ }
19
+
20
+ /* General & 'Reset' Stuff */
21
+
22
+ .container {
23
+ width: 90%;
24
+ max-width: 1000px;
25
+ margin: 0 auto;
26
+ }
27
+
28
+ section {
29
+ display: block;
30
+ margin: 0 0 20px 0;
31
+ }
32
+
33
+ h1, h2, h3, h4, h5, h6 {
34
+ margin: 0 0 20px;
35
+ }
36
+
37
+ li {
38
+ line-height: 1.4 ;
39
+ }
40
+
41
+ /* Header, <header>
42
+ header - container
43
+ h1 - project name
44
+ h2 - project description
45
+ */
46
+
47
+ header {
48
+ background: rgba(0, 0, 0, 0.1);
49
+ width: 100%;
50
+ border-bottom: 1px dashed $conifer; //header;
51
+ padding: 20px 0;
52
+ margin: 0 0 40px 0;
53
+ }
54
+
55
+ header h1 {
56
+ font-size: 30px;
57
+ line-height: 1.5;
58
+ margin: 0 0 0 -40px;
59
+ font-weight: bold;
60
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
61
+ color: $conifer;//$header;
62
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
63
+ 0 0 5px rgba(181, 232, 83, 0.1),
64
+ 0 0 10px rgba(181, 232, 83, 0.1);
65
+ letter-spacing: -1px;
66
+ -webkit-font-smoothing: antialiased;
67
+ }
68
+
69
+ header h1:before {
70
+ content: "./ ";
71
+ font-size: 24px;
72
+ }
73
+
74
+ header h2 {
75
+ font-size: 18px;
76
+ font-weight: 300;
77
+ color: #666;
78
+ }
79
+
80
+ #downloads .btn {
81
+ display: inline-block;
82
+ text-align: center;
83
+ margin: 0;
84
+ }
85
+
86
+ /* Main Content
87
+ */
88
+
89
+ #main_content {
90
+ width: 100%;
91
+ -webkit-font-smoothing: antialiased;
92
+ }
93
+ section img {
94
+ max-width: 100%
95
+ }
96
+
97
+ h1, h2, h3, h4, h5, h6 {
98
+ font-weight: normal;
99
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
100
+ color: $header;
101
+ letter-spacing: -0.03em;
102
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
103
+ 0 0 5px rgba(181, 232, 83, 0.1),
104
+ 0 0 10px rgba(181, 232, 83, 0.1);
105
+ }
106
+
107
+ #main_content h1 {
108
+ font-size: 30px;
109
+ }
110
+
111
+ #main_content h2 {
112
+ font-size: 24px;
113
+ }
114
+
115
+ #main_content h3 {
116
+ font-size: 18px;
117
+ }
118
+
119
+ #main_content h4 {
120
+ font-size: 14px;
121
+ }
122
+
123
+ #main_content h5 {
124
+ font-size: 12px;
125
+ text-transform: uppercase;
126
+ margin: 0 0 5px 0;
127
+ }
128
+
129
+ #main_content h6 {
130
+ font-size: 12px;
131
+ text-transform: uppercase;
132
+ color: #999;
133
+ margin: 0 0 5px 0;
134
+ }
135
+
136
+ dt {
137
+ font-style: italic;
138
+ font-weight: bold;
139
+ }
140
+
141
+ ul li {
142
+ list-style-image:url('../images/bullet.png');
143
+ }
144
+
145
+ blockquote {
146
+ color: $blockquote-color;
147
+ padding-left: 10px;
148
+ border-left: 1px dotted $blockquote-border;
149
+ }
150
+
151
+ pre {
152
+ background: rgba(0, 0, 0, 0.9);
153
+ border: 1px solid rgba(255, 255, 255, 0.15);
154
+ padding: 10px;
155
+ font-size: 16px;
156
+ color: #b5e853;
157
+ border-radius: 2px;
158
+ word-wrap: normal;
159
+ overflow: auto;
160
+ overflow-y: hidden;
161
+ }
162
+
163
+ code.highlighter-rouge {
164
+ background: rgba(0,0,0,0.9);
165
+ border: 1px solid rgba(255, 255, 255, 0.15);
166
+ padding: 0px 3px;
167
+ margin: 0px -3px;
168
+ color: #aa759f;
169
+ border-radius: 2px;
170
+ }
171
+
172
+ table {
173
+ width: 100%;
174
+ margin: 0 0 20px 0;
175
+ }
176
+
177
+ th {
178
+ text-align: left;
179
+ border-bottom: 1px dashed #b5e853;
180
+ padding: 5px 10px;
181
+ }
182
+
183
+ td {
184
+ padding: 5px 10px;
185
+ }
186
+
187
+ hr {
188
+ height: 0;
189
+ border: 0;
190
+ border-bottom: 1px dashed #b5e853;
191
+ color: #b5e853;
192
+ }
193
+
194
+ /* Buttons
195
+ */
196
+
197
+ .btn {
198
+ display: inline-block;
199
+ background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.3), rgba(35, 35, 35, 0.3) 50%, rgba(10, 10, 10, 0.3) 50%, rgba(0, 0, 0, 0.3));
200
+ padding: 8px 18px;
201
+ border-radius: 50px;
202
+ border: 2px solid rgba(0, 0, 0, 0.7);
203
+ border-bottom: 2px solid rgba(0, 0, 0, 0.7);
204
+ border-top: 2px solid rgba(0, 0, 0, 1);
205
+ color: rgba(255, 255, 255, 0.8);
206
+ font-family: Helvetica, Arial, sans-serif;
207
+ font-weight: bold;
208
+ font-size: 13px;
209
+ text-decoration: none;
210
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
211
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
212
+ }
213
+
214
+ .btn:hover {
215
+ background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.6), rgba(35, 35, 35, 0.6) 50%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 0, 0, 0.8));
216
+ }
217
+
218
+ .btn .icon {
219
+ display: inline-block;
220
+ width: 16px;
221
+ height: 16px;
222
+ margin: 1px 8px 0 0;
223
+ float: left;
224
+ }
225
+
226
+ .btn-github .icon {
227
+ opacity: 0.6;
228
+ background: url("../images/blacktocat.png") 0 0 no-repeat;
229
+ }
230
+
231
+ /* Links
232
+ a, a:hover, a:visited
233
+ */
234
+
235
+ a {
236
+ color: #63c0f5;
237
+ text-shadow: 0 0 5px rgba(104, 182, 255, 0.5);
238
+ }
239
+
240
+ /* Clearfix */
241
+
242
+ .cf:before, .cf:after {
243
+ content:"";
244
+ display:table;
245
+ }
246
+
247
+ .cf:after {
248
+ clear:both;
249
+ }
250
+
251
+ .cf {
252
+ zoom:1;
253
+ }
@@ -0,0 +1,87 @@
1
+ /*
2
+ generated by rouge http://rouge.jneen.net/
3
+ original base16 by Chris Kempson (https://github.com/chriskempson/base16)
4
+ */
5
+
6
+ @import "default_colors";
7
+
8
+ .highlight {
9
+
10
+ $plaintext: $alto !default;
11
+ $string: $chelsea-cucumber !default;
12
+ $literal: $chelsea-cucumber !default;
13
+ $keyword: $bouquet !default;
14
+ $error-foreground: $cod-grey !default;
15
+ $error-background: $apple-blossom !default;
16
+ $comment: $grey !default;
17
+ $preprocessor: $rajah !default;
18
+ $name-space: $rajah !default;
19
+ $name-attribute: $hippie-blue !default;
20
+ $operator: $rajah !default;
21
+ $keyword-type: $raw-sienna !default;
22
+ $regex: $gulf-stream !default;
23
+ $string-escape: $potters-clay !default;
24
+ $deleted: $apple-blossom !default;
25
+ $header: $hippie-blue !default;
26
+
27
+ color: $plaintext;
28
+
29
+ table td { padding: 5px; }
30
+ table pre { margin: 0; }
31
+ .w {
32
+ color: $plaintext;
33
+ }
34
+ .err {
35
+ color: $error-foreground;
36
+ background-color: $error-background;
37
+ }
38
+ .c, .cd, .cm, .c1, .cs {
39
+ color: $comment;
40
+ }
41
+ .cp {
42
+ color: $preprocessor;
43
+ }
44
+ .o, .ow {
45
+ color: $operator;
46
+ }
47
+ .p, .pi {
48
+ color: $plaintext;
49
+ }
50
+ .gi {
51
+ color: $string;
52
+ }
53
+ .gd {
54
+ color: $deleted;
55
+ }
56
+ .gh {
57
+ color: $header;
58
+ font-weight: bold;
59
+ }
60
+ .k, .kn, .kp, .kr, .kv {
61
+ color: $keyword;
62
+ }
63
+ .kc, .kt, .kd {
64
+ color: $keyword-type;
65
+ }
66
+ .s, .sb, .sc, .sd, .s2, .sh, .sx, .s1 {
67
+ color: $string;
68
+ }
69
+ .sr {
70
+ color: $regex;
71
+ }
72
+ .si, .se {
73
+ color: $string-escape;
74
+ }
75
+ .nt, .nn, .nc, .no{
76
+ color: $name-space;
77
+ }
78
+ .na {
79
+ color: $name-attribute;
80
+ }
81
+ .m, .mf, .mh, .mi, .il, .mo, .mb, .mx {
82
+ color: $literal;
83
+ }
84
+ .ss {
85
+ color: $string;
86
+ }
87
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import 'jekyll-theme-hacker';
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,229 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: HackerMatrix
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Charlie WONG
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-05-05 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.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jemoji
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-feed
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.9'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.9'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-sitemap
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.2'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.2'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-seo-tag
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.4'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.4'
83
+ - !ruby/object:Gem::Dependency
84
+ name: jekyll-mentions
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.3'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.3'
97
+ - !ruby/object:Gem::Dependency
98
+ name: jekyll-github-metadata
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '2.9'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '2.9'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rake
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '12.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '12.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: bundler
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '1.16'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '1.16'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rubocop
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '0.50'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '0.50'
153
+ - !ruby/object:Gem::Dependency
154
+ name: html-proofer
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '3.0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '3.0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: w3c_validators
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '1.3'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: '1.3'
181
+ description:
182
+ email:
183
+ - charlie-wong@foxmail.com
184
+ executables: []
185
+ extensions: []
186
+ extra_rdoc_files: []
187
+ files:
188
+ - LICENSE
189
+ - README.md
190
+ - _layouts/default.html
191
+ - _layouts/post.html
192
+ - _sass/_default_colors.scss
193
+ - _sass/jekyll-theme-hacker.scss
194
+ - _sass/rouge-base16-dark.scss
195
+ - assets/css/style.scss
196
+ - assets/images/article-footer.png
197
+ - assets/images/background.png
198
+ - assets/images/bkg.png
199
+ - assets/images/blacktocat.png
200
+ - assets/images/bullet.png
201
+ - assets/images/github.png
202
+ - assets/images/os-apple-48x48.png
203
+ - assets/images/os-linux-48x48.png
204
+ - assets/images/os-windows-48x48.png
205
+ homepage: https://gkide.github.io/HackerMatrix
206
+ licenses:
207
+ - MIT
208
+ metadata: {}
209
+ post_install_message:
210
+ rdoc_options: []
211
+ require_paths:
212
+ - lib
213
+ required_ruby_version: !ruby/object:Gem::Requirement
214
+ requirements:
215
+ - - ">="
216
+ - !ruby/object:Gem::Version
217
+ version: '0'
218
+ required_rubygems_version: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ requirements: []
224
+ rubyforge_project:
225
+ rubygems_version: 2.5.2.1
226
+ signing_key:
227
+ specification_version: 4
228
+ summary: HackerMatrix is a theme for Jekyll.
229
+ test_files: []