method-ray 0.1.9-aarch64-linux → 0.1.10-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: e332c1090b82534758f6d294192b96651bb1a77ce1d96313278dff472c33047d
4
- data.tar.gz: a89700f7c287eae530743e6303cd02bdfb3f302c6323ca72e20a64668b1a769f
3
+ metadata.gz: 727708d17eb472425fa09fc18e0d3dabe979380848171393c0d8a32b5d8d710f
4
+ data.tar.gz: 03e65fb016fabe34ea0270b08261687b79608dd343e46ba6fd0ea9b74db74867
5
5
  SHA512:
6
- metadata.gz: f0492ed7f0c506b121b601fa1634ccf14b318a8a42684a9893092d453de8c11b89db4e142bc23f053158bbc394df5954827ee98326e552f990bb4caad2bdc4c6
7
- data.tar.gz: 2afa4fc6ca5e56fc1f5594dcd44d9ee26e9f47c50795f2aa1faa28298c01c77c3ed2b7131474693a9fb55a30caa2035bf80c2c6150d871f9aec62203486195d8
6
+ metadata.gz: 6ec6102ebb75b2d95e73c73ed3c96cca4529df82cfc9a370a17cedd7cd628c71471553ff279d7aab3a65e5dfb0a9c275f865a9615fc946e3c65316b5cb2f831a
7
+ data.tar.gz: bf45b775fbede0f48ba448a070c99034ee0d36e5248e68d6d227cb8fb4289b2628accef29a9f63f34c332dbe2aa029b5cb511b5f4e589ffac278d292518855b8
data/CHANGELOG.md CHANGED
@@ -5,6 +5,25 @@ 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.10] - 2026-03-24
9
+
10
+ ### Added
11
+
12
+ - Add safe navigation operator (`&.`) support ([#65](https://github.com/dak2/method-ray/pull/65))
13
+ - Add inheritance chain method resolution for user-defined classes ([#66](https://github.com/dak2/method-ray/pull/66))
14
+ - Add extend support for module methods as class methods ([#67](https://github.com/dak2/method-ray/pull/67))
15
+ - Add pull request template ([#82](https://github.com/dak2/method-ray/pull/82))
16
+
17
+ ### Changed
18
+
19
+ - Migrate Rust integration tests to Ruby integration tests ([#68](https://github.com/dak2/method-ray/pull/68), [#69](https://github.com/dak2/method-ray/pull/69), [#70](https://github.com/dak2/method-ray/pull/70), [#71](https://github.com/dak2/method-ray/pull/71), [#72](https://github.com/dak2/method-ray/pull/72), [#73](https://github.com/dak2/method-ray/pull/73), [#74](https://github.com/dak2/method-ray/pull/74), [#75](https://github.com/dak2/method-ray/pull/75))
20
+ - Remove redundant Rust unit tests ([#77](https://github.com/dak2/method-ray/pull/77), [#78](https://github.com/dak2/method-ray/pull/78), [#80](https://github.com/dak2/method-ray/pull/80), [#83](https://github.com/dak2/method-ray/pull/83), [#84](https://github.com/dak2/method-ray/pull/84), [#85](https://github.com/dak2/method-ray/pull/85), [#86](https://github.com/dak2/method-ray/pull/86))
21
+ - Simplify README to focus on core value proposition ([#76](https://github.com/dak2/method-ray/pull/76))
22
+
23
+ ### Fixed
24
+
25
+ - Fix release workflow to include gem assets in GitHub Release ([#63](https://github.com/dak2/method-ray/pull/63), [#64](https://github.com/dak2/method-ray/pull/64))
26
+
8
27
  ## [0.1.9] - 2026-03-15
9
28
 
10
29
  ### Added
@@ -140,6 +159,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
140
159
  - Initial release
141
160
  - `methodray check` - Static type checking for Ruby files
142
161
 
162
+ [0.1.10]: https://github.com/dak2/method-ray/releases/tag/v0.1.10
143
163
  [0.1.9]: https://github.com/dak2/method-ray/releases/tag/v0.1.9
144
164
  [0.1.8]: https://github.com/dak2/method-ray/releases/tag/v0.1.8
145
165
  [0.1.7]: https://github.com/dak2/method-ray/releases/tag/v0.1.7
data/README.md CHANGED
@@ -16,28 +16,26 @@ gem install methodray
16
16
 
17
17
  ## Quick Start
18
18
 
19
- ### VSCode Extension (under development)
20
-
21
- 1. Install the [Method-Ray VSCode extension](https://github.com/dak2/method-ray-vscode)
22
- 2. Open a Ruby file in VSCode
23
- 3. Errors will be highlighted automatically
24
-
25
- ### CLI
19
+ ### Checking Methods
26
20
 
27
21
  ```bash
28
22
  # Check a single file
29
23
  bundle exec methodray check app/models/user.rb
24
+ ```
30
25
 
31
- # Watch mode - auto re-check on file changes
26
+ ### Watching for File Changes, Re-checking Methods
27
+
28
+ ```bash
29
+ # Watch a file for changes and re-check on save
32
30
  bundle exec methodray watch app/models/user.rb
33
31
  ```
34
32
 
35
- #### Example
36
-
37
- `methodray check <file>`: Performs static type checking on the specified Ruby file.
33
+ #### Example Usage
38
34
 
35
+ `bundle exec methodray check app/models/user.rb`
39
36
 
40
37
  ```ruby
38
+ # app/models/user.rb
41
39
  class User
42
40
  def greeting
43
41
  name = "Alice"
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.9'
4
+ VERSION = '0.1.10'
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.9
4
+ version: 0.1.10
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2