method-ray 0.1.4-aarch64-linux → 0.1.6-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: 7cfea60af3118b268a60b401535e761d0867eb7c7e2758a451e09e1be0e4d742
4
- data.tar.gz: 938dd227fc46662d5290c9783e9aafe10d33f60dcecdd55ea3abfa00e21cad2c
3
+ metadata.gz: 0c0df840585f97eb87ccbb3ac09ef1ac37abbf415c90febe01715def53d543d6
4
+ data.tar.gz: 6de637828045d67079d7e144f8990b82b52294e249b7ce2fa8092fa836e0608e
5
5
  SHA512:
6
- metadata.gz: a9a129e3b6b755b6e670497499aab08365bce7ae1ffbb51853f538b34c78da4cc9e85eb149f8a74ecc777e1b3e3ff6ac5128293d093f3a7c6eab694b6750192b
7
- data.tar.gz: 65af9027a438e31e7f368787b5f05a23609d6f50c105dc6c35d6fb3416ebcf16d2741183552a7cbbdce64c9438b61b6eca5f4d7d721af26498f7ee835d1a5b57
6
+ metadata.gz: a5967afc974457f1027d255d757e068851ae1d5fc3e73e329df82c254ebf6a47cd4e3823650c7b0861ee07b186da93d992987f840b20659ce1c85ba50807bc6f
7
+ data.tar.gz: 72d6a72ee1a92dec70a99f8077a5f878a699b48389d9f37c1da101ceee2bb21fbdae0adb3bbf798ece0bc97fa6a30564bc233787cabe57d49d6ddaa06370e19a
data/CHANGELOG.md CHANGED
@@ -5,6 +5,32 @@ 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.6] - 2026-02-23
9
+
10
+ ### Fixed
11
+
12
+ - Embed `method_loader.rb` at compile time with `include_str!` to eliminate runtime dependency on source directory ([#35](https://github.com/dak2/method-ray/pull/35))
13
+
14
+ ## [0.1.5] - 2026-02-23
15
+
16
+ ### Added
17
+
18
+ - String interpolation type inference (`InterpolatedStringNode`, `InterpolatedSymbolNode`, `InterpolatedRegularExpressionNode`) ([#26](https://github.com/dak2/method-ray/pull/26))
19
+ - Parentheses node type inference for parenthesized expressions ([#27](https://github.com/dak2/method-ray/pull/27))
20
+ - Qualified name method registration to resolve namespace conflicts ([#28](https://github.com/dak2/method-ray/pull/28))
21
+ - Return statement type inference with merge vertex pattern ([#29](https://github.com/dak2/method-ray/pull/29))
22
+ - Ternary operator type inference tests ([#30](https://github.com/dak2/method-ray/pull/30))
23
+ - Logical operator (`&&`/`||`) type inference with union type approximation ([#31](https://github.com/dak2/method-ray/pull/31))
24
+ - Class method (`def self.foo`) type registration and checking ([#32](https://github.com/dak2/method-ray/pull/32))
25
+
26
+ ### Changed
27
+
28
+ - Removed stateless `Analyzer` class and simplified Ruby FFI surface to module functions ([#33](https://github.com/dak2/method-ray/pull/33))
29
+
30
+ ### Deprecated
31
+
32
+ - `clear_cache` command ([#25](https://github.com/dak2/method-ray/pull/25))
33
+
8
34
  ## [0.1.4] - 2026-02-16
9
35
 
10
36
  ### Added
@@ -69,6 +95,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
69
95
  - Initial release
70
96
  - `methodray check` - Static type checking for Ruby files
71
97
 
98
+ [0.1.6]: https://github.com/dak2/method-ray/releases/tag/v0.1.6
99
+ [0.1.5]: https://github.com/dak2/method-ray/releases/tag/v0.1.5
72
100
  [0.1.4]: https://github.com/dak2/method-ray/releases/tag/v0.1.4
73
101
  [0.1.3]: https://github.com/dak2/method-ray/releases/tag/v0.1.3
74
102
  [0.1.2]: https://github.com/dak2/method-ray/releases/tag/v0.1.2
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.4'
4
+ VERSION = '0.1.6'
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.4
4
+ version: 0.1.6
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2