jekyll-tagging-related_posts 1.2.0 → 1.3.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63b262e10f4f96fa77576e478f5ff90bc9120480ca2fc69530a4d95618935ca4
4
- data.tar.gz: a633ba445d7db831df1a47ea38850fe7a1d3dd4bbe6e702716a1cd5802323419
3
+ metadata.gz: 8a7e4087019ae7740655c869bb8eb958c6f60efb48ced2cc9eb7de4b074fb30b
4
+ data.tar.gz: ff24958b42cf245f8a6bfb71be4594c6dcd123abdf208a7654bbd66840780921
5
5
  SHA512:
6
- metadata.gz: 1b48221da3348ac4ec3336579be020793922e69e796fdba7151edaddfbb92197a45f19345ecf95514e07d403789a2b1e41b577bbca2ff5a2df4f9f6f1fa8f433
7
- data.tar.gz: ec82f23210ff6ddf176ca4c222497d7f0446b1f3c5fab3aff6eb4b066a51502007c0275ca949f5ee85c13d9f5b847532ce9599ba1249400aa46a29ddd8a8730a
6
+ metadata.gz: 838eefc85ff2ef293b3858e84f6c5d11e62462363fa0e3ff64466c1899cece6536cf65f0dc3e67a7a51b194d39c715f32cacb51bab309854e6026f39138afdc2
7
+ data.tar.gz: 97f33de815fb751899976a1dfc6338649c58c01beea0e92d605b51618f98806e7248a0ded7677b244fd1fedcbe2780846998f978aef35283acc9cf76e09c702e
data/Appraisals CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- SUPPORTED_JEKYLL_VERSIONS = %w[3.9 4.0 4.1 4.2].freeze
3
+ SUPPORTED_JEKYLL_VERSIONS = %w[3.9 4.0 4.1 4.2 4.3].freeze
4
4
 
5
5
  SUPPORTED_JEKYLL_VERSIONS.each do |version|
6
6
  appraise "jekyll-#{version}" do
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016-2022 Toshimaru
3
+ Copyright (c) 2016-2023 Toshimaru
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
@@ -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
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
2
4
  require "rake/testtask"
3
5
 
@@ -0,0 +1,14 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "bundler"
7
+ gem "minitest-reporters"
8
+ gem "minitest"
9
+ gem "pry"
10
+ gem "rake"
11
+ gem "simplecov"
12
+ gem "jekyll", "~> 4.3.0"
13
+
14
+ gemspec path: "../"
@@ -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.6.0"
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
@@ -3,7 +3,7 @@
3
3
  module Jekyll
4
4
  module Tagging
5
5
  module RelatedPosts
6
- VERSION = '1.2.0'
6
+ VERSION = '1.3.0'
7
7
  end
8
8
  end
9
9
  end
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.2.0
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: 2022-06-21 00:00:00.000000000 Z
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.6.0
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.7
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)