method-ray 0.2.0 → 0.2.1
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 +4 -4
- data/CHANGELOG.md +11 -0
- data/README.md +1 -8
- data/core/Cargo.toml +2 -1
- data/core/src/cli/args.rs +1 -1
- data/core/src/lsp/main.rs +3 -0
- data/core/src/main.rs +1 -0
- data/ext/Cargo.toml +1 -1
- data/ext/src/cli.rs +1 -0
- data/lib/methodray/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 820b8ee8240aede2c29b705b08e9f14a0217b06ca6c0bee3d23f04872af018a5
|
|
4
|
+
data.tar.gz: d4e84dc8e271e79fead7bbfb06f9c9629fa071d168a2190c8ecdfb379ce1ca1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39c4e95d9804272232ba5eeb7db4742c26dfb18abb4e0df86b77ba105a3f5361ac64aee9bff27cacefd0a74b13a092d53f2a560a34b0b6fe4aecfbf06c0f4705
|
|
7
|
+
data.tar.gz: ef6996df6d735d1b94dfce807f921bcb894a8fa6c4d57b655b765dd50da066a81a36c387bdff3cbe646d186ca69477280276a7204f7c298887a593159c260228
|
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
|
|
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`
|
data/core/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "methodray-core"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
|
|
6
6
|
[lib]
|
|
@@ -12,6 +12,7 @@ name = "methodray"
|
|
|
12
12
|
path = "src/main.rs"
|
|
13
13
|
required-features = ["cli"]
|
|
14
14
|
|
|
15
|
+
# [DEPRECATED] methodray-lsp will be removed in a future version.
|
|
15
16
|
[[bin]]
|
|
16
17
|
name = "methodray-lsp"
|
|
17
18
|
path = "src/lsp/main.rs"
|
data/core/src/cli/args.rs
CHANGED
data/core/src/lsp/main.rs
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
//! LSP server binary entry point
|
|
2
|
+
//!
|
|
3
|
+
//! [DEPRECATED] methodray-lsp will be removed in a future version.
|
|
2
4
|
|
|
3
5
|
use methodray_core::lsp;
|
|
4
6
|
|
|
5
7
|
#[tokio::main]
|
|
6
8
|
async fn main() {
|
|
9
|
+
eprintln!("WARNING: 'methodray-lsp' is deprecated and will be removed in a future version.");
|
|
7
10
|
lsp::run_server().await;
|
|
8
11
|
}
|
data/core/src/main.rs
CHANGED
data/ext/Cargo.toml
CHANGED
data/ext/src/cli.rs
CHANGED
data/lib/methodray/version.rb
CHANGED