jekyll-theme-open-project 2.0.20 → 2.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/LICENSE.txt +1 -1
- data/README.md +27 -8
- data/_includes/legal.html +1 -1
- data/_includes/post-card.html +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4801099a04b30000dd3740fcddab2a0d0fba94c02246c805ac13ecb082fbdc55
|
|
4
|
+
data.tar.gz: 401c8baa1493dd2fc9f7b00c019d1cb30f634eca4e361da1cc306908ac479d90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8fa7d7242a05f8f39805b090df6c8004d443b542b3ecc7dc6e0875d0d4843e1356dc53d9c6313a652a52c9c58a1f37ea1531450824e677a2255284c1af1e1e83
|
|
7
|
+
data.tar.gz: 979268f2ed79c6aa9ff4836706900579107a9d3ff487bc7463e137b56628333e4f036a70b42ae3976a37778d12ca0d8136ab1fccb3a9046df5143adf65ea3bb9
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -40,13 +40,16 @@ to AWS S3.
|
|
|
40
40
|
|
|
41
41
|
## Starting a site with this theme
|
|
42
42
|
|
|
43
|
-
### Getting started with Ruby
|
|
43
|
+
### Getting started with Ruby and Jekyll
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
The currently recommended Ruby version is 2.6.
|
|
46
|
+
(In case you aren’t using Ruby often, the easiest way to install one may be with RVM.)
|
|
47
47
|
|
|
48
|
-
The currently recommended version is
|
|
49
|
-
|
|
48
|
+
The currently recommended Jekyll version is 3 or newer
|
|
49
|
+
(read about [Jekyll installation](https://jekyllrb.com/docs/#instructions)).
|
|
50
|
+
|
|
51
|
+
Note: this theme is known to not work with Ruby older than 2.3,
|
|
52
|
+
and hasn’t been tested on newer versions.
|
|
50
53
|
|
|
51
54
|
### Start new Jekyll site
|
|
52
55
|
|
|
@@ -252,7 +255,7 @@ For hub-wide posts, put posts under _posts/ in site root and name files e.g.
|
|
|
252
255
|
`2018-04-20-welcome-to-jekyll.markdown` (no change from the usual Jekyll setup).
|
|
253
256
|
|
|
254
257
|
If ``use_picture`` is set to "assets", author photo would be expected to
|
|
255
|
-
reside under assets/blog/authors/<author email>.jpg
|
|
258
|
+
reside under `assets/blog/authors/<author email>.jpg`.
|
|
256
259
|
|
|
257
260
|
For project posts, see below the project site section.
|
|
258
261
|
|
|
@@ -934,9 +937,25 @@ of this repo and have a Jekyll site using this theme:
|
|
|
934
937
|
Make sure theme works: build script is under construction,
|
|
935
938
|
so use good judgement and thorough manual testing.
|
|
936
939
|
|
|
937
|
-
1.
|
|
940
|
+
1. Pick the next version number (think whether it’s a patch, minor or major increment).
|
|
941
|
+
|
|
942
|
+
2. Release the chosen version of `jekyll-theme-open-project-helpers` gem:
|
|
943
|
+
see [https://github.com/riboseinc/jekyll-theme-open-project-helpers](gem’s docs).
|
|
944
|
+
|
|
945
|
+
(Theme and plugin are coupled tightly at this time,
|
|
946
|
+
and to simplify mental overhead of dependency management
|
|
947
|
+
we go with one version number for the whole suite.)
|
|
948
|
+
|
|
949
|
+
3. Inside .gemspec within this repo’s root, update main gem version,
|
|
950
|
+
and also the version for `jekyll-theme-open-project-helpers` runtime dependency,
|
|
951
|
+
to the one we are releasing.
|
|
952
|
+
|
|
953
|
+
4. Run `bundle --full-index`, ensure it pulls the newly released plugin gem.
|
|
954
|
+
(It may take a couple minutes after releasing helpers plugin for gem index to update.)
|
|
955
|
+
|
|
956
|
+
5. Make a commit for the new release (“chore: Release vX.X.X”).
|
|
938
957
|
|
|
939
|
-
|
|
958
|
+
6. Execute `./develop/release`. This does the following:
|
|
940
959
|
|
|
941
960
|
* Builds new gem version
|
|
942
961
|
* Pushes gem to rubygems.org
|
data/_includes/legal.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<span class="copyright">
|
|
2
|
-
<span class="copyright-head">Copyright ©
|
|
2
|
+
<span class="copyright-head">Copyright © {{ site.time | date: '%y' }} {{ site.legal.name }} —</span>
|
|
3
3
|
<span class="copyright-tail">All rights reserved.</span>
|
|
4
4
|
</span>
|
|
5
5
|
|
data/_includes/post-card.html
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
</header>
|
|
50
50
|
|
|
51
51
|
<p class="body">
|
|
52
|
-
{{ include.post.excerpt | remove: '<p>' | remove: '</p>' | remove: '<div class="presentation">' | remove: '</div>' }}
|
|
52
|
+
{{ include.post.excerpt | remove: '<p>' | remove: '</p>' | remove: '<div class="presentation">' | remove: '<div class="paragraph">' | remove: '</div>' }}
|
|
53
53
|
</p>
|
|
54
54
|
|
|
55
55
|
<footer class="meta">
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-open-project
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '4.0'
|
|
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: '4.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: jekyll-seo-tag
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 2.
|
|
75
|
+
version: 2.1.3
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 2.
|
|
82
|
+
version: 2.1.3
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: bundler
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -150,7 +150,7 @@ dependencies:
|
|
|
150
150
|
- - "~>"
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: '1.3'
|
|
153
|
-
description:
|
|
153
|
+
description:
|
|
154
154
|
email:
|
|
155
155
|
- open.source@ribose.com
|
|
156
156
|
executables: []
|
|
@@ -225,7 +225,7 @@ homepage: https://github.com/riboseinc/jekyll-theme-open-project/
|
|
|
225
225
|
licenses:
|
|
226
226
|
- MIT
|
|
227
227
|
metadata: {}
|
|
228
|
-
post_install_message:
|
|
228
|
+
post_install_message:
|
|
229
229
|
rdoc_options: []
|
|
230
230
|
require_paths:
|
|
231
231
|
- lib
|
|
@@ -240,8 +240,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
240
240
|
- !ruby/object:Gem::Version
|
|
241
241
|
version: '0'
|
|
242
242
|
requirements: []
|
|
243
|
-
rubygems_version: 3.0.
|
|
244
|
-
signing_key:
|
|
243
|
+
rubygems_version: 3.0.6
|
|
244
|
+
signing_key:
|
|
245
245
|
specification_version: 4
|
|
246
246
|
summary: Open Project Jekyll theme
|
|
247
247
|
test_files: []
|