method-ray 0.1.3-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b41b6ec06b23bd58bcd83c77c5f8e03b72981fe45818eb7ff862b5132c505a3
4
- data.tar.gz: 5f37b7bf3e49581e20f082c47455ec55e8f439165b7209e75b3192e5e52f281d
3
+ metadata.gz: edf825bef73625ba0ffdf4eebfe1efe42611b2d97817d80f458e8fdb8bb26575
4
+ data.tar.gz: f422b8224699dc9ff951bc72f656a07ec4e285bc96496c8ffa0cd31cf23e2bda
5
5
  SHA512:
6
- metadata.gz: c273b10bbb1aedcc08b8c0c55d1aee17a1d6dc67a04cc32caeef967c11faeeebde756ec818ff05c553eac05c68b015a4a29d078ef8dc16c1cc1a1b167e8b6eb8
7
- data.tar.gz: 16ec34a560f6663757c3ec7af1e85fe584c93e84a64a8a3b290c45fecf48adf7df4e574038a4c10f66f142c2f5cb4a90e2dfb25151bb3270454022521628d3f7
6
+ metadata.gz: 3bba6addf7aca556555c996e621cc923f3653dd4e3a35ecf7727f3e4ce82443f87468d2d5eb911114d87ee1fc243f64d9cf987af012ed913935862956800256a
7
+ data.tar.gz: df7e586648fc964ad6e813772b4dfa23749fe0af90571b8375fcb7e18d86605025013d9d261c88ef7a8ded278a2563ef23b96a4f36aa5f5f5605252708226923
data/CHANGELOG.md CHANGED
@@ -5,6 +5,41 @@ 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
+
28
+ ## [0.1.4] - 2026-02-16
29
+
30
+ ### Added
31
+
32
+ - Method return type inference for user-defined methods ([#18](https://github.com/dak2/method-ray/pull/18))
33
+ - Parameter type propagation from call-site arguments to method parameters ([#19](https://github.com/dak2/method-ray/pull/19))
34
+ - Receiver-less method call support (ImplicitSelfCall) ([#20](https://github.com/dak2/method-ray/pull/20))
35
+ - `attr_reader`/`attr_writer`/`attr_accessor` support for type inference ([#21](https://github.com/dak2/method-ray/pull/21))
36
+ - `if`/`unless`/`case` conditional type inference ([#22](https://github.com/dak2/method-ray/pull/22))
37
+ - `ConstantReadNode`/`ConstantPathNode` support for type inference ([#23](https://github.com/dak2/method-ray/pull/23))
38
+
39
+ ### Changed
40
+
41
+ - Split install.rs and integration tests into focused modules ([#17](https://github.com/dak2/method-ray/pull/17))
42
+
8
43
  ## [0.1.3] - 2025-02-08
9
44
 
10
45
  ### Added
@@ -54,6 +89,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
54
89
  - Initial release
55
90
  - `methodray check` - Static type checking for Ruby files
56
91
 
92
+ [0.1.5]: https://github.com/dak2/method-ray/releases/tag/v0.1.5
93
+ [0.1.4]: https://github.com/dak2/method-ray/releases/tag/v0.1.4
57
94
  [0.1.3]: https://github.com/dak2/method-ray/releases/tag/v0.1.3
58
95
  [0.1.2]: https://github.com/dak2/method-ray/releases/tag/v0.1.2
59
96
  [0.1.1]: https://github.com/dak2/method-ray/releases/tag/v0.1.1
data/lib/methodray/cli.rb CHANGED
@@ -17,6 +17,7 @@ module MethodRay
17
17
  when 'watch'
18
18
  Commands.watch(args)
19
19
  when 'clear-cache'
20
+ warn "WARNING: 'clear-cache' is deprecated and will be removed in a future version."
20
21
  Commands.clear_cache(args)
21
22
  else
22
23
  puts "Unknown command: #{command}"
@@ -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
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MethodRay
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.5'
5
5
  end
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.3
4
+ version: 0.1.5
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2