yamlscript 0.2.1 → 0.2.3

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: 044ba49ce43d7233b7f9f3554abe1a0c9302b264793844d85a4a6bdd7e45a017
4
- data.tar.gz: 7632506085fb4ebd3438a8499aafecf1bccea045c97ba72f34f0dba325f2c2b4
3
+ metadata.gz: adc5f948886a047ea3ad9e04bf56f0abd4abfffbbfcfd11951eab4cdfcf2f9eb
4
+ data.tar.gz: a7d77e7b131306a7eed0afebafd5ac9343fdd6b8a87e5dd64856017e4a0700df
5
5
  SHA512:
6
- metadata.gz: 27baec3225fcf007304a44822285bb2befc926904602725af93fbf0064d08a51830c1a8f64d306829670ee4ec77ee233ab43275d68c90c57438d14eb1d1def5b
7
- data.tar.gz: b81b643ba7f4c8b8b636b6d9b14041688b5a6c9ba1bb1e4ffe433d0fc51a8a7252286f9a7cedec68ec24c854f40271a341303b0f765da69870d6c6c1baeb0790
6
+ metadata.gz: b33d07eb63edb779d4956d5375d527b8df8fc229532b372044473967ace12af264b87cb5ce2913cb38611f4a68861298d9f8dd2ea0c7335c65c412c90e3ec550
7
+ data.tar.gz: fa6f7b8d7a97bc72528528b1bf90875405d8265f2ebc7f4375870e29acdebc872d4fb3369b1d8d57187faa332d187ce7a81efe26b11a2da50d82b86260d2dae3
data/ChangeLog.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.2.3] - 2025-09-09
2
+
3
+ - libys 0.2.3
4
+
5
+ ## [0.2.2] - 2025-07-18
6
+
7
+ - libys 0.2.2
8
+
1
9
  ## [0.2.1] - 2025-07-06
2
10
 
3
11
  - libys 0.2.1
data/Makefile CHANGED
@@ -1,6 +1,9 @@
1
1
  include ../common/base.mk
2
2
  include $(COMMON)/binding.mk
3
3
 
4
+ # include $(MAKES)/ruby.mk # TODO
5
+ include $(MAKES)/shell.mk
6
+
4
7
  RUBY := $(shell command -v bundle)
5
8
 
6
9
  RAKE-CMDS := \
data/ReadMe.md CHANGED
@@ -9,13 +9,13 @@ Add Logic to Your YAML Files
9
9
  ## Synopsis
10
10
 
11
11
  Load `file.yaml` with YS:
12
+
12
13
  ```yaml
13
14
  !YS-v0:
14
15
 
15
16
  # Get data from external sources:
16
17
  names-url =:
17
- "https://raw.githubusercontent.com/dominictarr/\
18
- random-name/master/first-names.json"
18
+ 'github:dominictarr/random-name/first-names.json'
19
19
 
20
20
  name-list =: names-url:curl:json/load
21
21
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class YAMLScript
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.3"
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 libys.
19
- YAMLSCRIPT_VERSION = '0.2.1'
19
+ YAMLSCRIPT_VERSION = '0.2.3'
20
20
 
21
21
  # A low-level interface to the native library
22
22
  module LibYS
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.2.1
4
+ version: 0.2.3
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-07-06 00:00:00.000000000 Z
12
+ date: 2025-09-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest