method-ray 0.1.0-x86_64-linux → 0.1.2-x86_64-linux
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 +20 -0
- data/lib/methodray/methodray-cli +0 -0
- data/lib/methodray/methodray.so +0 -0
- data/lib/methodray/rbs_cache.bin +0 -0
- data/lib/methodray/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 51136c05942527982166a8fb75b8373c6c893dc08a9a4beb89a88b12033ee6fb
|
|
4
|
+
data.tar.gz: 69d8e3b5b1b498d19a83b6167fe860f31d9ac72bafaacda92d6f516aa0edbebe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f04014bc486c8db96dc851cfbb7de8ea2974796a2ad710a8988b2a8cd698f51681adf5de6220ba65f36ecd90531eb9cad0f2d687d7bbef1d18d1c8a97c622c73
|
|
7
|
+
data.tar.gz: 3c0cade6ad8384592435b288033ce127f9af7455a21282e9896f5d5b24db2515c884aaa35a0d50ae9892ff9fdd4511558fc0e5cac16be157c6f3c8f66cc4b888
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ 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.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.2] - 2025-01-19
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Pre-built RBS cache bundled with gem (no initialization required)
|
|
13
|
+
- `MethodRay.setup` for cache generation (internal API)
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Separated `setup` logic from `infer_types` for cleaner cache generation
|
|
18
|
+
|
|
19
|
+
## [0.1.1] - 2025-01-19
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- aarch64-linux (ARM64 Linux) support
|
|
24
|
+
- macOS support (arm64-darwin)
|
|
25
|
+
|
|
8
26
|
## [0.1.0] - 2025-01-18
|
|
9
27
|
|
|
10
28
|
### Added
|
|
@@ -12,4 +30,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
12
30
|
- Initial release
|
|
13
31
|
- `methodray check` - Static type checking for Ruby files
|
|
14
32
|
|
|
33
|
+
[0.1.2]: https://github.com/dak2/method-ray/releases/tag/v0.1.2
|
|
34
|
+
[0.1.1]: https://github.com/dak2/method-ray/releases/tag/v0.1.1
|
|
15
35
|
[0.1.0]: https://github.com/dak2/method-ray/releases/tag/v0.1.0
|
data/lib/methodray/methodray-cli
CHANGED
|
Binary file
|
data/lib/methodray/methodray.so
CHANGED
|
Binary file
|
|
Binary file
|
data/lib/methodray/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: method-ray
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: x86_64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- dak2
|
|
@@ -41,6 +41,7 @@ files:
|
|
|
41
41
|
- lib/methodray/commands.rb
|
|
42
42
|
- lib/methodray/methodray-cli
|
|
43
43
|
- lib/methodray/methodray.so
|
|
44
|
+
- lib/methodray/rbs_cache.bin
|
|
44
45
|
- lib/methodray/version.rb
|
|
45
46
|
homepage: https://github.com/dak2/method-ray
|
|
46
47
|
licenses:
|