method-ray 0.2.0-x86_64-linux → 0.2.1-x86_64-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: d4e2dfab16ba257769a6dda98a695fcf87349ff4b21ea1046a0edb80ef6a2fc0
4
- data.tar.gz: c53f5fe58d1165251a0563b4352aaab6a376c9f8c4c7ae5ec7a4cc425fce889f
3
+ metadata.gz: 2c8dcfce222a6fc65d610865b2c311def7771e145888f418fc2a1757c07471f3
4
+ data.tar.gz: 00b9ff09ad80ff2dad653a44a662eacf1507d135c07d654e7ba7e78d50cb1e5b
5
5
  SHA512:
6
- metadata.gz: 8ce95d666255485bfdd808c0706ff14df1e6c5cbbcdc43c5d852b2954c141d7acd508febe9f2908f904c0eb1b2f517925fdf4a791f32cc5baa69b5a30cad6d0f
7
- data.tar.gz: 94dd9307af04717dcb7ea4f5288b6f7cf12db37f4f1505cc47eb38f47b0a1f502bdb45d2f841db57fa76f6e6bbf1478b09027a6d17a0cc10b8f788395e37c1f1
6
+ metadata.gz: d876127ee7388955534bba9ef4fd92dc0d21ee510a29ca9cecae476c9f0d594fa32c6617d8426df666abd32931edc5e2c62ab828ab80cf857af9ebc28776abbb
7
+ data.tar.gz: 1ce1a5e87dd3fae2805fbf124f68a81a60bfb8bf151db1efa4a7412fbb13c900c4fc6758d16cd54c5bde8bb4cfedd0cb58edb8679579b0d198828fe2f628c7f5
data/CHANGELOG.md CHANGED
@@ -5,6 +5,17 @@ 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
+
8
19
  ## [0.2.0] - 2026-04-05
9
20
 
10
21
  ### Added
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.2.0'
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.2.0
4
+ version: 0.2.1
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - dak2