clean-jekyll-theme 1.0.0 → 1.0.1
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 +4 -4
- data/README.md +6 -1
- data/_layouts/default.html +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a480fcbaf890d7b9272f98cc67691fea80d5ac9
|
|
4
|
+
data.tar.gz: 6f538433eb0ec389e8d5a059fc877722cd3273ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8615b14ab61bf67c1a05422085018ad3e2cae70e5f00b7ee08f7f77b9b8938cef30fa054228449f6f81fb8920d1376d9d7a89f2030a3e1d1ff7edf9a1dd8c1f4
|
|
7
|
+
data.tar.gz: e43c9d1463da101e761ab6e47cc205db29de8062a6104c291834ee55180c4fecde55645d528c6c7de53e735f9b6a824809abd007f3ad936ecdf1d4140b3042ea
|
data/README.md
CHANGED
|
@@ -10,10 +10,15 @@ A Jekyll theme that tries to be as clean as possible, and uses [Basscss](http://
|
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
13
|
-
Add
|
|
13
|
+
Add the following lines to your Jekyll site's Gemfile:
|
|
14
14
|
|
|
15
15
|
```ruby
|
|
16
16
|
gem "clean-jekyll-theme"
|
|
17
|
+
|
|
18
|
+
group :jekyll_plugins do
|
|
19
|
+
gem "jekyll-seo-tag", "~> 2.2"
|
|
20
|
+
...
|
|
21
|
+
end
|
|
17
22
|
```
|
|
18
23
|
|
|
19
24
|
And add this line to your Jekyll site's `_config.yml`:
|
data/_layouts/default.html
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: clean-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Siddhant Goel
|
|
@@ -24,6 +24,20 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '3.3'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: jekyll-seo-tag
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '2.2'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '2.2'
|
|
27
41
|
description: A clean theme for Jekyll based on Basscss
|
|
28
42
|
email:
|
|
29
43
|
- siddhantgoel@gmail.com
|