jekyll-tagging-related_posts 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Appraisals +1 -1
- data/Gemfile +2 -0
- data/LICENSE.txt +1 -1
- data/README.md +0 -5
- data/Rakefile +2 -0
- data/gemfiles/jekyll_4.3.gemfile +14 -0
- data/jekyll-tagging-related_posts.gemspec +1 -1
- data/lib/jekyll/tagging/related_posts/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a7e4087019ae7740655c869bb8eb958c6f60efb48ced2cc9eb7de4b074fb30b
|
4
|
+
data.tar.gz: ff24958b42cf245f8a6bfb71be4594c6dcd123abdf208a7654bbd66840780921
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 838eefc85ff2ef293b3858e84f6c5d11e62462363fa0e3ff64466c1899cece6536cf65f0dc3e67a7a51b194d39c715f32cacb51bab309854e6026f39138afdc2
|
7
|
+
data.tar.gz: 97f33de815fb751899976a1dfc6338649c58c01beea0e92d605b51618f98806e7248a0ded7677b244fd1fedcbe2780846998f978aef35283acc9cf76e09c702e
|
data/Appraisals
CHANGED
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -9,11 +9,6 @@ Jekyll `related_posts` function based on tags (works on Jekyll3). It replaces or
|
|
9
9
|
|
10
10
|
The calculation algorithm is based on [related\_posts-jekyll\_plugin](https://github.com/LawrenceWoodman/related_posts-jekyll_plugin) by [@LawrenceWoodman](https://github.com/LawrenceWoodman).
|
11
11
|
|
12
|
-
## Requirements
|
13
|
-
|
14
|
-
* Ruby 2.6+
|
15
|
-
* [Jekyll](https://github.com/jekyll/jekyll) 3.9+
|
16
|
-
|
17
12
|
## Installation
|
18
13
|
|
19
14
|
Add this line to your application's Gemfile:
|
data/Rakefile
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.description = %q{Jekyll `related_posts` function based on tags (works on Jekyll3). It replaces original Jekyll's `related_posts` function to use tags to calculate relationships.}
|
13
13
|
spec.homepage = "https://github.com/toshimaru/jekyll-tagging-related_posts"
|
14
14
|
spec.license = "MIT"
|
15
|
-
spec.required_ruby_version = ">= 2.
|
15
|
+
spec.required_ruby_version = ">= 2.7.0"
|
16
16
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
18
18
|
spec.metadata["source_code_uri"] = spec.homepage
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-tagging-related_posts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- toshimaru
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- gemfiles/jekyll_4.0.gemfile
|
49
49
|
- gemfiles/jekyll_4.1.gemfile
|
50
50
|
- gemfiles/jekyll_4.2.gemfile
|
51
|
+
- gemfiles/jekyll_4.3.gemfile
|
51
52
|
- jekyll-tagging-related_posts.gemspec
|
52
53
|
- lib/jekyll-tagging-related_posts.rb
|
53
54
|
- lib/jekyll/tagging/related_posts.rb
|
@@ -67,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
67
68
|
requirements:
|
68
69
|
- - ">="
|
69
70
|
- !ruby/object:Gem::Version
|
70
|
-
version: 2.
|
71
|
+
version: 2.7.0
|
71
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
73
|
requirements:
|
73
74
|
- - ">="
|
74
75
|
- !ruby/object:Gem::Version
|
75
76
|
version: '0'
|
76
77
|
requirements: []
|
77
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.26
|
78
79
|
signing_key:
|
79
80
|
specification_version: 4
|
80
81
|
summary: Jekyll `related_posts` function based on tags (works on Jekyll3)
|