jekyll-octopod 0.9.23 → 0.11.1
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/README.md +11 -0
- data/assets/_config.yml.sample +1 -1
- data/lib/jekyll/{font_awesome.rb → line_awesome.rb} +12 -12
- data/lib/jekyll/update_config.rb +9 -0
- data/lib/jekyll-octopod.rb +1 -1
- data/lib/octopod/version.rb +2 -2
- metadata +15 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a3aeab01c2f99eed20ef0ed4eea2f5ee189173e2a64d695260c414828a354d6
|
|
4
|
+
data.tar.gz: ab1efe4977975772dceb303b2bef641a0c43eca339760cb700d89a28d8a0190c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29956fea8e163808ec24d871280e68ebae9960e5107cc4840e8ea9aa26856db5f672cf4bf2287ed1b417b88d00b0b27547f0321fd644f6f8a9f00ad3eedbd0af
|
|
7
|
+
data.tar.gz: 30359971120474bbc59f43440d2d25e953a2dd98e6ae9d5223017ef7f4353404e59dd7ce7e4735229c241e932bbaad955ec089526e74671c9a38e66fb93a99f5
|
data/README.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# jekyll-octopod
|
|
2
2
|
|
|
3
|
+
Today, on November 9th 2020, after 1690 days of maintenance, 204 commits and 59 releases, I stop working
|
|
4
|
+
on this project due to lack of time.
|
|
5
|
+
|
|
6
|
+
I would probably rather start a rewrite in dart than trying to fix what
|
|
7
|
+
I don't like about this project. Back in October 2020 I tried to collect
|
|
8
|
+
[my thoughts on the status](https://github.com/jekyll-octopod/jekyll-octopod/blob/master/ROADMAP.md)
|
|
9
|
+
and they are mostly still valid.
|
|
10
|
+
|
|
11
|
+
I case you want to step up as maintainer of this project, get in touch! (<stefan.haslinger@informatom.com>)
|
|
12
|
+
|
|
13
|
+

|
|
3
14
|
[](https://badge.fury.io/rb/jekyll-octopod)
|
|
4
15
|
|
|
5
16
|
<img align="right" src="assets/img/logo.jpg" alt="logo"/>
|
data/assets/_config.yml.sample
CHANGED
|
@@ -64,7 +64,7 @@ disqus_developer: 0 # 1 | 0
|
|
|
64
64
|
### Isso comments
|
|
65
65
|
use_isso: "no" # "no" | "yes"
|
|
66
66
|
|
|
67
|
-
theme: jekyll-
|
|
67
|
+
theme: jekyll-bulma
|
|
68
68
|
|
|
69
69
|
### Jekyll Admin: uncomment the last line of this paragraph to enable Jekyll Admin.
|
|
70
70
|
### (but you will loose auto regeneration after code changes with a text editor then)
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
# THE SOFTWARE.
|
|
23
23
|
#
|
|
24
24
|
#
|
|
25
|
-
#
|
|
26
|
-
# Documentation can be found at
|
|
25
|
+
# Line Awesome Icons Liquid Tag
|
|
26
|
+
# Documentation can be found at https://icons8.com/line-awesome
|
|
27
27
|
#
|
|
28
28
|
# Example:
|
|
29
|
-
# {% icon
|
|
30
|
-
# {% icon
|
|
31
|
-
# {% icon
|
|
32
|
-
# {% icon
|
|
29
|
+
# {% icon la-camera-retro %}
|
|
30
|
+
# {% icon la-camera-retro la-lg %}
|
|
31
|
+
# {% icon la-spinner la-spin %}
|
|
32
|
+
# {% icon la-shield la-rotate-90 %}
|
|
33
33
|
|
|
34
34
|
module Jekyll
|
|
35
|
-
class
|
|
35
|
+
class LineAwesomeTag < Liquid::Tag
|
|
36
36
|
|
|
37
37
|
def render(context)
|
|
38
38
|
if tag_contents = determine_arguments(@markup.strip)
|
|
@@ -45,8 +45,8 @@ Syntax error in tag 'icon' while parsing the following markup:
|
|
|
45
45
|
#{@markup}
|
|
46
46
|
|
|
47
47
|
Valid syntax:
|
|
48
|
-
for icons: {% icon
|
|
49
|
-
for icons with size/spin/rotate: {% icon
|
|
48
|
+
for icons: {% icon la-camera-retro %}
|
|
49
|
+
for icons with size/spin/rotate: {% icon la-camera-retro la-lg %}
|
|
50
50
|
eos
|
|
51
51
|
end
|
|
52
52
|
end
|
|
@@ -60,12 +60,12 @@ eos
|
|
|
60
60
|
|
|
61
61
|
def icon_tag(icon_class, icon_extra = nil)
|
|
62
62
|
if icon_extra.empty?
|
|
63
|
-
"<i class=\"
|
|
63
|
+
"<i class=\"las #{icon_class}\"></i>"
|
|
64
64
|
else
|
|
65
|
-
"<i class=\"
|
|
65
|
+
"<i class=\"las #{icon_class} #{icon_extra}\"></i>"
|
|
66
66
|
end
|
|
67
67
|
end
|
|
68
68
|
end
|
|
69
69
|
end
|
|
70
70
|
|
|
71
|
-
Liquid::Template.register_tag('icon', Jekyll::
|
|
71
|
+
Liquid::Template.register_tag('icon', Jekyll::LineAwesomeTag)
|
data/lib/jekyll/update_config.rb
CHANGED
|
@@ -9,6 +9,15 @@ module Jekyll
|
|
|
9
9
|
site.config.update(
|
|
10
10
|
'json_feed_formats' => jsonfeeds.map { |f| f.match(/feed\.(\w{3,4})\.json/)[1] }
|
|
11
11
|
)
|
|
12
|
+
|
|
13
|
+
# These marker files exist only so the scan above can detect which
|
|
14
|
+
# formats to generate; PagedFeedPageGenerator creates the actual pages
|
|
15
|
+
# at these exact paths. Excluding them here keeps Jekyll's normal
|
|
16
|
+
# reader from also turning them into pages, which would otherwise
|
|
17
|
+
# collide with the generator's output at the same destination.
|
|
18
|
+
# site.exclude (not site.config['exclude']) is what Reader actually
|
|
19
|
+
# consults, and it's copied from config before this hook runs.
|
|
20
|
+
site.exclude += feeds + jsonfeeds
|
|
12
21
|
end
|
|
13
22
|
end
|
|
14
23
|
end
|
data/lib/jekyll-octopod.rb
CHANGED
data/lib/octopod/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-octopod
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Arne Eilermann
|
|
8
8
|
- Stefan Haslinger
|
|
9
|
-
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: facets
|
|
@@ -17,70 +16,70 @@ dependencies:
|
|
|
17
16
|
requirements:
|
|
18
17
|
- - "~>"
|
|
19
18
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: '3.
|
|
19
|
+
version: '3.2'
|
|
21
20
|
type: :runtime
|
|
22
21
|
prerelease: false
|
|
23
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
23
|
requirements:
|
|
25
24
|
- - "~>"
|
|
26
25
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: '3.
|
|
26
|
+
version: '3.2'
|
|
28
27
|
- !ruby/object:Gem::Dependency
|
|
29
28
|
name: jekyll
|
|
30
29
|
requirement: !ruby/object:Gem::Requirement
|
|
31
30
|
requirements:
|
|
32
31
|
- - "~>"
|
|
33
32
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: '4.
|
|
33
|
+
version: '4.4'
|
|
35
34
|
type: :runtime
|
|
36
35
|
prerelease: false
|
|
37
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
37
|
requirements:
|
|
39
38
|
- - "~>"
|
|
40
39
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: '4.
|
|
40
|
+
version: '4.4'
|
|
42
41
|
- !ruby/object:Gem::Dependency
|
|
43
|
-
name: jekyll-
|
|
42
|
+
name: jekyll-bulma
|
|
44
43
|
requirement: !ruby/object:Gem::Requirement
|
|
45
44
|
requirements:
|
|
46
45
|
- - "~>"
|
|
47
46
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: 0.
|
|
47
|
+
version: 1.0.2
|
|
49
48
|
type: :runtime
|
|
50
49
|
prerelease: false
|
|
51
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
51
|
requirements:
|
|
53
52
|
- - "~>"
|
|
54
53
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: 0.
|
|
54
|
+
version: 1.0.2
|
|
56
55
|
- !ruby/object:Gem::Dependency
|
|
57
56
|
name: rspec
|
|
58
57
|
requirement: !ruby/object:Gem::Requirement
|
|
59
58
|
requirements:
|
|
60
59
|
- - "~>"
|
|
61
60
|
- !ruby/object:Gem::Version
|
|
62
|
-
version: '3.
|
|
61
|
+
version: '3.13'
|
|
63
62
|
type: :development
|
|
64
63
|
prerelease: false
|
|
65
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
65
|
requirements:
|
|
67
66
|
- - "~>"
|
|
68
67
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
68
|
+
version: '3.13'
|
|
70
69
|
- !ruby/object:Gem::Dependency
|
|
71
70
|
name: jekyll-admin
|
|
72
71
|
requirement: !ruby/object:Gem::Requirement
|
|
73
72
|
requirements:
|
|
74
73
|
- - "~>"
|
|
75
74
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: '0.
|
|
75
|
+
version: '0.12'
|
|
77
76
|
type: :runtime
|
|
78
77
|
prerelease: false
|
|
79
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
80
79
|
requirements:
|
|
81
80
|
- - "~>"
|
|
82
81
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: '0.
|
|
82
|
+
version: '0.12'
|
|
84
83
|
- !ruby/object:Gem::Dependency
|
|
85
84
|
name: kramdown-parser-gfm
|
|
86
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -306,7 +305,7 @@ files:
|
|
|
306
305
|
- lib/jekyll-octopod.rb
|
|
307
306
|
- lib/jekyll/date_de.rb
|
|
308
307
|
- lib/jekyll/flattr_filters.rb
|
|
309
|
-
- lib/jekyll/
|
|
308
|
+
- lib/jekyll/line_awesome.rb
|
|
310
309
|
- lib/jekyll/octopod_filters.rb
|
|
311
310
|
- lib/jekyll/paged_feed_page.rb
|
|
312
311
|
- lib/jekyll/paged_feed_page_generator.rb
|
|
@@ -321,7 +320,6 @@ homepage: https://github.com/haslinger/jekyll-octopod
|
|
|
321
320
|
licenses:
|
|
322
321
|
- MIT
|
|
323
322
|
metadata: {}
|
|
324
|
-
post_install_message:
|
|
325
323
|
rdoc_options: []
|
|
326
324
|
require_paths:
|
|
327
325
|
- lib
|
|
@@ -336,8 +334,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
336
334
|
- !ruby/object:Gem::Version
|
|
337
335
|
version: '0'
|
|
338
336
|
requirements: []
|
|
339
|
-
rubygems_version:
|
|
340
|
-
signing_key:
|
|
337
|
+
rubygems_version: 4.0.16
|
|
341
338
|
specification_version: 4
|
|
342
339
|
summary: Podcasting Publishing Extension for Jekyll
|
|
343
340
|
test_files: []
|