hexadecapress 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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/assets/config.yml +0 -0
- data/assets/includes/date.html +9 -0
- data/assets/includes/disqus.html +15 -0
- data/assets/layouts/default.html +32 -0
- data/assets/layouts/page.html +0 -0
- data/assets/layouts/post.html +9 -0
- data/assets/pages/archive.html +11 -0
- data/assets/pages/index.html +10 -0
- data/assets/stylesheets/_base16.scss +16 -0
- data/assets/stylesheets/base16-util.scss +35 -0
- data/assets/stylesheets/main.scss +225 -0
- data/assets/stylesheets/syntax-highlighting.scss +67 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/hexadecapress/version.rb +3 -0
- data/lib/hexadecapress.rb +16 -0
- metadata +160 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5e4ea614f03a9a2c2a15bbf78b6647f09898cebf
|
4
|
+
data.tar.gz: 03a70ffedffe730d140d235a7f1d9d8c30828044
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bca5e85b673d063bbaaeb95f83d5a770d8427375bde45299b69ed58125650207f7ae59fe0d2688384badef693373bc91a9360f08613cbdbce4fab6b06e16808e
|
7
|
+
data.tar.gz: 48e25faae357537d31c643f08a1d70db73ca6fc7ccb9dbaae2443d2cab28d20638f20af8f822caee648f277d4e8a6ed7b2450d441e717043529e7a0a5f233cd3
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Chris Johns
|
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,41 @@
|
|
1
|
+
# Hexadecapress
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/hexadecapress`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'hexadecapress'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install hexadecapress
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake false` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hexadecapress.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
data/assets/config.yml
ADDED
File without changes
|
@@ -0,0 +1,9 @@
|
|
1
|
+
{% assign d = post.date | date: "%d" %}
|
2
|
+
{% case d %}
|
3
|
+
{% when '01' or '21' or '31' %}{{ d }}<sup>st</sup>
|
4
|
+
{% when '02' or '22' %}{{ d }}<sup>nd</sup>
|
5
|
+
{% when '03' or '23' %}{{ d }}<sup>rd</sup>
|
6
|
+
{% else %}{{ d }}<sup>th</sup>
|
7
|
+
{% endcase %}
|
8
|
+
{{ post.date | date: "%b" }},
|
9
|
+
{{ post.date | date: "%Y" }}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<h3>Comments</h3>
|
2
|
+
<div id="disqus_thread">
|
3
|
+
<script type="text/javascript">
|
4
|
+
/* * * CONFIGURATION VARIABLES * * */
|
5
|
+
var disqus_shortname = 'ter0';
|
6
|
+
|
7
|
+
/* * * DON'T EDIT BELOW THIS LINE * * */
|
8
|
+
(function() {
|
9
|
+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
10
|
+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
11
|
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
12
|
+
})();
|
13
|
+
</script>
|
14
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
|
15
|
+
</div>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<title>{{ site.title }}</title>
|
6
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
|
7
|
+
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
8
|
+
{% css_asset_tag %}
|
9
|
+
{% js_asset_tag %}
|
10
|
+
{% feeds %}
|
11
|
+
</head>
|
12
|
+
<body>
|
13
|
+
<header>
|
14
|
+
<h1>{{ site.title }}</h1>
|
15
|
+
<ul>
|
16
|
+
<li><a href="/">home</a></li>
|
17
|
+
<li><a href="/archive">archives</a></li>
|
18
|
+
<li><a href="/feed">rss</a></li>
|
19
|
+
</ul>
|
20
|
+
<ul>
|
21
|
+
<li><a target="_blank" href="https://github.com/{{ site.github_username }}"><i id="header-github" class="header-icon fa fa-github-alt fa"></i></a></li>
|
22
|
+
<li><a target="_blank" href="https://twitter.com/{{ site.twitter_username }}"><i id="header-twitter" class="header-icon fa fa-twitter fa"></i></a></li>
|
23
|
+
<li><a target="_blank" href="https://uk.linkedin.com/in/{{ site.linkedin_id }}"><i id="header-linkedin"class="header-icon fa fa-linkedin fa"></i></a></li>
|
24
|
+
<li><a target="_blank" href="https://keybase.io/ter0"><i id="header-keybase" class="header-icon fa fa-key fa"></i></a></li>
|
25
|
+
</ul>
|
26
|
+
</header>
|
27
|
+
{{ content }}
|
28
|
+
</body>
|
29
|
+
<footer>
|
30
|
+
<p>Copyright © {{ site.time | date: '%Y' }} {{ site.author }}</p>
|
31
|
+
</footer>
|
32
|
+
</html>
|
File without changes
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
layout: hexadecapress:default
|
3
|
+
---
|
4
|
+
{% for post in site.posts %}
|
5
|
+
{% assign currentdate = post.date | date: "%Y" %}
|
6
|
+
{% if currentdate != date %}
|
7
|
+
<h2 class="archive-year-header">{{ currentdate }}</h2>
|
8
|
+
{% assign date = currentdate %}
|
9
|
+
{% endif %}
|
10
|
+
<h3><a class="post-link" href="{{ post.url }}">{{ post.title }}</a></h3>
|
11
|
+
{% endfor %}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
layout: hexadecapress:default
|
3
|
+
---
|
4
|
+
{% for post in site.posts limit:site.index_post_limit %}
|
5
|
+
<div class="post-list-wrapper">
|
6
|
+
<h3><a class="post-link" href="{{ post.url }}">{{ post.title }}</a></h3>
|
7
|
+
<p class="post-meta">{{ post.date_html }}</p>
|
8
|
+
{{ post.excerpt | append: '…' }}
|
9
|
+
</div>
|
10
|
+
{% endfor %}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
$base00: #2b303b;
|
2
|
+
$base01: #343d46;
|
3
|
+
$base02: #4f5b66;
|
4
|
+
$base03: #65737e;
|
5
|
+
$base04: #a7adba;
|
6
|
+
$base05: #c0c5ce;
|
7
|
+
$base06: #dfe1e8;
|
8
|
+
$base07: #eff1f5;
|
9
|
+
$base08: #bf616a;
|
10
|
+
$base09: #d08770;
|
11
|
+
$base0A: #ebcb8b;
|
12
|
+
$base0B: #a3be8c;
|
13
|
+
$base0C: #96b5b4;
|
14
|
+
$base0D: #8fa1b3;
|
15
|
+
$base0E: #b48ead;
|
16
|
+
$base0F: #ab7967;
|
@@ -0,0 +1,35 @@
|
|
1
|
+
@import "base16";
|
2
|
+
|
3
|
+
.base00-background { background-color: $base00; }
|
4
|
+
.base01-background { background-color: $base01; }
|
5
|
+
.base02-background { background-color: $base02; }
|
6
|
+
.base03-background { background-color: $base03; }
|
7
|
+
.base04-background { background-color: $base04; }
|
8
|
+
.base05-background { background-color: $base05; }
|
9
|
+
.base06-background { background-color: $base06; }
|
10
|
+
.base07-background { background-color: $base07; }
|
11
|
+
.base08-background { background-color: $base08; }
|
12
|
+
.base09-background { background-color: $base09; }
|
13
|
+
.base0A-background { background-color: $base0A; }
|
14
|
+
.base0B-background { background-color: $base0B; }
|
15
|
+
.base0C-background { background-color: $base0C; }
|
16
|
+
.base0D-background { background-color: $base0D; }
|
17
|
+
.base0E-background { background-color: $base0E; }
|
18
|
+
.base0F-background { background-color: $base0F; }
|
19
|
+
|
20
|
+
.base00 { color: $base00; }
|
21
|
+
.base01 { color: $base01; }
|
22
|
+
.base02 { color: $base02; }
|
23
|
+
.base03 { color: $base03; }
|
24
|
+
.base04 { color: $base04; }
|
25
|
+
.base05 { color: $base05; }
|
26
|
+
.base06 { color: $base06; }
|
27
|
+
.base07 { color: $base07; }
|
28
|
+
.base08 { color: $base08; }
|
29
|
+
.base09 { color: $base09; }
|
30
|
+
.base0A { color: $base0A; }
|
31
|
+
.base0B { color: $base0B; }
|
32
|
+
.base0C { color: $base0C; }
|
33
|
+
.base0D { color: $base0D; }
|
34
|
+
.base0E { color: $base0E; }
|
35
|
+
.base0F { color: $base0F; }
|
@@ -0,0 +1,225 @@
|
|
1
|
+
---
|
2
|
+
# Only the main Sass file needs front matter (the dashes are enough)
|
3
|
+
---
|
4
|
+
@charset "utf-8";
|
5
|
+
@import "base16";
|
6
|
+
@import url("//fonts.googleapis.com/css?family=Open+Sans|Source+Code+Pro");
|
7
|
+
|
8
|
+
// Our variables
|
9
|
+
$base-font-family: "Open Sans", Helvetica, Arial, sans-serif;
|
10
|
+
$monospace-font-family: "Source Code Pro", monospace;
|
11
|
+
$base-font-size: 15px;
|
12
|
+
$small-font-size: $base-font-size * 0.875;
|
13
|
+
$tiny-font-size: $base-font-size * 0.75;
|
14
|
+
$large-font-size: $base-font-size * 1.125;
|
15
|
+
$base-line-height: 1.5;
|
16
|
+
|
17
|
+
$spacing-unit: 30px;
|
18
|
+
|
19
|
+
$text-color: $base02;
|
20
|
+
$background-color: white;
|
21
|
+
|
22
|
+
// Width of the content area
|
23
|
+
$content-width: 640px;
|
24
|
+
|
25
|
+
/**
|
26
|
+
* Reset some basic elements
|
27
|
+
*/
|
28
|
+
body, h1, h2, h3, h4, h5, h6,
|
29
|
+
p, blockquote, pre, hr,
|
30
|
+
dl, dd, ol, ul, figure {
|
31
|
+
margin: 0;
|
32
|
+
padding: 0;
|
33
|
+
}
|
34
|
+
|
35
|
+
html {
|
36
|
+
padding: $spacing-unit / 2;
|
37
|
+
}
|
38
|
+
|
39
|
+
/**
|
40
|
+
* Basic styling
|
41
|
+
*/
|
42
|
+
body {
|
43
|
+
width: 100%;
|
44
|
+
max-width: $content-width;
|
45
|
+
margin-left: auto;
|
46
|
+
margin-right: auto;
|
47
|
+
font-family: $base-font-family;
|
48
|
+
font-size: $base-font-size;
|
49
|
+
line-height: $base-line-height;
|
50
|
+
font-weight: 300;
|
51
|
+
color: $text-color;
|
52
|
+
background-color: $background-color;
|
53
|
+
text-size-adjust: 100%;
|
54
|
+
}
|
55
|
+
|
56
|
+
.fa {
|
57
|
+
color: $base03;
|
58
|
+
}
|
59
|
+
|
60
|
+
/**
|
61
|
+
* Set `margin-bottom` to maintain vertical rhythm
|
62
|
+
*/
|
63
|
+
h1, h2, h3, h4, h5, h6,
|
64
|
+
p, blockquote, pre,
|
65
|
+
ul, ol, dl, figure,
|
66
|
+
%vertical-rhythm {
|
67
|
+
margin-bottom: $spacing-unit / 2;
|
68
|
+
}
|
69
|
+
|
70
|
+
/**
|
71
|
+
* Images
|
72
|
+
*/
|
73
|
+
img {
|
74
|
+
max-width: 100%;
|
75
|
+
vertical-align: middle;
|
76
|
+
}
|
77
|
+
|
78
|
+
/**
|
79
|
+
* Figures
|
80
|
+
*/
|
81
|
+
figure > img {
|
82
|
+
display: block;
|
83
|
+
}
|
84
|
+
|
85
|
+
figcaption {
|
86
|
+
font-size: $small-font-size;
|
87
|
+
}
|
88
|
+
|
89
|
+
/**
|
90
|
+
* Lists
|
91
|
+
*/
|
92
|
+
ul, ol {
|
93
|
+
margin-left: $spacing-unit;
|
94
|
+
}
|
95
|
+
|
96
|
+
li {
|
97
|
+
> ul,
|
98
|
+
> ol {
|
99
|
+
margin-bottom: 0;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
/**
|
104
|
+
* Links
|
105
|
+
*/
|
106
|
+
a {
|
107
|
+
color: $base0D;
|
108
|
+
text-decoration: none;
|
109
|
+
|
110
|
+
&:visited {
|
111
|
+
color: $base0E;
|
112
|
+
}
|
113
|
+
|
114
|
+
&:hover {
|
115
|
+
text-decoration: underline;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
/**
|
120
|
+
* Blockquotes
|
121
|
+
*/
|
122
|
+
blockquote {
|
123
|
+
border-left: 4px solid $base05;
|
124
|
+
padding-left: $spacing-unit / 2;
|
125
|
+
font-size: $large-font-size;
|
126
|
+
letter-spacing: -1px;
|
127
|
+
font-style: italic;
|
128
|
+
|
129
|
+
> :last-child {
|
130
|
+
margin-bottom: 0;
|
131
|
+
}
|
132
|
+
}
|
133
|
+
|
134
|
+
/**
|
135
|
+
* Code formatting
|
136
|
+
*/
|
137
|
+
pre,
|
138
|
+
code {
|
139
|
+
font-family: $monospace-font-family;
|
140
|
+
background-color: $base07;
|
141
|
+
}
|
142
|
+
|
143
|
+
code {
|
144
|
+
padding: 1px 5px;
|
145
|
+
}
|
146
|
+
|
147
|
+
pre {
|
148
|
+
padding: 8px 12px;
|
149
|
+
overflow-x: scroll;
|
150
|
+
|
151
|
+
> code {
|
152
|
+
border: 0;
|
153
|
+
padding-right: 0;
|
154
|
+
padding-left: 0;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
footer {
|
159
|
+
font-size: $tiny-font-size;
|
160
|
+
text-align: center;
|
161
|
+
}
|
162
|
+
|
163
|
+
header {
|
164
|
+
text-align: center;
|
165
|
+
margin-bottom: $spacing-unit / 2;
|
166
|
+
|
167
|
+
> h1 {
|
168
|
+
margin: 0;
|
169
|
+
}
|
170
|
+
|
171
|
+
>p {
|
172
|
+
margin: 0;
|
173
|
+
}
|
174
|
+
|
175
|
+
> ul {
|
176
|
+
margin: 0;
|
177
|
+
|
178
|
+
> li {
|
179
|
+
margin: 0 $spacing-unit / 4;
|
180
|
+
display: inline;
|
181
|
+
list-style-type: none;
|
182
|
+
}
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
.header-icon {
|
187
|
+
transition: color 0.1s linear;
|
188
|
+
}
|
189
|
+
|
190
|
+
#header-github:hover {
|
191
|
+
color: gray;
|
192
|
+
}
|
193
|
+
|
194
|
+
#header-twitter:hover {
|
195
|
+
color: #55ACEE;
|
196
|
+
}
|
197
|
+
|
198
|
+
#header-linkedin:hover {
|
199
|
+
color: #0077B5;
|
200
|
+
}
|
201
|
+
|
202
|
+
#header-rss:hover {
|
203
|
+
color: #FF6600;
|
204
|
+
}
|
205
|
+
|
206
|
+
#header-keybase:hover {
|
207
|
+
color: #00bff0
|
208
|
+
}
|
209
|
+
|
210
|
+
h3 {
|
211
|
+
margin-bottom: 0;
|
212
|
+
}
|
213
|
+
|
214
|
+
.archive-year-header {
|
215
|
+
margin-top: $spacing-unit;
|
216
|
+
}
|
217
|
+
|
218
|
+
.post-list-wrapper {
|
219
|
+
margin-bottom: $spacing-unit;
|
220
|
+
}
|
221
|
+
|
222
|
+
.post-meta {
|
223
|
+
font-size: $tiny-font-size;
|
224
|
+
margin-bottom: $spacing-unit / 4;
|
225
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
@import "base16";
|
2
|
+
|
3
|
+
.highlight .hll { background-color: #dfe1e8 }
|
4
|
+
.highlight { background: #eff1f5; color: #2b303b }
|
5
|
+
.highlight .c { color: #a7adba } /* Comment */
|
6
|
+
.highlight .err { color: #bf616a } /* Error */
|
7
|
+
.highlight .k { color: #b48ead } /* Keyword */
|
8
|
+
.highlight .l { color: #d08770 } /* Literal */
|
9
|
+
.highlight .n { color: #2b303b } /* Name */
|
10
|
+
.highlight .o { color: #96b5b4 } /* Operator */
|
11
|
+
.highlight .p { color: #2b303b } /* Punctuation */
|
12
|
+
.highlight .cm { color: #a7adba } /* Comment.Multiline */
|
13
|
+
.highlight .cp { color: #a7adba } /* Comment.Preproc */
|
14
|
+
.highlight .c1 { color: #a7adba } /* Comment.Single */
|
15
|
+
.highlight .cs { color: #a7adba } /* Comment.Special */
|
16
|
+
.highlight .gd { color: #bf616a } /* Generic.Deleted */
|
17
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
18
|
+
.highlight .gh { color: #2b303b; font-weight: bold } /* Generic.Heading */
|
19
|
+
.highlight .gi { color: #a3be8c } /* Generic.Inserted */
|
20
|
+
.highlight .gp { color: #a7adba; font-weight: bold } /* Generic.Prompt */
|
21
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
22
|
+
.highlight .gu { color: #96b5b4; font-weight: bold } /* Generic.Subheading */
|
23
|
+
.highlight .kc { color: #b48ead } /* Keyword.Constant */
|
24
|
+
.highlight .kd { color: #b48ead } /* Keyword.Declaration */
|
25
|
+
.highlight .kn { color: #96b5b4 } /* Keyword.Namespace */
|
26
|
+
.highlight .kp { color: #b48ead } /* Keyword.Pseudo */
|
27
|
+
.highlight .kr { color: #b48ead } /* Keyword.Reserved */
|
28
|
+
.highlight .kt { color: #ebcb8b } /* Keyword.Type */
|
29
|
+
.highlight .ld { color: #a3be8c } /* Literal.Date */
|
30
|
+
.highlight .m { color: #d08770 } /* Literal.Number */
|
31
|
+
.highlight .s { color: #a3be8c } /* Literal.String */
|
32
|
+
.highlight .na { color: #8fa1b3 } /* Name.Attribute */
|
33
|
+
.highlight .nb { color: #2b303b } /* Name.Builtin */
|
34
|
+
.highlight .nc { color: #ebcb8b } /* Name.Class */
|
35
|
+
.highlight .no { color: #bf616a } /* Name.Constant */
|
36
|
+
.highlight .nd { color: #96b5b4 } /* Name.Decorator */
|
37
|
+
.highlight .ni { color: #2b303b } /* Name.Entity */
|
38
|
+
.highlight .ne { color: #bf616a } /* Name.Exception */
|
39
|
+
.highlight .nf { color: #8fa1b3 } /* Name.Function */
|
40
|
+
.highlight .nl { color: #2b303b } /* Name.Label */
|
41
|
+
.highlight .nn { color: #ebcb8b } /* Name.Namespace */
|
42
|
+
.highlight .nx { color: #8fa1b3 } /* Name.Other */
|
43
|
+
.highlight .py { color: #2b303b } /* Name.Property */
|
44
|
+
.highlight .nt { color: #96b5b4 } /* Name.Tag */
|
45
|
+
.highlight .nv { color: #bf616a } /* Name.Variable */
|
46
|
+
.highlight .ow { color: #96b5b4 } /* Operator.Word */
|
47
|
+
.highlight .w { color: #2b303b } /* Text.Whitespace */
|
48
|
+
.highlight .mf { color: #d08770 } /* Literal.Number.Float */
|
49
|
+
.highlight .mh { color: #d08770 } /* Literal.Number.Hex */
|
50
|
+
.highlight .mi { color: #d08770 } /* Literal.Number.Integer */
|
51
|
+
.highlight .mo { color: #d08770 } /* Literal.Number.Oct */
|
52
|
+
.highlight .sb { color: #a3be8c } /* Literal.String.Backtick */
|
53
|
+
.highlight .sc { color: #2b303b } /* Literal.String.Char */
|
54
|
+
.highlight .sd { color: #a7adba } /* Literal.String.Doc */
|
55
|
+
.highlight .s2 { color: #a3be8c } /* Literal.String.Double */
|
56
|
+
.highlight .se { color: #d08770 } /* Literal.String.Escape */
|
57
|
+
.highlight .sh { color: #a3be8c } /* Literal.String.Heredoc */
|
58
|
+
.highlight .si { color: #d08770 } /* Literal.String.Interpol */
|
59
|
+
.highlight .sx { color: #a3be8c } /* Literal.String.Other */
|
60
|
+
.highlight .sr { color: #a3be8c } /* Literal.String.Regex */
|
61
|
+
.highlight .s1 { color: #a3be8c } /* Literal.String.Single */
|
62
|
+
.highlight .ss { color: #a3be8c } /* Literal.String.Symbol */
|
63
|
+
.highlight .bp { color: #2b303b } /* Name.Builtin.Pseudo */
|
64
|
+
.highlight .vc { color: #bf616a } /* Name.Variable.Class */
|
65
|
+
.highlight .vg { color: #bf616a } /* Name.Variable.Global */
|
66
|
+
.highlight .vi { color: #bf616a } /* Name.Variable.Instance */
|
67
|
+
.highlight .il { color: #d08770 } /* Literal.Number.Integer.Long */
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "hexadecapress"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'hexadecapress/version'
|
2
|
+
require 'octopress-autoprefixer'
|
3
|
+
require 'octopress-date-format'
|
4
|
+
require 'octopress-feeds'
|
5
|
+
require 'octopress-ink'
|
6
|
+
|
7
|
+
Octopress::Ink.add_plugin({
|
8
|
+
name: "Hexadecapress",
|
9
|
+
slug: "hexadecapress",
|
10
|
+
gem: "hexadecapress",
|
11
|
+
path: File.expand_path(File.join(File.dirname(__FILE__), "..")),
|
12
|
+
version: Hexadecapress::VERSION,
|
13
|
+
description: "",
|
14
|
+
source_url: "https://github.com/ter0/hexadecapress",
|
15
|
+
website: ""
|
16
|
+
})
|
metadata
ADDED
@@ -0,0 +1,160 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: hexadecapress
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Chris Johns
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-07-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.10'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.10'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: clash
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.2'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.2'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: octopress-ink
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.1'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: octopress-date-format
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: octopress-feeds
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '2.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: octopress-autoprefixer
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.0'
|
111
|
+
description: Not much else to say...
|
112
|
+
email:
|
113
|
+
- hexadecapress@ter0.net
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- LICENSE.txt
|
119
|
+
- README.md
|
120
|
+
- assets/config.yml
|
121
|
+
- assets/includes/date.html
|
122
|
+
- assets/includes/disqus.html
|
123
|
+
- assets/layouts/default.html
|
124
|
+
- assets/layouts/page.html
|
125
|
+
- assets/layouts/post.html
|
126
|
+
- assets/pages/archive.html
|
127
|
+
- assets/pages/index.html
|
128
|
+
- assets/stylesheets/_base16.scss
|
129
|
+
- assets/stylesheets/base16-util.scss
|
130
|
+
- assets/stylesheets/main.scss
|
131
|
+
- assets/stylesheets/syntax-highlighting.scss
|
132
|
+
- bin/console
|
133
|
+
- bin/setup
|
134
|
+
- lib/hexadecapress.rb
|
135
|
+
- lib/hexadecapress/version.rb
|
136
|
+
homepage: https://github.com/ter0/hexadecapress
|
137
|
+
licenses:
|
138
|
+
- MIT
|
139
|
+
metadata: {}
|
140
|
+
post_install_message:
|
141
|
+
rdoc_options: []
|
142
|
+
require_paths:
|
143
|
+
- lib
|
144
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '0'
|
149
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - ">="
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '0'
|
154
|
+
requirements: []
|
155
|
+
rubyforge_project:
|
156
|
+
rubygems_version: 2.4.5
|
157
|
+
signing_key:
|
158
|
+
specification_version: 4
|
159
|
+
summary: A base16 theme for the Octopress Ink framework
|
160
|
+
test_files: []
|