standard 1.25.3 → 1.25.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/Gemfile.lock +3 -3
- data/README.md +1 -0
- data/lib/standard/lsp/routes.rb +0 -1
- data/lib/standard/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9dd3dd8a74fc215df752f020ed7b5e29f831592bc15cccc3b6c8d8a256bfbee1
|
4
|
+
data.tar.gz: c914ab5a31d00ca0dd0ff6f483f2364b1a885d97988c3df38d169ef3c1edf5f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60960dec029698d932669cc588558bce61cf0f58fec3eea09659d04a0c4d3b5708d7b6e055b652eb0cd46ea5c5c253685107df110212a48fc48ae13d78cc030e
|
7
|
+
data.tar.gz: d2d277d165b146c517837384d9519f044c3661f0499198189404ca9e9630065e774e7a3760f57f7f25e0648836558104c64e286f35163bc8e0d2460da3c20c9e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.25.5
|
4
|
+
|
5
|
+
* Temporarily disable registration of `executeCommand` to prevent conflict with
|
6
|
+
the VS Code extension's client-side registration of the same name
|
7
|
+
[#544](https://github.com/testdouble/standard/pull/544)
|
8
|
+
|
9
|
+
## 1.25.4
|
10
|
+
|
11
|
+
* Bring the LSP Server's executeCommand capabilities in line with the spec
|
12
|
+
[#543](https://github.com/testdouble/standard/pull/543)
|
13
|
+
|
3
14
|
## 1.25.3
|
4
15
|
|
5
16
|
* Relax the version specifier on `rubocop` and `rubocop-performance` to allow
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
standard (1.25.
|
4
|
+
standard (1.25.5)
|
5
5
|
language_server-protocol (~> 3.17.0.2)
|
6
6
|
rubocop (~> 1.48.1)
|
7
7
|
rubocop-performance (~> 1.16.0)
|
@@ -21,7 +21,7 @@ GEM
|
|
21
21
|
method_source (1.0.0)
|
22
22
|
minitest (5.18.0)
|
23
23
|
parallel (1.22.1)
|
24
|
-
parser (3.2.
|
24
|
+
parser (3.2.2.0)
|
25
25
|
ast (~> 2.4.1)
|
26
26
|
pry (0.14.2)
|
27
27
|
coderay (~> 1.1)
|
@@ -40,7 +40,7 @@ GEM
|
|
40
40
|
rubocop-ast (>= 1.26.0, < 2.0)
|
41
41
|
ruby-progressbar (~> 1.7)
|
42
42
|
unicode-display_width (>= 2.4.0, < 3.0)
|
43
|
-
rubocop-ast (1.
|
43
|
+
rubocop-ast (1.28.0)
|
44
44
|
parser (>= 3.2.1.0)
|
45
45
|
rubocop-performance (1.16.0)
|
46
46
|
rubocop (>= 1.7.0, < 2.0)
|
data/README.md
CHANGED
@@ -229,6 +229,7 @@ Here are a few examples of Ruby Standard-compliant teams & projects:
|
|
229
229
|
* [Rebase Interactive](https://www.rebaseinteractive.com/)
|
230
230
|
* [Renuo](https://www.renuo.ch/)
|
231
231
|
* [RubyCI](https://ruby.ci)
|
232
|
+
* [Spinal](https://spinalcms.com/)
|
232
233
|
* [Teamtailor](https://www.teamtailor.com/)
|
233
234
|
* [thoughtbot](https://thoughtbot.com/)
|
234
235
|
|
data/lib/standard/lsp/routes.rb
CHANGED
@@ -28,7 +28,6 @@ module Standard
|
|
28
28
|
capabilities: Proto::Interface::ServerCapabilities.new(
|
29
29
|
document_formatting_provider: true,
|
30
30
|
diagnostic_provider: true,
|
31
|
-
execute_command_provider: true,
|
32
31
|
text_document_sync: Proto::Interface::TextDocumentSyncOptions.new(
|
33
32
|
change: Proto::Constant::TextDocumentSyncKind::FULL,
|
34
33
|
open_close: true
|
data/lib/standard/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.25.
|
4
|
+
version: 1.25.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Searls
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
139
|
- !ruby/object:Gem::Version
|
140
140
|
version: '0'
|
141
141
|
requirements: []
|
142
|
-
rubygems_version: 3.4.
|
142
|
+
rubygems_version: 3.4.10
|
143
143
|
signing_key:
|
144
144
|
specification_version: 4
|
145
145
|
summary: Ruby Style Guide, with linter & automatic code fixer
|