jekyll_all_collections 0.3.1 → 0.3.2
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/.rubocop.yml +35 -20
- data/CHANGELOG.md +3 -0
- data/jekyll_all_collections.gemspec +3 -3
- data/lib/all_collections_hooks.rb +3 -3
- data/lib/all_collections_tag.rb +6 -4
- data/lib/jekyll_all_collections/version.rb +1 -1
- data/spec/{lambda_sort_spec.rb → all_collections_tag_sort_spec.rb} +14 -14
- data/spec/date_sort_spec.rb +10 -10
- data/spec/status_persistence.txt +20 -23
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e45646b46cf5d0c78cf2fa66195a35790cbefc9cf70c3bfa9e29d28aed1f684
|
4
|
+
data.tar.gz: cc7670319738667e93ef05ca78b015aa2089df8225cb03523634bfe7bdccbe20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
10
|
-
|
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
|
-
-
|
21
|
-
Max:
|
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:
|
31
|
-
|
32
|
-
Metrics/ModuleLength:
|
33
|
-
Enabled: false
|
41
|
+
Max: 30
|
34
42
|
|
35
43
|
Metrics/PerceivedComplexity:
|
36
|
-
Max:
|
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/
|
45
|
-
|
56
|
+
Style/TrailingCommaInHashLiteral:
|
57
|
+
EnforcedStyleForMultiline: comma
|
46
58
|
|
47
|
-
|
48
|
-
|
49
|
-
|
59
|
+
RSpec/FilePath:
|
60
|
+
IgnoreMethods: true
|
61
|
+
SpecSuffixOnly: true
|
50
62
|
|
51
|
-
|
52
|
-
|
63
|
+
RSpec/ExampleLength:
|
64
|
+
Max: 30
|
65
|
+
|
66
|
+
RSpec/MultipleExpectations:
|
67
|
+
Max: 15
|
data/CHANGELOG.md
CHANGED
@@ -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',
|
15
|
+
spec.files = Dir['.rubocop.yml', 'LICENSE.*', 'Rakefile', '{lib,spec}/**/*', '*.gemspec', '*.md']
|
16
16
|
|
17
|
-
spec.homepage =
|
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', '
|
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)
|
data/lib/all_collections_tag.rb
CHANGED
@@ -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
|
100
|
-
|
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
|
-
|
118
|
-
|
119
|
+
@logger.warn { e.message }
|
120
|
+
@logger.warn { e.backtrace.join("\n") }
|
119
121
|
end
|
120
122
|
|
121
123
|
JekyllPluginHelper.register(self, PLUGIN_NAME)
|
@@ -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
|
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
|
37
|
-
sort_lambda = eval
|
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
|
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
|
50
|
-
sort_lambda = eval
|
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
|
57
|
-
sort_lambda = eval
|
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
|
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
|
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
|
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
|
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
|
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
|
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)
|
data/spec/date_sort_spec.rb
CHANGED
@@ -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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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])
|
data/spec/status_persistence.txt
CHANGED
@@ -1,23 +1,20 @@
|
|
1
|
-
example_id
|
2
|
-
|
3
|
-
./spec/
|
4
|
-
./spec/
|
5
|
-
./spec/
|
6
|
-
./spec/
|
7
|
-
./spec/
|
8
|
-
./spec/
|
9
|
-
./spec/
|
10
|
-
./spec/
|
11
|
-
./spec/
|
12
|
-
./spec/
|
13
|
-
./spec/
|
14
|
-
./spec/
|
15
|
-
./spec/
|
16
|
-
./spec/
|
17
|
-
./spec/
|
18
|
-
./spec/
|
19
|
-
./spec/
|
20
|
-
./spec/
|
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.
|
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-
|
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://
|
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://
|
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: []
|