yamlscript 0.1.92 → 0.1.93

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: 3d2f59531529f04d7afd5dac0b7946d2ad2330e0ad2d7c1fb927e6336c3f4452
4
- data.tar.gz: 1112a21b54eaf01664e907b5dd1a87e7634f1d829d19e96df73a607b663748d6
3
+ metadata.gz: 5876096c5ddfac243f2b723995c1d0670e77ed3725be20401a7b7d4c483034f7
4
+ data.tar.gz: 67f64f21566516206cb295127d810bf6f668067d4822ee3689080dc1e1ba6e4d
5
5
  SHA512:
6
- metadata.gz: 8ce432e1659643fff01dc43019267363ea015a7098328e0b9b3f46b4663e77cfb22ecaae043783847fc79e1b84eb624e1b7c8aa71d3c926e073216713e8cce3e
7
- data.tar.gz: 12f780c8c2289470323eb4b080d230ad2f057c1780f54bab4390273425ab9a141eacb4e56bc769d66c14d73ac9dd7af032727927013e116664e4bd5fc72ad9db
6
+ metadata.gz: 359e50d9677cbd9be0cb1a841d300f192b0dcdb5a36e825b51952f6640b1d4fd6dbc3278a69aa04373bc1a4d4e38a3cab00b740f52cfbaa255d7a524c99d133d
7
+ data.tar.gz: a967b0cf7ca526158f637c57d1326bcffc27d099d71f3788fcc0341cbae6ae3cfa25d09cb2da6fd2b27877954053ad1f5861016c6bf404c0333a7f1074941e58
data/ChangeLog.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.1.93] - 2025-02-27
2
+
3
+ - libyamlscript 0.1.93
4
+
1
5
  ## [0.1.92] - 2025-02-24
2
6
 
3
7
  - libyamlscript 0.1.92
data/ReadMe.md CHANGED
@@ -98,14 +98,13 @@ puts data
98
98
  File `file.ys`:
99
99
 
100
100
  ```yaml
101
- !yamlscript/v0
101
+ !YS-v0:
102
102
 
103
103
  name =: "World"
104
104
 
105
- =>::
106
- foo: [1, 2, ! inc(41)]
107
- bar:: load("other.yaml")
108
- baz:: "Hello, $name!"
105
+ foo: [1, 2, ! inc(41)]
106
+ bar:: load("other.yaml")
107
+ baz:: "Hello, $name!"
109
108
  ```
110
109
 
111
110
  File `other.yaml`:
data/doc/readme.md CHANGED
@@ -13,14 +13,13 @@ puts data
13
13
  File `file.ys`:
14
14
 
15
15
  ```yaml
16
- !yamlscript/v0
16
+ !YS-v0:
17
17
 
18
18
  name =: "World"
19
19
 
20
- =>::
21
- foo: [1, 2, ! inc(41)]
22
- bar:: load("other.yaml")
23
- baz:: "Hello, $name!"
20
+ foo: [1, 2, ! inc(41)]
21
+ bar:: load("other.yaml")
22
+ baz:: "Hello, $name!"
24
23
  ```
25
24
 
26
25
  File `other.yaml`:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class YAMLScript
4
- VERSION = "0.1.92"
4
+ VERSION = "0.1.93"
5
5
  end
data/lib/yamlscript.rb CHANGED
@@ -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.92'
19
+ YAMLSCRIPT_VERSION = '0.1.93'
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.92
4
+ version: 0.1.93
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: 2025-02-24 00:00:00.000000000 Z
12
+ date: 2025-02-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest