jekyll-theme-simple-texture 0.1.2 → 0.1.3
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 +18 -3
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 89fb7756e9581a435b1ed8b10ef34a5fc2ce4387
|
|
4
|
+
data.tar.gz: 070d80ea4a0c7ddcebd7d15f38a3a7cdfc075e89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 157424b7c2192e031efde377ddc4577b0eb2658ad60fa545e402d854421855c23105e38c55b09def86e4cfd439a08873911262a9aad4cc48655ff5e3a32b2a32
|
|
7
|
+
data.tar.gz: ebebc21f19b1884513319038e096aa7fef7d94849188c6ab738b0258353c22f2fa2f5541edfcf40c9d320fa305b043023bf71beeedee3ca81cf2665df097caa7
|
data/README.md
CHANGED
|
@@ -69,11 +69,26 @@ i.e. `jekyllapp` in this example.
|
|
|
69
69
|
|
|
70
70
|
gem install bundler
|
|
71
71
|
|
|
72
|
-
5.
|
|
72
|
+
5. Update the `Gemfile` to look like the following:
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
```ruby
|
|
75
|
+
source "https://rubygems.org"
|
|
75
76
|
|
|
76
|
-
|
|
77
|
+
gem 'jekyll', '= 3.4.4' # locked in for now due to a bug in jekyll 3.5.0
|
|
78
|
+
|
|
79
|
+
group :jekyll_plugins do
|
|
80
|
+
gem 'jekyll-feed'
|
|
81
|
+
gem 'jekyll-redirect-from'
|
|
82
|
+
gem 'jekyll-seo-tag'
|
|
83
|
+
gem 'jekyll-sitemap'
|
|
84
|
+
end
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
6. Run `bundle install` to install dependencies.
|
|
88
|
+
|
|
89
|
+
7. Run Jekyll with `bundle exec jekyll serve`
|
|
90
|
+
|
|
91
|
+
8. Hack away at <http://localhost:4000>!
|
|
77
92
|
|
|
78
93
|
## Contributing
|
|
79
94
|
|
metadata
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-simple-texture
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yi Zeng
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-07-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 3.4.4
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: 3.4.4
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: jekyll-feed
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|