method-ray 0.1.8-aarch64-linux → 0.1.9-aarch64-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 +18 -0
- data/lib/methodray/binary_locator.rb +2 -2
- data/lib/methodray/commands.rb +1 -1
- 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 +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e332c1090b82534758f6d294192b96651bb1a77ce1d96313278dff472c33047d
|
|
4
|
+
data.tar.gz: a89700f7c287eae530743e6303cd02bdfb3f302c6323ca72e20a64668b1a769f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0492ed7f0c506b121b601fa1634ccf14b318a8a42684a9893092d453de8c11b89db4e142bc23f053158bbc394df5954827ee98326e552f990bb4caad2bdc4c6
|
|
7
|
+
data.tar.gz: 2afa4fc6ca5e56fc1f5594dcd44d9ee26e9f47c50795f2aa1faa28298c01c77c3ed2b7131474693a9fb55a30caa2035bf80c2c6150d871f9aec62203486195d8
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,23 @@ 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.9] - 2026-03-15
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add linter CI workflow for Clippy and RuboCop ([#61](https://github.com/dak2/method-ray/pull/61))
|
|
13
|
+
- Add unit tests for blocks and parameters analyzers ([#60](https://github.com/dak2/method-ray/pull/60))
|
|
14
|
+
- Add super call type inference support ([#59](https://github.com/dak2/method-ray/pull/59))
|
|
15
|
+
- Add for loop type inference support ([#58](https://github.com/dak2/method-ray/pull/58))
|
|
16
|
+
- Add module include support for mixin method resolution ([#57](https://github.com/dak2/method-ray/pull/57))
|
|
17
|
+
- Add complete multi-assignment type inference ([#56](https://github.com/dak2/method-ray/pull/56))
|
|
18
|
+
- Add auto-tagging workflow for release PR merges ([#53](https://github.com/dak2/method-ray/pull/53))
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Rename rust/ directory to core/ ([#55](https://github.com/dak2/method-ray/pull/55))
|
|
23
|
+
- Infer actual exception types in rescue clauses ([#54](https://github.com/dak2/method-ray/pull/54))
|
|
24
|
+
|
|
8
25
|
## [0.1.8] - 2026-03-09
|
|
9
26
|
|
|
10
27
|
### Added
|
|
@@ -123,6 +140,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
123
140
|
- Initial release
|
|
124
141
|
- `methodray check` - Static type checking for Ruby files
|
|
125
142
|
|
|
143
|
+
[0.1.9]: https://github.com/dak2/method-ray/releases/tag/v0.1.9
|
|
126
144
|
[0.1.8]: https://github.com/dak2/method-ray/releases/tag/v0.1.8
|
|
127
145
|
[0.1.7]: https://github.com/dak2/method-ray/releases/tag/v0.1.7
|
|
128
146
|
[0.1.6]: https://github.com/dak2/method-ray/releases/tag/v0.1.6
|
|
@@ -21,8 +21,8 @@ module MethodRay
|
|
|
21
21
|
File.expand_path(@binary_name, LIB_DIR),
|
|
22
22
|
# Development: target/release (project root)
|
|
23
23
|
File.expand_path("../../target/release/#{@binary_name}", LIB_DIR),
|
|
24
|
-
# Development:
|
|
25
|
-
File.expand_path("../../
|
|
24
|
+
# Development: core/target/release (legacy standalone binary)
|
|
25
|
+
File.expand_path("../../core/target/release/#{@legacy_binary_name}", LIB_DIR)
|
|
26
26
|
]
|
|
27
27
|
end
|
|
28
28
|
end
|
data/lib/methodray/commands.rb
CHANGED
|
@@ -46,7 +46,7 @@ module MethodRay
|
|
|
46
46
|
warn 'Error: CLI binary not found.'
|
|
47
47
|
warn ''
|
|
48
48
|
warn 'For development, build with:'
|
|
49
|
-
warn ' cd
|
|
49
|
+
warn ' cd core && cargo build --release --bin methodray --features cli'
|
|
50
50
|
warn ''
|
|
51
51
|
warn 'If installed via gem, this might be a platform compatibility issue.'
|
|
52
52
|
warn 'Please report at: https://github.com/dak2/method-ray/issues'
|
data/lib/methodray/methodray-cli
CHANGED
|
Binary file
|
data/lib/methodray/methodray.so
CHANGED
|
Binary file
|
data/lib/methodray/rbs_cache.bin
CHANGED
|
Binary file
|
data/lib/methodray/version.rb
CHANGED