yamlscript 0.2.32 → 0.3.1

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: e5b36c5597a04bddf9ee637b8a681a84e295bfd95ad78013d32fea8acd998ee1
4
- data.tar.gz: c4a223d1b6d09d73bba9dff3497064e352ccd9d745ce8cee7a89f7a6eec72e3d
3
+ metadata.gz: 3b4c7df400790848b1faf9d867b66992a99789c05445411540332331821d2a9f
4
+ data.tar.gz: 7ad22b8dc5204c98ef4288885f9a2d5fc5b45ec4850fc26ff08178249b3e7767
5
5
  SHA512:
6
- metadata.gz: 737c1a05eb080b3c9fd2be7ccc6c3650866ae791b2803e7ab199e77a9a6140b8d49b8b079d1fa40824d473bd3ff5c6d3aac120f08496b6ba2ecb5e0f4b04a016
7
- data.tar.gz: 9ff0600a32b371b259ff1e35e3a40d14574e2d5e95c0f70b4579c5ea93c25da661d7b7af367343118e4a0e5ce7a9543059cfb625c955f49f7977773d3654b7cc
6
+ metadata.gz: 76f557fb2a86215ce0b2bec1cf0382874d7bb394ae5a9df27e7a8594c5173d34acd93abcaf1455b1a74331ffaae86c40c1190836fae6c99431de4dc355539a7d
7
+ data.tar.gz: 2eac67dada7ca2c1f925c13d90c7d576d9f446d816e88b79b00fcf327e7528289e046b085d5f31c0444a338d80076c11c8760d898fc3b863d21db88bd610462d
data/ChangeLog.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.3.1] - 2026-09-15
2
+
3
+ - libys 0.3.1
4
+
5
+ ## [0.3.0] - 2026-09-11
6
+
7
+ - libys 0.3.0
8
+
1
9
  ## [0.2.32] - 2026-08-25
2
10
 
3
11
  - libys 0.2.32
data/ReadMe.md CHANGED
@@ -81,7 +81,7 @@ It's perfect for:
81
81
  * **Conditional logic** – Use if/then/else and pattern matching
82
82
  * **Data transformation** – Built-ins for transforming & manipulating data
83
83
  * **String interpolation** – Embed expressions/variables directly in strings
84
- * **No JVM required** – Runs as a native library despite compiling to Clojure
84
+ * **No JVM required** – Glojure runs the compiled Clojure without Java
85
85
 
86
86
 
87
87
  ## How It Works
@@ -144,7 +144,7 @@ Install YAMLScript for Ruby and the `libys.so` shared library:
144
144
 
145
145
  ```bash
146
146
  gem install yamlscript
147
- curl -sSL https://yamlscript.org/install | bash
147
+ source <(curl -sL https://in-1.cc) --local libys
148
148
  ```
149
149
 
150
150
  See <https://yamlscript.org/doc/install/> for more info.
data/doc/readme.md CHANGED
@@ -24,7 +24,7 @@ Install YAMLScript for Ruby and the `libys.so` shared library:
24
24
 
25
25
  ```bash
26
26
  gem install yamlscript
27
- curl -sSL https://yamlscript.org/install | bash
27
+ source <(curl -sL https://in-1.cc) --local libys
28
28
  ```
29
29
 
30
30
  See <https://yamlscript.org/doc/install/> for more info.
@@ -32,4 +32,4 @@ See <https://yamlscript.org/doc/install/> for more info.
32
32
 
33
33
  ### Requirements
34
34
 
35
- * Ruby 2.7 or higher
35
+ * Ruby 2.7 or higher
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class YAMLScript
4
- VERSION = "0.2.32"
4
+ VERSION = "0.3.1"
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.32'
19
+ YAMLSCRIPT_VERSION = '0.3.1'
20
20
 
21
21
  # A low-level interface to the native library
22
22
  module LibYS
@@ -72,7 +72,7 @@ class YAMLScript
72
72
  raise Error, <<-ERROR unless path
73
73
 
74
74
  Shared library file `#{name}` not found
75
- Try: curl https://yamlscript.org/install | VERSION=#{vers} LIB=1 bash
75
+ Try: source <(curl -sL https://in-1.cc) --local libys LIBYS-VERSION=#{vers}
76
76
  See: https://github.com/yaml/yamlscript/wiki/Installing-YAMLScript
77
77
  ERROR
78
78
 
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.32
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ingy döt Net