method-ray 0.1.4-aarch64-linux → 0.1.5-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 +21 -0
- data/lib/methodray/cli.rb +1 -0
- data/lib/methodray/commands.rb +0 -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: edf825bef73625ba0ffdf4eebfe1efe42611b2d97817d80f458e8fdb8bb26575
|
|
4
|
+
data.tar.gz: f422b8224699dc9ff951bc72f656a07ec4e285bc96496c8ffa0cd31cf23e2bda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3bba6addf7aca556555c996e621cc923f3653dd4e3a35ecf7727f3e4ce82443f87468d2d5eb911114d87ee1fc243f64d9cf987af012ed913935862956800256a
|
|
7
|
+
data.tar.gz: df7e586648fc964ad6e813772b4dfa23749fe0af90571b8375fcb7e18d86605025013d9d261c88ef7a8ded278a2563ef23b96a4f36aa5f5f5605252708226923
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ 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.5] - 2026-02-23
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- String interpolation type inference (`InterpolatedStringNode`, `InterpolatedSymbolNode`, `InterpolatedRegularExpressionNode`) ([#26](https://github.com/dak2/method-ray/pull/26))
|
|
13
|
+
- Parentheses node type inference for parenthesized expressions ([#27](https://github.com/dak2/method-ray/pull/27))
|
|
14
|
+
- Qualified name method registration to resolve namespace conflicts ([#28](https://github.com/dak2/method-ray/pull/28))
|
|
15
|
+
- Return statement type inference with merge vertex pattern ([#29](https://github.com/dak2/method-ray/pull/29))
|
|
16
|
+
- Ternary operator type inference tests ([#30](https://github.com/dak2/method-ray/pull/30))
|
|
17
|
+
- Logical operator (`&&`/`||`) type inference with union type approximation ([#31](https://github.com/dak2/method-ray/pull/31))
|
|
18
|
+
- Class method (`def self.foo`) type registration and checking ([#32](https://github.com/dak2/method-ray/pull/32))
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Removed stateless `Analyzer` class and simplified Ruby FFI surface to module functions ([#33](https://github.com/dak2/method-ray/pull/33))
|
|
23
|
+
|
|
24
|
+
### Deprecated
|
|
25
|
+
|
|
26
|
+
- `clear_cache` command ([#25](https://github.com/dak2/method-ray/pull/25))
|
|
27
|
+
|
|
8
28
|
## [0.1.4] - 2026-02-16
|
|
9
29
|
|
|
10
30
|
### Added
|
|
@@ -69,6 +89,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
69
89
|
- Initial release
|
|
70
90
|
- `methodray check` - Static type checking for Ruby files
|
|
71
91
|
|
|
92
|
+
[0.1.5]: https://github.com/dak2/method-ray/releases/tag/v0.1.5
|
|
72
93
|
[0.1.4]: https://github.com/dak2/method-ray/releases/tag/v0.1.4
|
|
73
94
|
[0.1.3]: https://github.com/dak2/method-ray/releases/tag/v0.1.3
|
|
74
95
|
[0.1.2]: https://github.com/dak2/method-ray/releases/tag/v0.1.2
|
data/lib/methodray/cli.rb
CHANGED
data/lib/methodray/commands.rb
CHANGED
|
@@ -14,7 +14,6 @@ module MethodRay
|
|
|
14
14
|
methodray version # Show version
|
|
15
15
|
methodray check [FILE] [OPTIONS] # Type check a Ruby file
|
|
16
16
|
methodray watch FILE # Watch file for changes and auto-check
|
|
17
|
-
methodray clear-cache # Clear RBS method cache
|
|
18
17
|
|
|
19
18
|
Examples:
|
|
20
19
|
methodray check app/models/user.rb
|
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