method-ray 0.1.10-aarch64-linux → 0.2.1-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: 727708d17eb472425fa09fc18e0d3dabe979380848171393c0d8a32b5d8d710f
4
- data.tar.gz: 03e65fb016fabe34ea0270b08261687b79608dd343e46ba6fd0ea9b74db74867
3
+ metadata.gz: 0133b692617f613d81f181351af23d666b0ef1556d8f7af7fca75c26e00bc5aa
4
+ data.tar.gz: 305c27f45ffbeeccc56122452719251ea683b89e58e1a7d69258022031b69984
5
5
  SHA512:
6
- metadata.gz: 6ec6102ebb75b2d95e73c73ed3c96cca4529df82cfc9a370a17cedd7cd628c71471553ff279d7aab3a65e5dfb0a9c275f865a9615fc946e3c65316b5cb2f831a
7
- data.tar.gz: bf45b775fbede0f48ba448a070c99034ee0d36e5248e68d6d227cb8fb4289b2628accef29a9f63f34c332dbe2aa029b5cb511b5f4e589ffac278d292518855b8
6
+ metadata.gz: 7d5f50ad8f48d415f534f3d2c13e6777887269fa3798c4849060df0fb15833e256c918372a3feec585c2fd58a93e075b8d10d35d97c43112872d249ece3ffca7
7
+ data.tar.gz: 22ad92dbc575668065fa49c103427195f2c4ea37dd49621c9b4f3d5340658d1520fc37ba23ab1d5dfe05131dd60af37b51aaf361c01d0b30585e0bbccf706d0b
data/CHANGELOG.md CHANGED
@@ -5,6 +5,38 @@ 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.2.1] - 2026-05-03
9
+
10
+ ### Deprecated
11
+
12
+ - Deprecate `watch` subcommand ([#113](https://github.com/dak2/method-ray/pull/113))
13
+ - Deprecate `methodray-lsp` binary ([#116](https://github.com/dak2/method-ray/pull/116))
14
+
15
+ ### Fixed
16
+
17
+ - Fix gem name in README ([#115](https://github.com/dak2/method-ray/pull/115))
18
+
19
+ ## [0.2.0] - 2026-04-05
20
+
21
+ ### Added
22
+
23
+ - Add pattern matching type inference ([#103](https://github.com/dak2/method-ray/pull/103))
24
+ - Add Lambda/Proc type inference support ([#104](https://github.com/dak2/method-ray/pull/104))
25
+ - Add compound assignment type inference ([#105](https://github.com/dak2/method-ray/pull/105))
26
+ - Add `defined?` type inference support ([#106](https://github.com/dak2/method-ray/pull/106))
27
+ - Add `yield` type inference support ([#107](https://github.com/dak2/method-ray/pull/107))
28
+ - Add control flow keyword support (`break`, `next`, `retry`, `redo`) ([#108](https://github.com/dak2/method-ray/pull/108))
29
+ - Add backtick string type inference ([#109](https://github.com/dak2/method-ray/pull/109))
30
+ - Add predicate type propagation to pattern variables in `case...in` ([#110](https://github.com/dak2/method-ray/pull/110))
31
+ - Add constant type inference support ([#102](https://github.com/dak2/method-ray/pull/102))
32
+ - Add global variable (`$var`) type tracking ([#100](https://github.com/dak2/method-ray/pull/100))
33
+ - Add class variable (`@@var`) type tracking ([#99](https://github.com/dak2/method-ray/pull/99))
34
+
35
+ ### Fixed
36
+
37
+ - Fix uninitialized `@@var` reads silently skipping downstream type checking ([#101](https://github.com/dak2/method-ray/pull/101))
38
+ - Fix release workflow not triggered after tag push ([#88](https://github.com/dak2/method-ray/pull/88))
39
+
8
40
  ## [0.1.10] - 2026-03-24
9
41
 
10
42
  ### Added
@@ -159,6 +191,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
159
191
  - Initial release
160
192
  - `methodray check` - Static type checking for Ruby files
161
193
 
194
+ [0.2.0]: https://github.com/dak2/method-ray/releases/tag/v0.2.0
162
195
  [0.1.10]: https://github.com/dak2/method-ray/releases/tag/v0.1.10
163
196
  [0.1.9]: https://github.com/dak2/method-ray/releases/tag/v0.1.9
164
197
  [0.1.8]: https://github.com/dak2/method-ray/releases/tag/v0.1.8
data/README.md CHANGED
@@ -11,7 +11,7 @@ Method-Ray supports Ruby 3.4 or later.
11
11
  ## Installation
12
12
 
13
13
  ```bash
14
- gem install methodray
14
+ gem install method-ray
15
15
  ```
16
16
 
17
17
  ## Quick Start
@@ -23,13 +23,6 @@ gem install methodray
23
23
  bundle exec methodray check app/models/user.rb
24
24
  ```
25
25
 
26
- ### Watching for File Changes, Re-checking Methods
27
-
28
- ```bash
29
- # Watch a file for changes and re-check on save
30
- bundle exec methodray watch app/models/user.rb
31
- ```
32
-
33
26
  #### Example Usage
34
27
 
35
28
  `bundle exec 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.10'
4
+ VERSION = '0.2.1'
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.10
4
+ version: 0.2.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2