viem_rb 0.1.0 → 0.1.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 +4 -4
- data/CHANGELOG.md +11 -0
- data/LICENSE +1 -1
- data/README.md +13 -2
- data/lib/viem/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f1f233efd28f85977dd9c19e78b30b96b80ef734fb19aadace2c56853c21926
|
|
4
|
+
data.tar.gz: 6244282454a7665b0414f3df58cfa969cb0437d68e2da626b0941abe62d90938
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5714272bbe82519f3296a9038b7d14498596505e5ab992ab0455c5bd2918e3f71fbaa8ab5644323140292f8f16f82e8d62774d1c0fbab44b002a29bb90aadedf
|
|
7
|
+
data.tar.gz: 03bed294a39adccf044d9e50353ffc781ca041ef5c83e3238ba1cbfaa5b7f0c15cb3c0f7ad5727ccf6c97f239a0aa61ca2e691b3631e0f5738357e7d25030e24
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.1] - 2026-03-19
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Extended test suite: ABI decoder, ABI parser, Hash utils, error hierarchy, chain definitions, and Fallback transport specs (161 examples total)
|
|
12
|
+
- GitHub Actions CI workflow — tests on Ruby 2.6 through 3.2, RuboCop on 3.2
|
|
13
|
+
- GitHub Actions publish workflow — auto-publishes to RubyGems on GitHub release
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- Corrected author name from `Noryk` to `Nyrok` in gemspec, README and LICENSE
|
|
17
|
+
- Lowered required Ruby version to `>= 2.6.0`
|
|
18
|
+
|
|
8
19
|
## [0.1.0] - 2025-01-01
|
|
9
20
|
|
|
10
21
|
### Added
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# viem_rb
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://rubygems.org/gems/viem_rb)
|
|
4
|
+
[](https://rubygems.org/gems/viem_rb)
|
|
5
|
+
[](./LICENSE)
|
|
6
|
+
[](https://www.ruby-lang.org)
|
|
7
|
+
|
|
8
|
+
📦 **[https://rubygems.org/gems/viem_rb](https://rubygems.org/gems/viem_rb)**
|
|
9
|
+
|
|
10
|
+
A Ruby/Rails adaptation of [viem](https://viem.sh) — the TypeScript Ethereum library. Provides Ethereum clients, ABI encoding/decoding, account management, and utilities for Ruby 2.6+ and Rails 7+ applications.
|
|
4
11
|
|
|
5
12
|
## Installation
|
|
6
13
|
|
|
@@ -362,4 +369,8 @@ end
|
|
|
362
369
|
|
|
363
370
|
## License
|
|
364
371
|
|
|
365
|
-
MIT License. Copyright 2025
|
|
372
|
+
MIT License. Copyright 2025 Nyrok. See [LICENSE](LICENSE) for details.
|
|
373
|
+
|
|
374
|
+
---
|
|
375
|
+
|
|
376
|
+
*viem_rb is available on [RubyGems](https://rubygems.org/gems/viem_rb). Inspired by [viem](https://viem.sh).*
|
data/lib/viem/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: viem_rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Nyrok
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
@@ -152,7 +152,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
152
152
|
requirements:
|
|
153
153
|
- - ">="
|
|
154
154
|
- !ruby/object:Gem::Version
|
|
155
|
-
version: 2.
|
|
155
|
+
version: 2.6.0
|
|
156
156
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
157
157
|
requirements:
|
|
158
158
|
- - ">="
|