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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ce84509956a86a4f62ad0a6c2928f5da022e9456798fdba15e6b7eee08459f8
4
- data.tar.gz: 99cd555635a5dde6cc93d964b143c062256c6862a8cfc4e81f96fa7f99b107fa
3
+ metadata.gz: cce6cc61b2689f8b91a1b387c8bf64a2552b5f271c5c05e0d5e40e33fbeda60e
4
+ data.tar.gz: f4dbf8abab4bbcd6e9af4ed16d75c7d8144c682d80d22ca398ccbeda1288f55e
5
5
  SHA512:
6
- metadata.gz: 7ca356750161e66431ae1f5462eb39b05a7c259383820b002ac0f41882d69dba89ea21599d71a083c687c597d578bfa5ebe2db53841cad814553580f4a03abb8
7
- data.tar.gz: 54711f7f5dc14c39c53bfa5678ffdad388859fa3b9b8b278d72bc446db953bf6eb363b9f702dc75add25d7b77d39c5dba8eb697981f8af65de9bbce12889da32
6
+ metadata.gz: eea4e6439bf13a9eaf03552e2c48b80d5eb437729a0098f6d0ded282d6acfe8278146865c56b7ae1382af395fbaf6e83d727e701cec63267f12b33e4d1558ad4
7
+ data.tar.gz: 98ed774d5796f8cfe107b2828b41cf0f0ebcc9cf79ed2185618cc52eb27b7ca9dcb8d71165805b45bc73bd9ad97b5f3a4498b17f5e29789657c5bef5b9e0c2bc
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # hypercast
2
2
 
3
3
  [![CI](https://github.com/SkunkWerkx/HyperCast/actions/workflows/ci.yml/badge.svg)](https://github.com/SkunkWerkx/HyperCast/actions/workflows/ci.yml)
4
+ [![Gem](https://img.shields.io/gem/v/hypercast.svg)](https://rubygems.org/gems/hypercast)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
- Not on RubyGems yet — the release pipeline is staged (`.github/workflows/release.yml`,
71
- Trusted Publishing pending): one universal `ruby`-platform gem (pure Fiddle, all six
72
- platforms' natives bundled) plus four precompiled Magnus platform gems
73
- (`x86_64-linux`, `aarch64-linux`, `x86_64-darwin`, `arm64-darwin`) that `gem install`
74
- auto-selects when they match nobody ever compiles anything. Until the first tag: clone
75
- the repo, `cargo build --release` in `rust/` (plus `--features ruby`, staged to
76
- `lib/hypercast_native.so`, for the Magnus backend), and `bundle exec rspec`.
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.
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.1"
26
+ VERSION = "0.0.2"
27
27
 
28
28
  # The success case of a verdict: a cast value.
29
29
  Success = Data.define(:value)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hypercast
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Buvinghausen