jekyll-theme-open-project 2.0.19 → 2.1.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 +34 -10
- data/_data/placeholder.yml +0 -0
- data/_includes/post-card.html +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a97db70bddcc7b0ba729fcc7ac493f3226592e888983cc7051ca80a4ddc7eb4
|
|
4
|
+
data.tar.gz: 67fb2c2e09728ed2b570e2782c40117cf5ed6a98d26631ca4f1abf36676e1be1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 858994a7891242eb69d53b70fd5cb8795b3656e8c4edf5f61e63a0aed5d707dcac56d3317153df97de8c960f95b9a2c1181017322700a5eeeec082ba41e13d31
|
|
7
|
+
data.tar.gz: b3b8f1ca41184a06ca8cb4d0ba34d162819103a1ea73a381610c359ecd964977cbb190f8165da33ba8ab4a8ac2e1382d732768162109c9410cf5c3f4a9cc7d9c
|
data/README.md
CHANGED
|
@@ -7,9 +7,14 @@ open-source software and specifications in a navigable and elegant way.
|
|
|
7
7
|
Open Project fits two types of sites:
|
|
8
8
|
that describe one individual project, and that combine projects into sort of an open hub.
|
|
9
9
|
|
|
10
|
-
See
|
|
11
|
-
|
|
10
|
+
**Demo**: See [Ribose Open](https://open.ribose.com/) project sites—for example,
|
|
11
|
+
[Metanorma](https://www.metanorma.com),
|
|
12
|
+
[RNP](https://www.rnpgp.com),
|
|
13
|
+
[Cryptode](https://www.cryptode.com),
|
|
14
|
+
[Relaton](https://www.relaton.com).
|
|
12
15
|
|
|
16
|
+
See also: CI_OPS for how to set up automated build and deployment of sites
|
|
17
|
+
to AWS S3.
|
|
13
18
|
|
|
14
19
|
## Contents
|
|
15
20
|
|
|
@@ -35,13 +40,16 @@ to AWS S3.
|
|
|
35
40
|
|
|
36
41
|
## Starting a site with this theme
|
|
37
42
|
|
|
38
|
-
### Getting started with Ruby
|
|
43
|
+
### Getting started with Ruby and Jekyll
|
|
39
44
|
|
|
40
|
-
|
|
41
|
-
|
|
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.)
|
|
42
47
|
|
|
43
|
-
The currently recommended version is
|
|
44
|
-
|
|
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.
|
|
45
53
|
|
|
46
54
|
### Start new Jekyll site
|
|
47
55
|
|
|
@@ -247,7 +255,7 @@ For hub-wide posts, put posts under _posts/ in site root and name files e.g.
|
|
|
247
255
|
`2018-04-20-welcome-to-jekyll.markdown` (no change from the usual Jekyll setup).
|
|
248
256
|
|
|
249
257
|
If ``use_picture`` is set to "assets", author photo would be expected to
|
|
250
|
-
reside under assets/blog/authors/<author email>.jpg
|
|
258
|
+
reside under `assets/blog/authors/<author email>.jpg`.
|
|
251
259
|
|
|
252
260
|
For project posts, see below the project site section.
|
|
253
261
|
|
|
@@ -929,9 +937,25 @@ of this repo and have a Jekyll site using this theme:
|
|
|
929
937
|
Make sure theme works: build script is under construction,
|
|
930
938
|
so use good judgement and thorough manual testing.
|
|
931
939
|
|
|
932
|
-
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”).
|
|
933
957
|
|
|
934
|
-
|
|
958
|
+
6. Execute `./develop/release`. This does the following:
|
|
935
959
|
|
|
936
960
|
* Builds new gem version
|
|
937
961
|
* Pushes gem to rubygems.org
|
|
File without changes
|
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.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-05-31 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.1
|
|
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.1
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: bundler
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -160,6 +160,7 @@ files:
|
|
|
160
160
|
- LICENSE.txt
|
|
161
161
|
- README.md
|
|
162
162
|
- _config.yml
|
|
163
|
+
- _data/placeholder.yml
|
|
163
164
|
- _includes/_nav-item.html
|
|
164
165
|
- _includes/_post-meta.html
|
|
165
166
|
- _includes/external-link.html
|
|
@@ -239,8 +240,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
239
240
|
- !ruby/object:Gem::Version
|
|
240
241
|
version: '0'
|
|
241
242
|
requirements: []
|
|
242
|
-
|
|
243
|
-
rubygems_version: 2.7.6.2
|
|
243
|
+
rubygems_version: 3.0.6
|
|
244
244
|
signing_key:
|
|
245
245
|
specification_version: 4
|
|
246
246
|
summary: Open Project Jekyll theme
|