hypercast 0.0.1 → 0.0.2
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/README.md +11 -7
- data/lib/hypercast/native/linux-arm64/libhypercast.so +0 -0
- data/lib/hypercast/native/linux-x64/libhypercast.so +0 -0
- data/lib/hypercast/native/osx-arm64/libhypercast.dylib +0 -0
- data/lib/hypercast/native/osx-x64/libhypercast.dylib +0 -0
- data/lib/hypercast/native/win-arm64/hypercast.dll +0 -0
- data/lib/hypercast/native/win-x64/hypercast.dll +0 -0
- data/lib/hypercast.rb +1 -1
- 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: cce6cc61b2689f8b91a1b387c8bf64a2552b5f271c5c05e0d5e40e33fbeda60e
|
|
4
|
+
data.tar.gz: f4dbf8abab4bbcd6e9af4ed16d75c7d8144c682d80d22ca398ccbeda1288f55e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eea4e6439bf13a9eaf03552e2c48b80d5eb437729a0098f6d0ded282d6acfe8278146865c56b7ae1382af395fbaf6e83d727e701cec63267f12b33e4d1558ad4
|
|
7
|
+
data.tar.gz: 98ed774d5796f8cfe107b2828b41cf0f0ebcc9cf79ed2185618cc52eb27b7ca9dcb8d71165805b45bc73bd9ad97b5f3a4498b17f5e29789657c5bef5b9e0c2bc
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# hypercast
|
|
2
2
|
|
|
3
3
|
[](https://github.com/SkunkWerkx/HyperCast/actions/workflows/ci.yml)
|
|
4
|
+
[](https://rubygems.org/gems/hypercast)
|
|
5
|
+
[](https://github.com/SkunkWerkx/HyperCast/blob/master/LICENSE)
|
|
4
6
|
|
|
5
7
|
**Ruby's own pattern matching over two `Data` case types — the value, or a closed reason
|
|
6
8
|
Symbol plus the exact byte span that offended. Two backends, one public surface: a Magnus
|
|
@@ -67,13 +69,15 @@ include their own archaeology.)
|
|
|
67
69
|
|
|
68
70
|
## Install
|
|
69
71
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
`
|
|
72
|
+
```sh
|
|
73
|
+
gem install hypercast
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Five gems are published per release: one universal `ruby`-platform gem (pure Fiddle, all six
|
|
77
|
+
platforms' natives bundled) plus four precompiled Magnus platform gems (`x86_64-linux`,
|
|
78
|
+
`aarch64-linux`, `x86_64-darwin`, `arm64-darwin`) that `gem install` auto-selects when they
|
|
79
|
+
match. Nobody ever compiles anything; Windows and any unmatched platform land on the
|
|
80
|
+
universal gem's Fiddle backend, which replays the same corpus green.
|
|
77
81
|
|
|
78
82
|
See [the repo root README](../README.md) for the full door table, the receipts, and the
|
|
79
83
|
state of every other language binding.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/hypercast.rb
CHANGED
|
@@ -23,7 +23,7 @@ require_relative "hypercast/runtime"
|
|
|
23
23
|
module HyperCast
|
|
24
24
|
# This gem's own version — kept in lockstep with hypercast.gemspec by the
|
|
25
25
|
# prepare-release workflow, so the two can never drift apart again.
|
|
26
|
-
VERSION = "0.0.
|
|
26
|
+
VERSION = "0.0.2"
|
|
27
27
|
|
|
28
28
|
# The success case of a verdict: a cast value.
|
|
29
29
|
Success = Data.define(:value)
|