jekyll_plugin_support 0.4.0 → 0.4.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/.rubocop.yml +0 -1
- data/CHANGELOG.md +4 -0
- data/README.md +14 -0
- data/lib/jekyll_plugin_support/version.rb +1 -1
- data/lib/jekyll_plugin_support.rb +2 -2
- data/lib/jekyll_plugin_support_helper.rb +1 -1
- metadata +2 -4
- data/spec/status_persistence.txt +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53975ba14d38fdc37e99ed9363b3d30885a301541c254584ae70d18157fc0e3f
|
|
4
|
+
data.tar.gz: ccd9fc245d26fce6fa24bbc8edcda670faa017df3e08c75ec08effa760fa44ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f78badf8195aebeb9401a974aebd589b1f9af69e9d6c83a3dd7d7340f2edc93ad418ef6806915dc130cb4deab5c0beb80eca15cd27189cdca999bd15d1434081
|
|
7
|
+
data.tar.gz: dde45223b684b140e3c5e7d2633d96f39e974c148094243a979cebe60c33af5383e761c3e9aa6a60d34cdd71b90a550c39964f7e6e63c692660d536990074b39
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -109,6 +109,20 @@ jekyll_plugin_support (0.1.0)
|
|
|
109
109
|
```
|
|
110
110
|
|
|
111
111
|
|
|
112
|
+
## Test
|
|
113
|
+
A test website is provided in the `demo` directory.
|
|
114
|
+
1. Set breakpoints.
|
|
115
|
+
|
|
116
|
+
2. Initiate a debug session from the command line:
|
|
117
|
+
```shell
|
|
118
|
+
$ bin/attach demo
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
3. Once the `Fast Debugger` signon appears, launch the Visual Studio Code launch configuration called `Attach rdebug-ide`.
|
|
122
|
+
|
|
123
|
+
4. View the generated website at [`http://localhost:4444`](http://localhost:4444)
|
|
124
|
+
|
|
125
|
+
|
|
112
126
|
### Build and Push to RubyGems
|
|
113
127
|
To release a new version,
|
|
114
128
|
1. Update the version number in `version.rb`.
|
|
@@ -31,7 +31,7 @@ module JekyllSupport
|
|
|
31
31
|
# @return [String]
|
|
32
32
|
def render(liquid_context)
|
|
33
33
|
text = super
|
|
34
|
-
@liquid_context = liquid_context
|
|
34
|
+
@helper.liquid_context = liquid_context
|
|
35
35
|
|
|
36
36
|
# The names of front matter variables are hash keys for @page
|
|
37
37
|
@page = liquid_context.registers[:page] # Jekyll::Drops::DocumentDrop
|
|
@@ -74,7 +74,7 @@ module JekyllSupport
|
|
|
74
74
|
|
|
75
75
|
# Method prescribed by the Jekyll plugin lifecycle.
|
|
76
76
|
def render(liquid_context)
|
|
77
|
-
@liquid_context = liquid_context
|
|
77
|
+
@helper.liquid_context = liquid_context
|
|
78
78
|
@page = liquid_context.registers[:page]
|
|
79
79
|
@site = liquid_context.registers[:site]
|
|
80
80
|
@config = @site.config
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll_plugin_support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Slinn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-02-
|
|
11
|
+
date: 2023-02-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -142,7 +142,6 @@ files:
|
|
|
142
142
|
- spec/jekyll_block_plugin_support_spec.rb
|
|
143
143
|
- spec/jekyll_tag_plugin_support_spec.rb
|
|
144
144
|
- spec/spec_helper.rb
|
|
145
|
-
- spec/status_persistence.txt
|
|
146
145
|
homepage: https://www.mslinn.com/blog/2020/10/03/jekyll-plugins.html#quote
|
|
147
146
|
licenses:
|
|
148
147
|
- MIT
|
|
@@ -178,5 +177,4 @@ test_files:
|
|
|
178
177
|
- spec/jekyll_block_plugin_support_spec.rb
|
|
179
178
|
- spec/jekyll_tag_plugin_support_spec.rb
|
|
180
179
|
- spec/spec_helper.rb
|
|
181
|
-
- spec/status_persistence.txt
|
|
182
180
|
...
|
data/spec/status_persistence.txt
DELETED
|
File without changes
|