jekyll_from_to_until 1.0.5 → 1.0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a9e56c1266c423bdcca5f7fc1a5bfbd88038b3b7c92fbb84f0d05f73041f091
4
- data.tar.gz: 6526b906d36f9937f63d0e81211dad42bec006eda5ec1cf62b286168925c489a
3
+ metadata.gz: 9831e3896befd48a89069726c44c2f1c724c890c4b63fedf398ed54259ecd889
4
+ data.tar.gz: e0401ec8f430b9cfabb6bb13cf3f77d179aadeca1c7ae1c3fc76357c575afdb7
5
5
  SHA512:
6
- metadata.gz: b8a0f1ec7d9032e98edc3bd6729a1037b9884fb7b1ef7614f8b9f53045f5d223cf4615588d3f62c9fa604daeef8e06dc03d371fe452b34df6152c2545d8e3cab
7
- data.tar.gz: 7a3621381e1d6bc4258728b98520087d8954035cfceecc2932885f77f6f87879f2d8d163f7fd07552a68ec134ded6b0b6a7e206382e979bacf06e57315a889ca
6
+ metadata.gz: b4092ea3fa73c237a380573c942be5ae11191af3704f277a3ec51430c0cebbc03a242a47a7d06eb3193cfe3e8167d6279746271b5bf79f358b50a644e5d01d23
7
+ data.tar.gz: 336d908450a37b2239e9ec3f31999b975466769648cc443d4576de8f7e3f89e973d02f3e03442bee571ab7ff560a036d7ffa1532f4442ac70ee8d87803406ac9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.0.6 / 2024-12-16
4
+
5
+ * Fixed callability issue
6
+
7
+
3
8
  ## 1.0.5 / 2024-08-22
4
9
 
5
10
  * Fixed method forwarding
data/README.md CHANGED
@@ -354,7 +354,7 @@ mslinn_aws.tar
354
354
  ### Encoding Special Characters
355
355
 
356
356
  Special characters can be specified as HTML entities.
357
- For example, `}` is `Open parenthesis. Belle par. A parent. 5 Resulting. OK. }`.
357
+ For example, `}` is `Open parenthesis. Belle par. A parent. 5 Resulting. OK. OK, so now what }`.
358
358
 
359
359
  ```html
360
360
  {{ css | from: '.error' | to: '}' | strip }}
@@ -1,3 +1,3 @@
1
1
  module JekyllFromToUntilVersion
2
- VERSION = '1.0.5'.freeze
2
+ VERSION = '1.0.6'.freeze
3
3
  end
@@ -9,132 +9,130 @@ end
9
9
 
10
10
  CALLED_FROM_JEKYLL = !$LOADED_FEATURES.grep(/.*liquid.rb/).empty?
11
11
 
12
- module Jekyll
13
- module FromToUntil
14
- @logger = if CALLED_FROM_JEKYLL
15
- require 'liquid'
16
- require 'jekyll_plugin_logger'
17
- PluginMetaLogger.instance.new_logger "FromToUntil", PluginMetaLogger.instance.config
18
- else
19
- require 'logger'
20
- Logger.new $stdout
21
- end
22
-
23
- # Filters a multiline string, returning the portion beginning with the line that satisfies a regex.
24
- # The regex could be enclosed in single quotes, double quotes, or nothing.
25
- # @param input_strings [String] The multi-line string to scan
26
- # @param regex [String] The regular expression to match against each line of `input_strings` until found
27
- # @return [String] The remaining multi-line string
28
- # @example Returns remaining lines starting with the line containing the word `module`.
29
- # {{ flexible_include '/blog/2020/10/03/jekyll-plugins.html' | from 'module' }}
30
- def from(input_strings, regex)
31
- return '' unless check_parameters(input_strings, regex)
32
-
33
- regex = remove_quotations(regex.to_s.strip)
34
- matched = false
35
- result = ''
36
- input_strings.each_line do |line|
37
- matched = true if !matched && line =~ %r!#{regex}!
38
- result += line if matched
39
- end
40
- result
12
+ module FromToUntil
13
+ @logger = if CALLED_FROM_JEKYLL
14
+ require 'liquid'
15
+ require 'jekyll_plugin_logger'
16
+ PluginMetaLogger.instance.new_logger "FromToUntil", PluginMetaLogger.instance.config
17
+ else
18
+ require 'logger'
19
+ Logger.new $stdout
20
+ end
21
+
22
+ # Filters a multiline string, returning the portion beginning with the line that satisfies a regex.
23
+ # The regex could be enclosed in single quotes, double quotes, or nothing.
24
+ # @param input_strings [String] The multi-line string to scan
25
+ # @param regex [String] The regular expression to match against each line of `input_strings` until found
26
+ # @return [String] The remaining multi-line string
27
+ # @example Returns remaining lines starting with the line containing the word `module`.
28
+ # {{ flexible_include '/blog/2020/10/03/jekyll-plugins.html' | from 'module' }}
29
+ def from(input_strings, regex)
30
+ return '' unless check_parameters(input_strings, regex)
31
+
32
+ regex = remove_quotations(regex.to_s.strip)
33
+ matched = false
34
+ result = ''
35
+ input_strings.each_line do |line|
36
+ matched = true if !matched && line =~ %r!#{regex}!
37
+ result += line if matched
41
38
  end
39
+ result
40
+ end
42
41
 
43
- # Filters a multiline string, returning the portion from the beginning until and including the line that satisfies a regex.
44
- # The regex could be enclosed in single quotes, double quotes, or nothing.
45
- # @example Returns lines up to and including the line containing the word `module`.
46
- # {{ flexible_include '/blog/2020/10/03/jekyll-plugins.html' | to 'module' }}
47
- def to(input_strings, regex)
48
- return '' unless check_parameters(input_strings, regex)
49
-
50
- regex = remove_quotations(regex.to_s.strip)
51
- result = ''
52
- input_strings.each_line do |line|
53
- result += line
54
- return result if line.match?(%r!#{regex}!)
55
- end
56
- result
42
+ # Filters a multiline string, returning the portion from the beginning until and including the line that satisfies a regex.
43
+ # The regex could be enclosed in single quotes, double quotes, or nothing.
44
+ # @example Returns lines up to and including the line containing the word `module`.
45
+ # {{ flexible_include '/blog/2020/10/03/jekyll-plugins.html' | to 'module' }}
46
+ def to(input_strings, regex)
47
+ return '' unless check_parameters(input_strings, regex)
48
+
49
+ regex = remove_quotations(regex.to_s.strip)
50
+ result = ''
51
+ input_strings.each_line do |line|
52
+ result += line
53
+ return result if line.match?(%r!#{regex}!)
57
54
  end
55
+ result
56
+ end
58
57
 
59
- # Filters a multiline string, returning the portion from the beginning until but not including the line that satisfies a regex.
60
- # The regex could be enclosed in single quotes, double quotes, or nothing.
61
- # @example Returns lines up to but not including the line containing the word `module`.
62
- # {{ flexible_include '/blog/2020/10/03/jekyll-plugins.html' | until 'module' }}
63
- def until(input_strings, regex)
64
- return '' unless check_parameters(input_strings, regex)
65
-
66
- regex = remove_quotations(regex.to_s.strip)
67
- result = ''
68
- input_strings.each_line do |line|
69
- return result if line.match?(%r!#{regex}!)
70
-
71
- result += line
72
- end
73
- result
74
- end
58
+ # Filters a multiline string, returning the portion from the beginning until but not including the line that satisfies a regex.
59
+ # The regex could be enclosed in single quotes, double quotes, or nothing.
60
+ # @example Returns lines up to but not including the line containing the word `module`.
61
+ # {{ flexible_include '/blog/2020/10/03/jekyll-plugins.html' | until 'module' }}
62
+ def until(input_strings, regex)
63
+ return '' unless check_parameters(input_strings, regex)
64
+
65
+ regex = remove_quotations(regex.to_s.strip)
66
+ result = ''
67
+ input_strings.each_line do |line|
68
+ return result if line.match?(%r!#{regex}!)
75
69
 
76
- private if CALLED_FROM_JEKYLL
70
+ result += line
71
+ end
72
+ result
73
+ end
77
74
 
78
- def check_parameters(input_strings, regex)
79
- if input_strings.nil? || input_strings.empty?
80
- @logger.warn { "Warning: Plugin 'from' received no input for regex #{regex}." }
81
- return false
82
- end
75
+ private if CALLED_FROM_JEKYLL
83
76
 
84
- regex = regex.to_s
85
- if regex.nil? || regex.empty?
86
- @logger.warn { "Warning: Plugin 'from' received no regex for input #{input_strings}." }
87
- return false
88
- end
89
- true
77
+ def check_parameters(input_strings, regex)
78
+ if input_strings.nil? || input_strings.empty?
79
+ @logger.warn { "Warning: Plugin 'from' received no input for regex #{regex}." }
80
+ return false
90
81
  end
91
82
 
92
- def remove_quotations(str)
93
- str = str.slice(1..-2) if (str.start_with?('"') && str.end_with?('"')) ||
94
- (str.start_with?("'") && str.end_with?("'"))
95
- str
83
+ regex = regex.to_s
84
+ if regex.nil? || regex.empty?
85
+ @logger.warn { "Warning: Plugin 'from' received no regex for input #{input_strings}." }
86
+ return false
96
87
  end
88
+ true
89
+ end
97
90
 
98
- module_function :from, :to, :until, :check_parameters, :remove_quotations
91
+ def remove_quotations(str)
92
+ str = str.slice(1..-2) if (str.start_with?('"') && str.end_with?('"')) ||
93
+ (str.start_with?("'") && str.end_with?("'"))
94
+ str
99
95
  end
100
96
 
101
- # See https://www.mslinn.com/jekyll/10400-jekyll-plugin-template-collection.html#module_function
102
- module FromToUntilFilter
103
- def from(input_strings, regex)
104
- input_strings = extra_decode HTMLEntities.new.decode input_strings
105
- regex = extra_decode HTMLEntities.new.decode regex
106
- FromToUntil.from(input_strings, regex) # method forwarding
107
- end
97
+ module_function :from, :to, :until, :check_parameters, :remove_quotations
98
+ end
108
99
 
109
- def to(input_strings, regex)
110
- input_strings = extra_decode HTMLEntities.new.decode input_strings
111
- regex = extra_decode HTMLEntities.new.decode regex
112
- FromToUntil.to(input_strings, regex) # method forwarding
113
- end
100
+ # See https://www.mslinn.com/jekyll/10400-jekyll-plugin-template-collection.html#module_function
101
+ module FromToUntilFilter
102
+ def from(input_strings, regex)
103
+ input_strings = extra_decode HTMLEntities.new.decode input_strings
104
+ regex = extra_decode HTMLEntities.new.decode regex
105
+ FromToUntil.from(input_strings, regex) # method forwarding
106
+ end
114
107
 
115
- def until(input_strings, regex)
116
- input_strings = extra_decode HTMLEntities.new.decode input_strings
117
- regex = extra_decode HTMLEntities.new.decode regex
118
- FromToUntil.until(input_strings, regex) # method forwarding
119
- end
108
+ def to(input_strings, regex)
109
+ input_strings = extra_decode HTMLEntities.new.decode input_strings
110
+ regex = extra_decode HTMLEntities.new.decode regex
111
+ FromToUntil.to(input_strings, regex) # method forwarding
112
+ end
120
113
 
121
- # HTMLEntities does not support enough HTML entities
122
- def extra_decode(line)
123
- line.gsub('{', '{')
124
- .gsub('}', '}')
125
- .gsub('(', '(')
126
- .gsub(')', ')')
127
- .gsub('&lparen;', '(')
128
- .gsub('&rparen;', ')')
129
- .gsub('[', '[')
130
- .gsub(']', ']')
131
- .gsub('[', '[')
132
- .gsub(']', ']')
133
- end
114
+ def until(input_strings, regex)
115
+ input_strings = extra_decode HTMLEntities.new.decode input_strings
116
+ regex = extra_decode HTMLEntities.new.decode regex
117
+ FromToUntil.until(input_strings, regex) # method forwarding
134
118
  end
135
119
 
136
- if CALLED_FROM_JEKYLL
137
- PluginMetaLogger.instance.info { "Loaded #{JekyllPluginFromToUntilName::PLUGIN_NAME} v#{JekyllFromToUntilVersion::VERSION} plugin." }
138
- Liquid::Template.register_filter(FromToUntilFilter)
120
+ # HTMLEntities does not support enough HTML entities
121
+ def extra_decode(line)
122
+ line.gsub('{', '{')
123
+ .gsub('}', '}')
124
+ .gsub('(', '(')
125
+ .gsub(')', ')')
126
+ .gsub('&lparen;', '(')
127
+ .gsub('&rparen;', ')')
128
+ .gsub('[', '[')
129
+ .gsub(']', ']')
130
+ .gsub('[', '[')
131
+ .gsub(']', ']')
139
132
  end
140
133
  end
134
+
135
+ if CALLED_FROM_JEKYLL
136
+ PluginMetaLogger.instance.info { "Loaded #{JekyllPluginFromToUntilName::PLUGIN_NAME} v#{JekyllFromToUntilVersion::VERSION} plugin." }
137
+ Liquid::Template.register_filter(FromToUntilFilter)
138
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll_from_to_until
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Slinn
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-22 00:00:00.000000000 Z
11
+ date: 2024-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: htmlentities
@@ -83,7 +83,7 @@ metadata:
83
83
  source_code_uri: https://github.com/mslinn/jekyll_from_to_until
84
84
  post_install_message: |2+
85
85
 
86
- Thanks for installing jekyll_from_to_until v1.0.5!
86
+ Thanks for installing jekyll_from_to_until v1.0.6!
87
87
 
88
88
  rdoc_options: []
89
89
  require_paths:
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  - !ruby/object:Gem::Version
100
100
  version: '0'
101
101
  requirements: []
102
- rubygems_version: 3.5.17
102
+ rubygems_version: 3.5.23
103
103
  signing_key:
104
104
  specification_version: 4
105
105
  summary: 'This Jekyll plugin provides 3 filters that return portions of a multiline