yamlscript 0.1.86 → 0.1.89
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/ChangeLog.md +12 -0
- data/ReadMe.md +2 -2
- data/lib/yamlscript/version.rb +1 -1
- data/lib/yamlscript.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 31592876bd4b34b5e8329de7b371614b64b190e3a3a7238262985184b29da074
|
4
|
+
data.tar.gz: dffda717a6476f6c68717aed4a25a063ab49315a540fd21432705e4c0959645a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 492e7f01c5db2cf43fc268015dacf8c1b22447f60beef7a0b6fe4e9739e3e48a384fcf6a6e1470bd1fcde06e075af3dbebde6df2bc0119493568e06f61405e4c
|
7
|
+
data.tar.gz: 8344c69a7df39e3b7225f5549cedfcf68bc0690e9d20cfd7f3109e64310af43b1aa24b69b6b1b3d7b927745c73476cd817c17fbf5a1257f57b1ab7c5d8d203be
|
data/ChangeLog.md
CHANGED
data/ReadMe.md
CHANGED
@@ -10,7 +10,7 @@ Add Logic to Your YAML Files
|
|
10
10
|
|
11
11
|
Load `file.yaml` with YAMLScript:
|
12
12
|
```yaml
|
13
|
-
!yamlscript/v0
|
13
|
+
!yamlscript/v0:
|
14
14
|
|
15
15
|
# Get data from external sources:
|
16
16
|
names-url =:
|
@@ -168,7 +168,7 @@ See https://github.com/yaml/yamlscript?#installing-yamlscript for more info.
|
|
168
168
|
|
169
169
|
## License & Copyright
|
170
170
|
|
171
|
-
Copyright 2022-
|
171
|
+
Copyright 2022-2025 Ingy döt Net <ingy@ingy.net>
|
172
172
|
|
173
173
|
This project is licensed under the terms of the `MIT` license.
|
174
174
|
See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for
|
data/lib/yamlscript/version.rb
CHANGED
data/lib/yamlscript.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright 2023-
|
3
|
+
# Copyright 2023-2025 Ingy dot Net
|
4
4
|
# This code is licensed under MIT license (See License for details)
|
5
5
|
|
6
6
|
require 'fiddle'
|
@@ -16,7 +16,7 @@ class YAMLScript
|
|
16
16
|
# This value is automatically updated by 'make bump'.
|
17
17
|
# The version number is used to find the correct shared library file.
|
18
18
|
# We currently only support binding to an exact version of libyamlscript.
|
19
|
-
YAMLSCRIPT_VERSION = '0.1.
|
19
|
+
YAMLSCRIPT_VERSION = '0.1.89'
|
20
20
|
|
21
21
|
# A low-level interface to the native library
|
22
22
|
module LibYAMLScript
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yamlscript
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.89
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ingy döt Net
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: minitest
|