jekyll-theme-open-project 2.0.20 → 2.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6edca8c1b8f52353ca4b68a1fccb3bfae9566b63d431786c68a844bcd8a0816b
4
- data.tar.gz: b39a096dce0dbed9de10b8d8124db967bb7e0747220e6b5a60ffe1a2802b7fba
3
+ metadata.gz: 4801099a04b30000dd3740fcddab2a0d0fba94c02246c805ac13ecb082fbdc55
4
+ data.tar.gz: 401c8baa1493dd2fc9f7b00c019d1cb30f634eca4e361da1cc306908ac479d90
5
5
  SHA512:
6
- metadata.gz: e336074b47459bdcd54d64e8e82a66ecd69b450afcd9dc5c91d2ac94730be3dc7dfd92b9bb8feeb361971c95f498af078fd14196e589fed8fbceaf0e91bc68dd
7
- data.tar.gz: 3608311f95d7f7b1120c6a79b0483a0d13c00fd814441b86b56db101734e5b6584cec9d3335707a974e7b5829c86191857260fb1045afc4f1bf84a8736debec9
6
+ metadata.gz: 8fa7d7242a05f8f39805b090df6c8004d443b542b3ecc7dc6e0875d0d4843e1356dc53d9c6313a652a52c9c58a1f37ea1531450824e677a2255284c1af1e1e83
7
+ data.tar.gz: 979268f2ed79c6aa9ff4836706900579107a9d3ff487bc7463e137b56628333e4f036a70b42ae3976a37778d12ca0d8136ab1fccb3a9046df5143adf65ea3bb9
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2018 Ribose
3
+ Copyright (c) 2020 Ribose
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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
- If you aren’t using Ruby often, the recommended way to install it is with RVM.
46
- Refer to RVM docs and use it to install a fresh Ruby version.
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 2.4.4, it’s known to not work under 2.3
49
- and it hasn’t been tested on newer versions.
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. First, update version number in .gemspec within this repo’s root.
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
- 2. Then, execute `./develop/release`. This does the following:
958
+ 6. Execute `./develop/release`. This does the following:
940
959
 
941
960
  * Builds new gem version
942
961
  * Pushes gem to rubygems.org
@@ -1,5 +1,5 @@
1
1
  <span class="copyright">
2
- <span class="copyright-head">Copyright © 2018 {{ site.legal.name }} —</span>
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
 
@@ -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.0.20
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: 2019-11-01 00:00:00.000000000 Z
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: '3.8'
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: '3.8'
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.0.19
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.0.19
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.3
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: []