jekyll-feed 0.11.0 → 0.12.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 +4 -4
- data/.gitignore +1 -0
- data/.rubocop.yml +4 -5
- data/.travis.yml +1 -2
- data/Gemfile +5 -2
- data/History.markdown +11 -1
- data/appveyor.yml +23 -0
- data/jekyll-feed.gemspec +4 -4
- data/lib/jekyll-feed/generator.rb +2 -1
- data/lib/jekyll-feed/version.rb +1 -1
- data/spec/fixtures/_config.yml +1 -1
- data/spec/jekyll-feed_spec.rb +81 -81
- data/spec/spec_helper.rb +1 -1
- metadata +22 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e77140740225fa49fbadfe32c5275a1d30397f31623fd420c9ba5f79cc7bf2a
|
4
|
+
data.tar.gz: 941023141247ae54c55732f4cf41897733bd14f41869d0c266f18f1bf54c4a03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbc5e719e5fd921947c6ecefb890f571bab7a126187822955e11bd2373672644d8c7aad17f637a9da7dbd9e66ec73acf4abc80fe4b805d12bba4129d7bf7e0e9
|
7
|
+
data.tar.gz: 89f35a3d116d90583f74d36f4f7c514b1bc320b4802449285ac46fd13fdd42fc62828efaf4cda52b7c77fb3acdf94cf8e99d88085d1b5231c47cf8fbc4c0bfd3
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
+
require: rubocop-jekyll
|
2
|
+
|
1
3
|
inherit_gem:
|
2
|
-
jekyll: .rubocop.yml
|
4
|
+
rubocop-jekyll: .rubocop.yml
|
3
5
|
|
4
6
|
AllCops:
|
5
|
-
TargetRubyVersion: 2.
|
7
|
+
TargetRubyVersion: 2.4
|
6
8
|
Include:
|
7
9
|
- lib/**/*.rb
|
8
10
|
|
@@ -17,10 +19,7 @@ AllCops:
|
|
17
19
|
- LICENSE.txt
|
18
20
|
- README.md
|
19
21
|
|
20
|
-
- features/**/*
|
21
22
|
- script/**/*
|
22
|
-
- spec/**/*
|
23
|
-
- test/**/*
|
24
23
|
- vendor/**/*
|
25
24
|
|
26
25
|
Naming/MemoizedInstanceVariableName:
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
gemspec
|
5
5
|
|
6
|
-
if ENV["JEKYLL_VERSION"]
|
7
|
-
|
6
|
+
gem "jekyll", "~> #{ENV["JEKYLL_VERSION"]}" if ENV["JEKYLL_VERSION"]
|
7
|
+
|
8
|
+
install_if -> { Gem.win_platform? } do
|
9
|
+
gem "tzinfo", "~> 1.2"
|
10
|
+
gem "tzinfo-data"
|
8
11
|
end
|
data/History.markdown
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
## HEAD
|
2
2
|
|
3
|
-
* Release
|
3
|
+
* Release: v0.12.0 (#271)
|
4
|
+
|
5
|
+
## 0.12.0 / 2019-03-21
|
6
|
+
|
7
|
+
* Allow Jekyll v4 (still alpha)
|
8
|
+
|
9
|
+
### Development Fixes
|
10
|
+
|
11
|
+
* style: fix offenses in specs (#248)
|
12
|
+
* dev: update CI and style settings (#258)
|
13
|
+
* Enable testing for Windows platform (#265)
|
4
14
|
|
5
15
|
## 0.11.0 / 2018-09-09
|
6
16
|
|
data/appveyor.yml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
version: "{build}"
|
2
|
+
clone_depth: 5
|
3
|
+
build: off
|
4
|
+
|
5
|
+
environment:
|
6
|
+
NOKOGIRI_USE_SYSTEM_LIBRARIES: true
|
7
|
+
matrix:
|
8
|
+
- RUBY_FOLDER_VER: "26"
|
9
|
+
- RUBY_FOLDER_VER: "24"
|
10
|
+
|
11
|
+
install:
|
12
|
+
- SET PATH=C:\Ruby%RUBY_FOLDER_VER%-x64\bin;%PATH%
|
13
|
+
- bundle install --retry 5 --jobs=%NUMBER_OF_PROCESSORS% --clean --path vendor\bundle
|
14
|
+
|
15
|
+
test_script:
|
16
|
+
- ruby --version
|
17
|
+
- gem --version
|
18
|
+
- bundler --version
|
19
|
+
- bash ./script/test
|
20
|
+
|
21
|
+
cache:
|
22
|
+
# If one of the files after the right arrow changes, cache will be invalidated
|
23
|
+
- 'vendor\bundle -> appveyor.yml, Gemfile, jekyll-feed.gemspec'
|
data/jekyll-feed.gemspec
CHANGED
@@ -18,13 +18,13 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.test_files = spec.files.grep(%r!^(test|spec|features)/!)
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.required_ruby_version = ">= 2.
|
21
|
+
spec.required_ruby_version = ">= 2.4.0"
|
22
22
|
|
23
|
-
spec.add_dependency "jekyll", "
|
24
|
-
spec.add_development_dependency "bundler"
|
23
|
+
spec.add_dependency "jekyll", ">= 3.7", "< 5.0"
|
24
|
+
spec.add_development_dependency "bundler"
|
25
25
|
spec.add_development_dependency "nokogiri", "~> 1.6"
|
26
26
|
spec.add_development_dependency "rake", "~> 12.0"
|
27
27
|
spec.add_development_dependency "rspec", "~> 3.0"
|
28
|
-
spec.add_development_dependency "rubocop", "~> 0.
|
28
|
+
spec.add_development_dependency "rubocop-jekyll", "~> 0.5"
|
29
29
|
spec.add_development_dependency "typhoeus", ">= 0.7", "< 2.0"
|
30
30
|
end
|
@@ -13,6 +13,7 @@ module JekyllFeed
|
|
13
13
|
(meta["categories"] + [nil]).each do |category|
|
14
14
|
path = feed_path(:collection => name, :category => category)
|
15
15
|
next if file_exists?(path)
|
16
|
+
|
16
17
|
@site.pages << make_page(path, :collection => name, :category => category)
|
17
18
|
end
|
18
19
|
end
|
@@ -24,7 +25,7 @@ module JekyllFeed
|
|
24
25
|
# 1. A '>', which closes an XML tag or
|
25
26
|
# 2. A '}', which closes a Liquid tag
|
26
27
|
# We will strip all of this whitespace to minify the template
|
27
|
-
MINIFY_REGEX = %r!(?<=>|})\s
|
28
|
+
MINIFY_REGEX = %r!(?<=>|})\s+!.freeze
|
28
29
|
|
29
30
|
# Returns the plugin's config or an empty hash if not set
|
30
31
|
def config
|
data/lib/jekyll-feed/version.rb
CHANGED
data/spec/fixtures/_config.yml
CHANGED
data/spec/jekyll-feed_spec.rb
CHANGED
@@ -43,53 +43,53 @@ describe(JekyllFeed) do
|
|
43
43
|
end
|
44
44
|
|
45
45
|
it "puts all the posts in the feed.xml file" do
|
46
|
-
expect(contents).to match
|
47
|
-
expect(contents).to match
|
48
|
-
expect(contents).to match
|
46
|
+
expect(contents).to match "http://example.org/updates/2014/03/04/march-the-fourth.html"
|
47
|
+
expect(contents).to match "http://example.org/news/2014/03/02/march-the-second.html"
|
48
|
+
expect(contents).to match "http://example.org/news/2013/12/12/dec-the-second.html"
|
49
49
|
expect(contents).to match "http://example.org/2015/08/08/stuck-in-the-middle.html"
|
50
|
-
expect(contents).to_not match
|
50
|
+
expect(contents).to_not match "http://example.org/2016/02/09/a-draft.html"
|
51
51
|
end
|
52
52
|
|
53
53
|
it "does not include assets or any static files that aren't .html" do
|
54
|
-
expect(contents).not_to match
|
55
|
-
expect(contents).not_to match
|
54
|
+
expect(contents).not_to match "http://example.org/images/hubot.png"
|
55
|
+
expect(contents).not_to match "http://example.org/feeds/atom.xml"
|
56
56
|
end
|
57
57
|
|
58
58
|
it "preserves linebreaks in preformatted text in posts" do
|
59
|
-
expect(contents).to match
|
59
|
+
expect(contents).to match "Line 1\nLine 2\nLine 3"
|
60
60
|
end
|
61
61
|
|
62
62
|
it "supports post author name as an object" do
|
63
|
-
expect(contents).to match
|
63
|
+
expect(contents).to match %r!<author>\s*<name>Ben</name>\s*<email>ben@example\.com</email>\s*<uri>http://ben\.balter\.com</uri>\s*</author>!
|
64
64
|
end
|
65
65
|
|
66
66
|
it "supports post author name as a string" do
|
67
|
-
expect(contents).to match
|
67
|
+
expect(contents).to match %r!<author>\s*<name>Pat</name>\s*</author>!
|
68
68
|
end
|
69
69
|
|
70
70
|
it "does not output author tag no author is provided" do
|
71
|
-
expect(contents).not_to match
|
71
|
+
expect(contents).not_to match %r!<author>\s*<name></name>\s*</author>!
|
72
72
|
end
|
73
73
|
|
74
74
|
it "does use author reference with data from _data/authors.yml" do
|
75
|
-
expect(contents).to match
|
75
|
+
expect(contents).to match %r!<author>\s*<name>Garth</name>\s*<email>example@mail\.com</email>\s*<uri>http://garthdb\.com</uri>\s*</author>!
|
76
76
|
end
|
77
77
|
|
78
78
|
it "converts markdown posts to HTML" do
|
79
|
-
expect(contents).to match
|
79
|
+
expect(contents).to match %r!<p>March the second\!</p>!
|
80
80
|
end
|
81
81
|
|
82
82
|
it "uses last_modified_at where available" do
|
83
|
-
expect(contents).to match
|
83
|
+
expect(contents).to match %r!<updated>2015-05-12T13:27:59\+00:00</updated>!
|
84
84
|
end
|
85
85
|
|
86
86
|
it "replaces newlines in posts to spaces" do
|
87
|
-
expect(contents).to match
|
87
|
+
expect(contents).to match '<title type="html">The plugin will properly strip newlines.</title>'
|
88
88
|
end
|
89
89
|
|
90
90
|
it "renders Liquid inside posts" do
|
91
|
-
expect(contents).to match
|
92
|
-
expect(contents).not_to match
|
91
|
+
expect(contents).to match "Liquid is rendered."
|
92
|
+
expect(contents).not_to match "Liquid is not rendered."
|
93
93
|
end
|
94
94
|
|
95
95
|
it "includes the item image" do
|
@@ -205,6 +205,7 @@ describe(JekyllFeed) do
|
|
205
205
|
|
206
206
|
context "validation" do
|
207
207
|
it "validates" do
|
208
|
+
skip "Typhoeus couldn't find the 'libcurl' module on Windows" if Gem.win_platform?
|
208
209
|
# See https://validator.w3.org/docs/api.html
|
209
210
|
url = "https://validator.w3.org/feed/check.cgi?output=soap12"
|
210
211
|
response = Typhoeus.post(url, :body => { :rawdata => contents }, :accept_encoding => "gzip")
|
@@ -239,9 +240,9 @@ describe(JekyllFeed) do
|
|
239
240
|
end
|
240
241
|
|
241
242
|
it "correctly adds the baseurl to the posts" do
|
242
|
-
expect(contents).to match
|
243
|
-
expect(contents).to match
|
244
|
-
expect(contents).to match
|
243
|
+
expect(contents).to match "http://example.org/bass/updates/2014/03/04/march-the-fourth.html"
|
244
|
+
expect(contents).to match "http://example.org/bass/news/2014/03/02/march-the-second.html"
|
245
|
+
expect(contents).to match "http://example.org/bass/news/2013/12/12/dec-the-second.html"
|
245
246
|
end
|
246
247
|
|
247
248
|
it "renders the feed meta" do
|
@@ -258,11 +259,11 @@ describe(JekyllFeed) do
|
|
258
259
|
|
259
260
|
context "with a blank site name" do
|
260
261
|
let(:config) do
|
261
|
-
Jekyll.configuration(
|
262
|
+
Jekyll.configuration(
|
262
263
|
"source" => source_dir,
|
263
264
|
"destination" => dest_dir,
|
264
|
-
"url" => "http://example.org"
|
265
|
-
|
265
|
+
"url" => "http://example.org"
|
266
|
+
)
|
266
267
|
end
|
267
268
|
|
268
269
|
it "does not output blank title" do
|
@@ -296,9 +297,9 @@ describe(JekyllFeed) do
|
|
296
297
|
"feed" => {
|
297
298
|
"collections" => {
|
298
299
|
"posts" => {
|
299
|
-
"path" => "atom.xml"
|
300
|
-
}
|
301
|
-
}
|
300
|
+
"path" => "atom.xml",
|
301
|
+
},
|
302
|
+
},
|
302
303
|
},
|
303
304
|
}
|
304
305
|
end
|
@@ -323,70 +324,70 @@ describe(JekyllFeed) do
|
|
323
324
|
let(:overrides) { { "lang" => "en-US" } }
|
324
325
|
|
325
326
|
it "should set the language" do
|
326
|
-
expect(contents).to match
|
327
|
+
expect(contents).to match 'type="text/html" hreflang="en-US" />'
|
327
328
|
end
|
328
329
|
end
|
329
330
|
|
330
331
|
context "with post.lang set" do
|
331
332
|
it "should set the language for that entry" do
|
332
|
-
expect(contents).to match
|
333
|
-
expect(contents).to match
|
333
|
+
expect(contents).to match '<entry xml:lang="en">'
|
334
|
+
expect(contents).to match '<entry>'
|
334
335
|
end
|
335
336
|
end
|
336
337
|
|
337
338
|
context "categories" do
|
338
339
|
context "with top-level post categories" do
|
339
|
-
let(:overrides)
|
340
|
+
let(:overrides) do
|
340
341
|
{
|
341
|
-
"feed" => { "categories" => ["news"] }
|
342
|
+
"feed" => { "categories" => ["news"] },
|
342
343
|
}
|
343
|
-
|
344
|
+
end
|
344
345
|
let(:news_feed) { File.read(dest_dir("feed/news.xml")) }
|
345
346
|
|
346
347
|
it "outputs the primary feed" do
|
347
|
-
expect(contents).to match
|
348
|
-
expect(contents).to match
|
349
|
-
expect(contents).to match
|
348
|
+
expect(contents).to match "http://example.org/updates/2014/03/04/march-the-fourth.html"
|
349
|
+
expect(contents).to match "http://example.org/news/2014/03/02/march-the-second.html"
|
350
|
+
expect(contents).to match "http://example.org/news/2013/12/12/dec-the-second.html"
|
350
351
|
expect(contents).to match "http://example.org/2015/08/08/stuck-in-the-middle.html"
|
351
|
-
expect(contents).to_not match
|
352
|
+
expect(contents).to_not match "http://example.org/2016/02/09/a-draft.html"
|
352
353
|
end
|
353
354
|
|
354
355
|
it "outputs the category feed" do
|
355
|
-
expect(news_feed).to match
|
356
|
-
expect(news_feed).to match
|
357
|
-
expect(news_feed).to match
|
358
|
-
expect(news_feed).to_not match
|
356
|
+
expect(news_feed).to match '<title type="html">My awesome site | News</title>'
|
357
|
+
expect(news_feed).to match "http://example.org/news/2014/03/02/march-the-second.html"
|
358
|
+
expect(news_feed).to match "http://example.org/news/2013/12/12/dec-the-second.html"
|
359
|
+
expect(news_feed).to_not match "http://example.org/updates/2014/03/04/march-the-fourth.html"
|
359
360
|
expect(news_feed).to_not match "http://example.org/2015/08/08/stuck-in-the-middle.html"
|
360
361
|
end
|
361
362
|
end
|
362
363
|
|
363
364
|
context "with collection-level post categories" do
|
364
|
-
let(:overrides)
|
365
|
+
let(:overrides) do
|
365
366
|
{
|
366
367
|
"feed" => {
|
367
368
|
"collections" => {
|
368
369
|
"posts" => {
|
369
|
-
"categories" => ["news"]
|
370
|
-
}
|
371
|
-
}
|
372
|
-
}
|
370
|
+
"categories" => ["news"],
|
371
|
+
},
|
372
|
+
},
|
373
|
+
},
|
373
374
|
}
|
374
|
-
|
375
|
+
end
|
375
376
|
let(:news_feed) { File.read(dest_dir("feed/news.xml")) }
|
376
377
|
|
377
378
|
it "outputs the primary feed" do
|
378
|
-
expect(contents).to match
|
379
|
-
expect(contents).to match
|
380
|
-
expect(contents).to match
|
379
|
+
expect(contents).to match "http://example.org/updates/2014/03/04/march-the-fourth.html"
|
380
|
+
expect(contents).to match "http://example.org/news/2014/03/02/march-the-second.html"
|
381
|
+
expect(contents).to match "http://example.org/news/2013/12/12/dec-the-second.html"
|
381
382
|
expect(contents).to match "http://example.org/2015/08/08/stuck-in-the-middle.html"
|
382
|
-
expect(contents).to_not match
|
383
|
+
expect(contents).to_not match "http://example.org/2016/02/09/a-draft.html"
|
383
384
|
end
|
384
385
|
|
385
386
|
it "outputs the category feed" do
|
386
|
-
expect(news_feed).to match
|
387
|
-
expect(news_feed).to match
|
388
|
-
expect(news_feed).to match
|
389
|
-
expect(news_feed).to_not match
|
387
|
+
expect(news_feed).to match '<title type="html">My awesome site | News</title>'
|
388
|
+
expect(news_feed).to match "http://example.org/news/2014/03/02/march-the-second.html"
|
389
|
+
expect(news_feed).to match "http://example.org/news/2013/12/12/dec-the-second.html"
|
390
|
+
expect(news_feed).to_not match "http://example.org/updates/2014/03/04/march-the-fourth.html"
|
390
391
|
expect(news_feed).to_not match "http://example.org/2015/08/08/stuck-in-the-middle.html"
|
391
392
|
end
|
392
393
|
end
|
@@ -396,73 +397,72 @@ describe(JekyllFeed) do
|
|
396
397
|
let(:collection_feed) { File.read(dest_dir("feed/collection.xml")) }
|
397
398
|
|
398
399
|
context "when initialized as an array" do
|
399
|
-
let(:overrides)
|
400
|
+
let(:overrides) do
|
400
401
|
{
|
401
402
|
"collections" => {
|
402
403
|
"collection" => {
|
403
|
-
"output" => true
|
404
|
-
}
|
404
|
+
"output" => true,
|
405
|
+
},
|
405
406
|
},
|
406
|
-
"feed"
|
407
|
+
"feed" => { "collections" => ["collection"] },
|
407
408
|
}
|
408
|
-
|
409
|
-
|
409
|
+
end
|
410
410
|
|
411
411
|
it "outputs the collection feed" do
|
412
|
-
expect(collection_feed).to match
|
412
|
+
expect(collection_feed).to match '<title type="html">My awesome site | Collection</title>'
|
413
413
|
expect(collection_feed).to match "http://example.org/collection/2018-01-01-collection-doc.html"
|
414
414
|
expect(collection_feed).to match "http://example.org/collection/2018-01-02-collection-category-doc.html"
|
415
|
-
expect(collection_feed).to_not match
|
415
|
+
expect(collection_feed).to_not match "http://example.org/updates/2014/03/04/march-the-fourth.html"
|
416
416
|
expect(collection_feed).to_not match "http://example.org/2015/08/08/stuck-in-the-middle.html"
|
417
417
|
end
|
418
418
|
end
|
419
419
|
|
420
420
|
context "with categories" do
|
421
|
-
let(:overrides)
|
421
|
+
let(:overrides) do
|
422
422
|
{
|
423
423
|
"collections" => {
|
424
424
|
"collection" => {
|
425
|
-
"output" => true
|
426
|
-
}
|
425
|
+
"output" => true,
|
426
|
+
},
|
427
427
|
},
|
428
|
-
"feed"
|
428
|
+
"feed" => {
|
429
429
|
"collections" => {
|
430
430
|
"collection" => {
|
431
|
-
"categories" => ["news"]
|
432
|
-
}
|
433
|
-
}
|
434
|
-
}
|
431
|
+
"categories" => ["news"],
|
432
|
+
},
|
433
|
+
},
|
434
|
+
},
|
435
435
|
}
|
436
|
-
|
436
|
+
end
|
437
437
|
let(:news_feed) { File.read(dest_dir("feed/collection/news.xml")) }
|
438
438
|
|
439
439
|
it "outputs the collection category feed" do
|
440
|
-
expect(news_feed).to match
|
440
|
+
expect(news_feed).to match '<title type="html">My awesome site | Collection | News</title>'
|
441
441
|
expect(news_feed).to match "http://example.org/collection/2018-01-02-collection-category-doc.html"
|
442
442
|
expect(news_feed).to_not match "http://example.org/collection/2018-01-01-collection-doc.html"
|
443
|
-
expect(news_feed).to_not match
|
443
|
+
expect(news_feed).to_not match "http://example.org/updates/2014/03/04/march-the-fourth.html"
|
444
444
|
expect(news_feed).to_not match "http://example.org/2015/08/08/stuck-in-the-middle.html"
|
445
445
|
end
|
446
446
|
end
|
447
447
|
|
448
448
|
context "with a custom path" do
|
449
|
-
let(:overrides)
|
449
|
+
let(:overrides) do
|
450
450
|
{
|
451
451
|
"collections" => {
|
452
452
|
"collection" => {
|
453
|
-
"output" => true
|
454
|
-
}
|
453
|
+
"output" => true,
|
454
|
+
},
|
455
455
|
},
|
456
|
-
"feed"
|
456
|
+
"feed" => {
|
457
457
|
"collections" => {
|
458
458
|
"collection" => {
|
459
459
|
"categories" => ["news"],
|
460
|
-
"path"
|
461
|
-
}
|
462
|
-
}
|
463
|
-
}
|
460
|
+
"path" => "custom.xml",
|
461
|
+
},
|
462
|
+
},
|
463
|
+
},
|
464
464
|
}
|
465
|
-
|
465
|
+
end
|
466
466
|
|
467
467
|
it "should write to the custom path" do
|
468
468
|
expect(Pathname.new(dest_dir("custom.xml"))).to exist
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,43 +1,49 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-feed
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Balter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.7'
|
20
|
+
- - "<"
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
22
|
+
version: '5.0'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: '3.
|
29
|
+
version: '3.7'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '5.0'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: bundler
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
|
-
- - "
|
37
|
+
- - ">="
|
32
38
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
39
|
+
version: '0'
|
34
40
|
type: :development
|
35
41
|
prerelease: false
|
36
42
|
version_requirements: !ruby/object:Gem::Requirement
|
37
43
|
requirements:
|
38
|
-
- - "
|
44
|
+
- - ">="
|
39
45
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
46
|
+
version: '0'
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: nokogiri
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,19 +87,19 @@ dependencies:
|
|
81
87
|
- !ruby/object:Gem::Version
|
82
88
|
version: '3.0'
|
83
89
|
- !ruby/object:Gem::Dependency
|
84
|
-
name: rubocop
|
90
|
+
name: rubocop-jekyll
|
85
91
|
requirement: !ruby/object:Gem::Requirement
|
86
92
|
requirements:
|
87
93
|
- - "~>"
|
88
94
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0.
|
95
|
+
version: '0.5'
|
90
96
|
type: :development
|
91
97
|
prerelease: false
|
92
98
|
version_requirements: !ruby/object:Gem::Requirement
|
93
99
|
requirements:
|
94
100
|
- - "~>"
|
95
101
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.
|
102
|
+
version: '0.5'
|
97
103
|
- !ruby/object:Gem::Dependency
|
98
104
|
name: typhoeus
|
99
105
|
requirement: !ruby/object:Gem::Requirement
|
@@ -130,6 +136,7 @@ files:
|
|
130
136
|
- LICENSE.txt
|
131
137
|
- README.md
|
132
138
|
- Rakefile
|
139
|
+
- appveyor.yml
|
133
140
|
- jekyll-feed.gemspec
|
134
141
|
- lib/jekyll-feed.rb
|
135
142
|
- lib/jekyll-feed/feed.xml
|
@@ -173,15 +180,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
173
180
|
requirements:
|
174
181
|
- - ">="
|
175
182
|
- !ruby/object:Gem::Version
|
176
|
-
version: 2.
|
183
|
+
version: 2.4.0
|
177
184
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
178
185
|
requirements:
|
179
186
|
- - ">="
|
180
187
|
- !ruby/object:Gem::Version
|
181
188
|
version: '0'
|
182
189
|
requirements: []
|
183
|
-
|
184
|
-
rubygems_version: 2.7.7
|
190
|
+
rubygems_version: 3.0.3
|
185
191
|
signing_key:
|
186
192
|
specification_version: 4
|
187
193
|
summary: A Jekyll plugin to generate an Atom feed of your Jekyll posts
|