jekyll_all_collections 0.3.1 → 0.3.2

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: b05fdaeb90e724ead5fe3036822f97e2d3b597eea75b8e2f6e2bd63d8b491401
4
- data.tar.gz: 78ea31227b48c4c3ddaf49c12803c602e9b059097ae73b57083b2f411a28acb2
3
+ metadata.gz: 2e45646b46cf5d0c78cf2fa66195a35790cbefc9cf70c3bfa9e29d28aed1f684
4
+ data.tar.gz: cc7670319738667e93ef05ca78b015aa2089df8225cb03523634bfe7bdccbe20
5
5
  SHA512:
6
- metadata.gz: b871ce27294c5b6474f07bae466bc89ec5b92b3b1d96718889595988934e5fef6f80711aca2ff9faf16b15df5729da8ba44c9d6e4fc67ef4b193f16ddd958262
7
- data.tar.gz: 05ad4525f6e4deb03238a88b74cbd68c5779b7dc8b2437074db5a3c007b67113cec0f2b239d24dc3b148093727958b6505bd091337d602ad95d556e14c7be013
6
+ metadata.gz: '06595b7270e805c029445553062919c8bebf6d493e84dfda94d95341c2368c22508d7ea3e025db87581e681732fae4dc798efab6fab5e5d50abb5d5d43dc5764'
7
+ data.tar.gz: 1dc9236d70270bd7115e1536641f8c3190aaa9e2bdd11f896568e1249c11cc065f056f17eaebd5edda5501a2a4b8e35f9290920f45e8b0475981847bd9d048f6
data/.rubocop.yml CHANGED
@@ -1,39 +1,51 @@
1
+ require:
2
+ # - rubocop-jekyll
3
+ - rubocop-md
4
+ - rubocop-performance
5
+ - rubocop-rake
6
+ - rubocop-rspec
7
+
1
8
  AllCops:
2
9
  Exclude:
10
+ - exe/**/*
3
11
  - vendor/**/*
4
12
  - Gemfile*
5
- - '*.gemspec'
6
13
  NewCops: enable
7
14
  TargetRubyVersion: 2.6
8
15
 
9
- # Gemspec/RequireMFA:
10
- # Enabled: false
16
+ Gemspec/DeprecatedAttributeAssignment:
17
+ Enabled: false
18
+
19
+ Gemspec/RequireMFA:
20
+ Enabled: false
11
21
 
12
22
  Layout/HashAlignment:
23
+ EnforcedColonStyle: table
13
24
  EnforcedHashRocketStyle: table
14
25
 
15
26
  Layout/LineLength:
16
27
  Max: 150
17
28
 
29
+ Metrics/AbcSize:
30
+ Max: 35
31
+
18
32
  Metrics/BlockLength:
19
33
  Exclude:
20
- - spec/**/*
21
- Max: 50
22
-
23
- Metrics/AbcSize:
24
- Max: 42
34
+ - jekyll_all_collections.gemspec
35
+ Max: 30
25
36
 
26
37
  Metrics/CyclomaticComplexity:
27
38
  Max: 25
28
39
 
29
40
  Metrics/MethodLength:
30
- Max: 40
31
-
32
- Metrics/ModuleLength:
33
- Enabled: false
41
+ Max: 30
34
42
 
35
43
  Metrics/PerceivedComplexity:
36
- Max: 20
44
+ Max: 25
45
+
46
+ Naming/FileName:
47
+ Exclude:
48
+ - Rakefile
37
49
 
38
50
  Style/Documentation:
39
51
  Enabled: false
@@ -41,12 +53,15 @@ Style/Documentation:
41
53
  Style/FrozenStringLiteralComment:
42
54
  Enabled: false
43
55
 
44
- Style/LineEndConcatenation:
45
- Enabled: false
56
+ Style/TrailingCommaInHashLiteral:
57
+ EnforcedStyleForMultiline: comma
46
58
 
47
- Style/StringConcatenation:
48
- Exclude:
49
- - spec/**/*
59
+ RSpec/FilePath:
60
+ IgnoreMethods: true
61
+ SpecSuffixOnly: true
50
62
 
51
- Style/StringLiterals:
52
- Enabled: false
63
+ RSpec/ExampleLength:
64
+ Max: 30
65
+
66
+ RSpec/MultipleExpectations:
67
+ Max: 15
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.3.2 / 2023-04-05
2
+ * Modified dependency `'jekyll_plugin_support', '>= 0.5.0'`
3
+
1
4
  ## 0.3.1 / 2023-03-16
2
5
  * Reduced the verbosity of the `@logger` message
3
6
 
@@ -12,9 +12,9 @@ Gem::Specification.new do |spec|
12
12
  spec.executables = []
13
13
 
14
14
  # Specify which files should be added to the gem when it is released.
15
- spec.files = Dir['.rubocop.yml', 'LICENSE.*', 'Rakefile', "{lib,spec}/**/*", "*.gemspec", "*.md"]
15
+ spec.files = Dir['.rubocop.yml', 'LICENSE.*', 'Rakefile', '{lib,spec}/**/*', '*.gemspec', '*.md']
16
16
 
17
- spec.homepage = 'https://www.mslinn.com/blog/2020/12/30/jekyll-plugin-template-collection.html'
17
+ spec.homepage = github
18
18
  spec.license = 'MIT'
19
19
  spec.metadata = {
20
20
  'allowed_push_host' => 'https://rubygems.org',
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
31
31
 
32
32
  spec.add_dependency 'jekyll', '>= 3.5.0'
33
33
  spec.add_dependency 'jekyll_draft', '~> 1.1.1'
34
- spec.add_dependency 'jekyll_plugin_support', '~> 0.5.0'
34
+ spec.add_dependency 'jekyll_plugin_support', '>= 0.5.0'
35
35
  end
@@ -66,7 +66,7 @@ module AllCollectionsHooks
66
66
  end
67
67
 
68
68
  class APage
69
- attr_reader :content, :data, :date, :description, :destination, :draft, :excerpt, :ext, \
69
+ attr_reader :content, :data, :date, :description, :destination, :draft, :excerpt, :ext,
70
70
  :label, :last_modified, :layout, :path, :relative_path, :tags, :title, :type, :url
71
71
 
72
72
  # Verify each property exists before accessing it; this helps write tests
@@ -105,9 +105,9 @@ module AllCollectionsHooks
105
105
  end
106
106
  end
107
107
 
108
- PluginMetaLogger.instance.logger.info {
108
+ PluginMetaLogger.instance.logger.info do
109
109
  "Loaded AllCollectionsHooks v#{JekyllAllCollectionsVersion::VERSION} :site, :pre_render, :normal hook plugin."
110
- }
110
+ end
111
111
  end
112
112
 
113
113
  Liquid::Template.register_filter(AllCollectionsHooks)
@@ -96,8 +96,10 @@ module AllCollectionsTag
96
96
  id = @id.to_s.empty? ? '' : " id='#{@id}'"
97
97
  heading = @heading.to_s.empty? ? '' : "<h2#{id}>#{@heading}</h2>"
98
98
  @site.all_collections.each do |post|
99
- # @logger.debug "#{post.relative_path}: last_modified=#{post.last_modified}(#{post.last_modified.class}) date=#{post.date}(#{post.date.class})"
100
- @logger.debug "Error: #{post.relative_path} has no value for last_modified" if post.last_modified.to_s.empty?
99
+ # @logger.debug do
100
+ # "#{post.relative_path}: last_modified=#{post.last_modified}(#{post.last_modified.class}) date=#{post.date}(#{post.date.class})"
101
+ # end
102
+ @logger.debug { "Error: #{post.relative_path} has no value for last_modified" if post.last_modified.to_s.empty? }
101
103
  end
102
104
  collection = @site.all_collections.sort(&sort_lambda)
103
105
  <<~END_TEXT
@@ -114,8 +116,8 @@ module AllCollectionsTag
114
116
  </div>
115
117
  END_TEXT
116
118
  rescue ArgumentError => e
117
- puts e.message
118
- puts e.backtrace.join("\n")
119
+ @logger.warn { e.message }
120
+ @logger.warn { e.backtrace.join("\n") }
119
121
  end
120
122
 
121
123
  JekyllPluginHelper.register(self, PLUGIN_NAME)
@@ -1,3 +1,3 @@
1
1
  module JekyllAllCollectionsVersion
2
- VERSION = '0.3.1'.freeze
2
+ VERSION = '0.3.2'.freeze
3
3
  end
@@ -27,41 +27,41 @@ RSpec.describe(AllCollectionsTag) do
27
27
  let(:o4) { APageStub.new('2022-01-01', '2023-01-01', 'c_B') }
28
28
  let(:objs) { [o1, o2, o3, o4] }
29
29
 
30
- it "defines sort_by lambda with last_modified" do
30
+ it 'defines sort_by lambda with last_modified' do
31
31
  sort_lambda = ->(a, b) { [a.last_modified] <=> [b.last_modified] }
32
32
  result = objs.sort(&sort_lambda)
33
33
  expect(result).to eq([o1, o2, o3, o4])
34
34
  end
35
35
 
36
- it "makes sort_by lambdas from stringified date" do
37
- sort_lambda = eval "->(a, b) { a.last_modified <=> b.last_modified }",
36
+ it 'makes sort_by lambdas from stringified date' do
37
+ sort_lambda = eval '->(a, b) { a.last_modified <=> b.last_modified }',
38
38
  NullBinding.new.min_binding, __FILE__, __LINE__ - 1
39
39
  result = objs.sort(&sort_lambda)
40
40
  expect(result).to eq([o1, o2, o3, o4])
41
41
  end
42
42
 
43
- it "defines sort_by lambda with array of last_modified" do
43
+ it 'defines sort_by lambda with array of last_modified' do
44
44
  sort_lambda = ->(a, b) { [a.last_modified] <=> [b.last_modified] }
45
45
  result = objs.sort(&sort_lambda)
46
46
  expect(result).to eq([o1, o2, o3, o4])
47
47
  end
48
48
 
49
- it "makes sort_by lambdas from stringified array of last_modified" do
50
- sort_lambda = eval "->(a, b) { [a.last_modified] <=> [b.last_modified] }",
49
+ it 'makes sort_by lambdas from stringified array of last_modified' do
50
+ sort_lambda = eval '->(a, b) { [a.last_modified] <=> [b.last_modified] }',
51
51
  NullBinding.new.min_binding, __FILE__, __LINE__ - 1
52
52
  result = objs.sort(&sort_lambda)
53
53
  expect(result).to eq([o1, o2, o3, o4])
54
54
  end
55
55
 
56
- it "makes sort_by lambdas with descending keys from stringified array of last_modified" do
57
- sort_lambda = eval "->(a, b) { [b.last_modified] <=> [a.last_modified] }",
56
+ it 'makes sort_by lambdas with descending keys from stringified array of last_modified' do
57
+ sort_lambda = eval '->(a, b) { [b.last_modified] <=> [a.last_modified] }',
58
58
  NullBinding.new.min_binding, __FILE__, __LINE__ - 1
59
59
  result = objs.sort(&sort_lambda)
60
60
  expected = [o3, o4, o1, o2]
61
61
  expect(result).to eq(expected)
62
62
  end
63
63
 
64
- it "create_lambda with 1 date key, descending" do
64
+ it 'create_lambda with 1 date key, descending' do
65
65
  lambda_string = AllCollectionsTag::AllCollectionsTag.create_lambda_string('-last_modified')
66
66
  sort_lambda = AllCollectionsTag::AllCollectionsTag.evaluate(lambda_string)
67
67
  result = objs.sort(&sort_lambda)
@@ -70,7 +70,7 @@ RSpec.describe(AllCollectionsTag) do
70
70
  expect(result).to eq(expected)
71
71
  end
72
72
 
73
- it "create_lambda with 1 date key, ascending" do
73
+ it 'create_lambda with 1 date key, ascending' do
74
74
  lambda_string = AllCollectionsTag::AllCollectionsTag.create_lambda_string('date')
75
75
  sort_lambda = AllCollectionsTag::AllCollectionsTag.evaluate(lambda_string)
76
76
  result = objs.sort(&sort_lambda)
@@ -79,7 +79,7 @@ RSpec.describe(AllCollectionsTag) do
79
79
  expect(result).to eq(expected)
80
80
  end
81
81
 
82
- it "create_lambda with 2 date keys, both ascending" do
82
+ it 'create_lambda with 2 date keys, both ascending' do
83
83
  lambda_string = AllCollectionsTag::AllCollectionsTag.create_lambda_string(%w[date last_modified])
84
84
  sort_lambda = AllCollectionsTag::AllCollectionsTag.evaluate(lambda_string)
85
85
  result = objs.sort(&sort_lambda)
@@ -88,7 +88,7 @@ RSpec.describe(AllCollectionsTag) do
88
88
  expect(result).to eq(expected)
89
89
  end
90
90
 
91
- it "create_lambda with 2 date keys, both descending" do
91
+ it 'create_lambda with 2 date keys, both descending' do
92
92
  lambda_string = AllCollectionsTag::AllCollectionsTag.create_lambda_string(['-date', '-last_modified'])
93
93
  sort_lambda = AllCollectionsTag::AllCollectionsTag.evaluate(lambda_string)
94
94
  result = objs.sort(&sort_lambda)
@@ -97,7 +97,7 @@ RSpec.describe(AllCollectionsTag) do
97
97
  expect(result).to eq(expected)
98
98
  end
99
99
 
100
- it "create_lambda with 2 date keys, first descending and second ascending" do
100
+ it 'create_lambda with 2 date keys, first descending and second ascending' do
101
101
  lambda_string = AllCollectionsTag::AllCollectionsTag.create_lambda_string(['-date', 'last_modified'])
102
102
  sort_lambda = AllCollectionsTag::AllCollectionsTag.evaluate(lambda_string)
103
103
  result = objs.sort(&sort_lambda)
@@ -106,7 +106,7 @@ RSpec.describe(AllCollectionsTag) do
106
106
  expect(result).to eq(expected)
107
107
  end
108
108
 
109
- it "create_lambda with 2 date keys, first ascending and second descending" do
109
+ it 'create_lambda with 2 date keys, first ascending and second descending' do
110
110
  lambda_string = AllCollectionsTag::AllCollectionsTag.create_lambda_string(['date', '-last_modified'])
111
111
  sort_lambda = AllCollectionsTag::AllCollectionsTag.evaluate(lambda_string)
112
112
  result = objs.sort(&sort_lambda)
@@ -20,61 +20,61 @@ RSpec.describe(Obj) do # rubocop:disable Metrics/BlockLength
20
20
  let(:objs) { [o1, o2, o3, o4] }
21
21
 
22
22
  # See https://ruby-doc.org/3.2.0/Comparable.html
23
- it "compares one key with ascending dates" do
23
+ it 'compares one key with ascending dates' do
24
24
  expect([o1.last_modified] <=> [o2.last_modified]).to eq(-1)
25
25
  expect([o2.last_modified] <=> [o3.last_modified]).to eq(0)
26
26
  expect([o3.last_modified] <=> [o4.last_modified]).to eq(-1)
27
27
  end
28
28
 
29
- it "compares two keys with ascending dates" do
29
+ it 'compares two keys with ascending dates' do
30
30
  expect([o1.last_modified, o1.date] <=> [o2.last_modified, o2.date]).to eq(-1)
31
31
  expect([o2.last_modified, o2.date] <=> [o3.last_modified, o3.date]).to eq(-1)
32
32
  expect([o3.last_modified, o3.date] <=> [o4.last_modified, o4.date]).to eq(-1)
33
33
  end
34
34
 
35
- it "compares one key with descending dates" do
35
+ it 'compares one key with descending dates' do
36
36
  expect([o1.last_modified] <=> [o2.last_modified]).to eq(-1)
37
37
  expect([o2.last_modified] <=> [o3.last_modified]).to eq(0)
38
38
  end
39
39
 
40
- it "compares two keys with descending dates" do
40
+ it 'compares two keys with descending dates' do
41
41
  expect([o2.last_modified, o2.date] <=> [o1.last_modified, o1.date]).to eq(1)
42
42
  expect([o3.last_modified, o3.date] <=> [o2.last_modified, o2.date]).to eq(1)
43
43
  expect([o4.last_modified, o4.date] <=> [o3.last_modified, o3.date]).to eq(1)
44
44
  end
45
45
 
46
46
  # See https://ruby-doc.org/3.2.0/Enumerable.html#method-i-sort
47
- it "sort with one key ascending" do
47
+ it 'sort with one key ascending' do
48
48
  sort_lambda = ->(a, b) { [a.last_modified] <=> [b.last_modified] }
49
49
  result = objs.sort(&sort_lambda)
50
50
  expect(result).to eq([o1, o2, o3, o4])
51
51
  end
52
52
 
53
- it "sort with one key descending" do
53
+ it 'sort with one key descending' do
54
54
  sort_lambda = ->(a, b) { [b.last_modified] <=> [a.last_modified] }
55
55
  result = objs.sort(&sort_lambda)
56
56
  expect(result).to eq([o4, o2, o3, o1])
57
57
  end
58
58
 
59
- it "sort with two keys ascending" do
59
+ it 'sort with two keys ascending' do
60
60
  sort_lambda = ->(a, b) { [a.last_modified, a.date] <=> [b.last_modified, b.date] }
61
61
  result = objs.sort(&sort_lambda)
62
62
  expect(result).to eq([o1, o2, o3, o4])
63
63
  end
64
64
 
65
- it "sort with both keys descending" do
65
+ it 'sort with both keys descending' do
66
66
  sort_lambda = ->(a, b) { [b.last_modified, b.date] <=> [a.last_modified, a.date] }
67
67
  result = objs.sort(&sort_lambda)
68
68
  expect(result).to eq([o4, o3, o2, o1])
69
69
  end
70
70
 
71
- it "sort with last_modified descending and date ascending" do
71
+ it 'sort with last_modified descending and date ascending' do
72
72
  sort_lambda = ->(a, b) { [b.last_modified, a.date] <=> [a.last_modified, b.date] }
73
73
  result = objs.sort(&sort_lambda)
74
74
  expect(result).to eq([o4, o2, o3, o1])
75
75
  end
76
76
 
77
- it "sort with last_modified ascending and date descending" do
77
+ it 'sort with last_modified ascending and date descending' do
78
78
  sort_lambda = ->(a, b) { [a.last_modified, b.date] <=> [b.last_modified, a.date] }
79
79
  result = objs.sort(&sort_lambda)
80
80
  expect(result).to eq([o1, o3, o2, o4])
@@ -1,23 +1,20 @@
1
- example_id | status | run_time |
2
- -------------------------------- | ------ | --------------- |
3
- ./spec/date_sort_spec.rb[1:1] | passed | 0.00111 seconds |
4
- ./spec/date_sort_spec.rb[1:2] | passed | 0.00019 seconds |
5
- ./spec/date_sort_spec.rb[1:3] | passed | 0.00014 seconds |
6
- ./spec/date_sort_spec.rb[1:4] | passed | 0.00016 seconds |
7
- ./spec/date_sort_spec.rb[1:5] | passed | 0.00016 seconds |
8
- ./spec/date_sort_spec.rb[1:6] | passed | 0.00015 seconds |
9
- ./spec/date_sort_spec.rb[1:7] | passed | 0.00014 seconds |
10
- ./spec/date_sort_spec.rb[1:8] | passed | 0.00014 seconds |
11
- ./spec/date_sort_spec.rb[1:9] | passed | 0.00016 seconds |
12
- ./spec/date_sort_spec.rb[1:10] | passed | 0.00015 seconds |
13
- ./spec/lambda_sort_spec.rb[1:1] | passed | 0.00017 seconds |
14
- ./spec/lambda_sort_spec.rb[1:2] | passed | 0.00022 seconds |
15
- ./spec/lambda_sort_spec.rb[1:3] | passed | 0.00029 seconds |
16
- ./spec/lambda_sort_spec.rb[1:4] | passed | 0.0002 seconds |
17
- ./spec/lambda_sort_spec.rb[1:5] | passed | 0.00018 seconds |
18
- ./spec/lambda_sort_spec.rb[1:6] | passed | 0.0002 seconds |
19
- ./spec/lambda_sort_spec.rb[1:7] | passed | 0.00019 seconds |
20
- ./spec/lambda_sort_spec.rb[1:8] | passed | 0.00019 seconds |
21
- ./spec/lambda_sort_spec.rb[1:9] | passed | 0.00019 seconds |
22
- ./spec/lambda_sort_spec.rb[1:10] | passed | 0.00019 seconds |
23
- ./spec/lambda_sort_spec.rb[1:11] | passed | 0.00036 seconds |
1
+ example_id | status | run_time |
2
+ ------------------------------------------ | ------ | --------------- |
3
+ ./spec/jekyll_all_collections_spec.rb[1:1] | passed | 0.00268 seconds |
4
+ ./spec/jekyll_all_collections_spec.rb[1:2] | passed | 0.00018 seconds |
5
+ ./spec/jekyll_all_collections_spec.rb[1:3] | passed | 0.00008 seconds |
6
+ ./spec/jekyll_all_collections_spec.rb[1:4] | passed | 0.00007 seconds |
7
+ ./spec/jekyll_all_collections_spec.rb[1:5] | passed | 0.00008 seconds |
8
+ ./spec/jekyll_all_collections_spec.rb[1:6] | passed | 0.00006 seconds |
9
+ ./spec/jekyll_all_collections_spec.rb[1:7] | passed | 0.00006 seconds |
10
+ ./spec/jekyll_all_collections_spec.rb[1:8] | passed | 0.00008 seconds |
11
+ ./spec/jekyll_all_collections_spec.rb[1:9] | passed | 0.00006 seconds |
12
+ ./spec/jekyll_all_collections_spec.rb[2:1] | passed | 0.00037 seconds |
13
+ ./spec/jekyll_all_collections_spec.rb[2:2] | passed | 0.00019 seconds |
14
+ ./spec/jekyll_all_collections_spec.rb[2:3] | passed | 0.00028 seconds |
15
+ ./spec/jekyll_all_collections_spec.rb[2:4] | failed | 0.0493 seconds |
16
+ ./spec/jekyll_all_collections_spec.rb[2:5] | passed | 0.00026 seconds |
17
+ ./spec/jekyll_all_collections_spec.rb[2:6] | passed | 0.00017 seconds |
18
+ ./spec/jekyll_all_collections_spec.rb[2:7] | failed | 0.01092 seconds |
19
+ ./spec/jekyll_all_collections_spec.rb[2:8] | failed | 0.01013 seconds |
20
+ ./spec/jekyll_all_collections_spec.rb[2:9] | failed | 0.01195 seconds |
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll_all_collections
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Slinn
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-17 00:00:00.000000000 Z
11
+ date: 2023-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -42,14 +42,14 @@ dependencies:
42
42
  name: jekyll_plugin_support
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: 0.5.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.5.0
55
55
  description: 'Provides a collection of all collections in site.all_collections.
@@ -71,18 +71,18 @@ files:
71
71
  - lib/all_collections_tag.rb
72
72
  - lib/jekyll_all_collections.rb
73
73
  - lib/jekyll_all_collections/version.rb
74
+ - spec/all_collections_tag_sort_spec.rb
74
75
  - spec/date_sort_spec.rb
75
- - spec/lambda_sort_spec.rb
76
76
  - spec/spec_helper.rb
77
77
  - spec/status_persistence.txt
78
- homepage: https://www.mslinn.com/blog/2020/12/30/jekyll-plugin-template-collection.html
78
+ homepage: https://github.com/mslinn/jekyll_all_collections
79
79
  licenses:
80
80
  - MIT
81
81
  metadata:
82
82
  allowed_push_host: https://rubygems.org
83
83
  bug_tracker_uri: https://github.com/mslinn/jekyll_all_collections/issues
84
84
  changelog_uri: https://github.com/mslinn/jekyll_all_collections/CHANGELOG.md
85
- homepage_uri: https://www.mslinn.com/blog/2020/12/30/jekyll-plugin-template-collection.html
85
+ homepage_uri: https://github.com/mslinn/jekyll_all_collections
86
86
  source_code_uri: https://github.com/mslinn/jekyll_all_collections
87
87
  post_install_message:
88
88
  rdoc_options: []