yamlscript 0.2.31 → 0.3.0
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 +8 -0
- data/ReadMe.md +2 -2
- data/doc/readme.md +2 -2
- data/lib/yamlscript/version.rb +1 -1
- data/lib/yamlscript.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93f2d17da7d0f0b7a405512d75bfe9ef0e99d4c5f901eee2c62f96521c966123
|
|
4
|
+
data.tar.gz: 9f1b597bdc978ded675d75eaf5ef80e834530daa946e68e315d0f012db22dceb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7409243c98a1addc8d4f776b1f7158427e12047185ff06f0b0e9cc7651337a17adb59e8ccf90a5e3d7a29496701ce92a7a2da9f054eaad31f14e92f1066f32d9
|
|
7
|
+
data.tar.gz: 6d02d296af3a4c307ab42f6218e21b4f3380a2a1c647ec73a4a29fdff68d47937d58f579a9fd7d491a948338fd56d9d45e31abcfdc22d98f998e6f6a693af4be
|
data/ChangeLog.md
CHANGED
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** –
|
|
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 -
|
|
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 -
|
|
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
|
data/lib/yamlscript/version.rb
CHANGED
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.
|
|
19
|
+
YAMLSCRIPT_VERSION = '0.3.0'
|
|
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://
|
|
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
|
|