sutty-liquid 0.12.4 → 0.13.0rc0
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
- checksums.yaml.gz.sig +0 -0
- data/lib/jekyll/filters/arrays.rb +11 -0
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f96ce75462f98f6147c38e1b6bf0009622b5109f153718ed85cd52c1ed841bb
|
4
|
+
data.tar.gz: 627f2bb07b8a03bed5d93dfe76f0310cda4e857a529c60fd5e0d821a146f75b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59a6879d4609e886e7c13da7ad84d94a122f633a20d5aef741ad5b59616c69ebdab0364174afbc59b383782fdcfdadeb9a21869801ca649db3854187d3d61985
|
7
|
+
data.tar.gz: f4033d00a442ad63b7e44e8c741983f5a0ec30e2d96a26adea70bdc24bb2a395946917a581fe0d5a398eabcb310c1e9a05e2a1d38268b7b260669760454a7b16
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -17,6 +17,17 @@ module Jekyll
|
|
17
17
|
input.sample(amount)
|
18
18
|
end
|
19
19
|
|
20
|
+
# Flattens nested arrays
|
21
|
+
#
|
22
|
+
# @example
|
23
|
+
# {{ site.posts | map: 'categories' | flatten: 1 }}
|
24
|
+
# @param input [any]
|
25
|
+
# @param level [Integer]
|
26
|
+
# @return [Array]
|
27
|
+
def flatten(input, level = nil)
|
28
|
+
[input].flatten(level)
|
29
|
+
end
|
30
|
+
|
20
31
|
# Join arrays or append item to array
|
21
32
|
#
|
22
33
|
# @example
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sutty-liquid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0rc0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- f
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
35
35
|
cpurTQHNJfL/ah+9dYbgDXdG5HAAjRMAsWSvERw95YdN9XzQZCdUk5wUs+A6cNtO
|
36
36
|
AZZUMTVYNx8JqUeemxlXBRjsD/s=
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date: 2025-
|
38
|
+
date: 2025-07-30 00:00:00.000000000 Z
|
39
39
|
dependencies:
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: fast_blank
|
@@ -217,9 +217,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
217
217
|
version: 2.7.0
|
218
218
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
|
-
- - "
|
220
|
+
- - ">"
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
222
|
+
version: 1.3.1
|
223
223
|
requirements: []
|
224
224
|
rubygems_version: 3.3.27
|
225
225
|
signing_key:
|
metadata.gz.sig
CHANGED
Binary file
|