standard 1.25.2 → 1.25.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +5 -5
- data/README.md +1 -0
- data/lib/standard/lsp/routes.rb +3 -1
- data/lib/standard/version.rb +1 -1
- data/standard.gemspec +3 -2
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67c3210797cdb4dfc86ebfe31b828aea710d685adf1e8d3cc0c8f34df8caef72
|
4
|
+
data.tar.gz: d2b1637d2012c4cef0f194c6f2316f12d9bedc8c4ea4b05fa0fc4e7af5ba81b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8932fa0aee54a3143bcc56a77ce828888101089c5f6ac515b5eb2a8c1486ef05a61aace572c5c4c320b56b0f0d874c8b8b031296d46d2fd193073ff1dd7d6dd5
|
7
|
+
data.tar.gz: 724a15814a9d1170ab775e6b6b8ab057a972b229b6457cc1be8f03db98c49e0679ff119d1f5f6b8ffd99a11089052c389220eb6f7e4de06f1503975115ab7c6f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.25.4
|
4
|
+
|
5
|
+
* Bring the LSP Server's executeCommand capabilities in line with the spec
|
6
|
+
[#543](https://github.com/testdouble/standard/pull/543)
|
7
|
+
|
8
|
+
## 1.25.3
|
9
|
+
|
10
|
+
* Relax the version specifier on `rubocop` and `rubocop-performance` to allow
|
11
|
+
patch-level updates
|
12
|
+
|
3
13
|
## 1.25.2
|
4
14
|
|
5
15
|
* Disable Style/RedundantFetchBlock due to concerns the performance benefit
|
data/Gemfile.lock
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
standard (1.25.
|
4
|
+
standard (1.25.4)
|
5
5
|
language_server-protocol (~> 3.17.0.2)
|
6
|
-
rubocop (
|
7
|
-
rubocop-performance (
|
6
|
+
rubocop (~> 1.48.1)
|
7
|
+
rubocop-performance (~> 1.16.0)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
@@ -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,9 @@ module Standard
|
|
28
28
|
capabilities: Proto::Interface::ServerCapabilities.new(
|
29
29
|
document_formatting_provider: true,
|
30
30
|
diagnostic_provider: true,
|
31
|
-
execute_command_provider:
|
31
|
+
execute_command_provider: Proto::Interface::ExecuteCommandOptions.new(
|
32
|
+
commands: ["standardRuby.formatAutoFixes"]
|
33
|
+
),
|
32
34
|
text_document_sync: Proto::Interface::TextDocumentSyncOptions.new(
|
33
35
|
change: Proto::Constant::TextDocumentSyncKind::FULL,
|
34
36
|
open_close: true
|
data/lib/standard/version.rb
CHANGED
data/standard.gemspec
CHANGED
@@ -18,9 +18,10 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.bindir = "exe"
|
19
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
20
|
spec.require_paths = ["lib"]
|
21
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
21
22
|
|
22
|
-
spec.add_dependency "rubocop", "1.48.1"
|
23
|
-
spec.add_dependency "rubocop-performance", "1.16.0"
|
23
|
+
spec.add_dependency "rubocop", "~> 1.48.1"
|
24
|
+
spec.add_dependency "rubocop-performance", "~> 1.16.0"
|
24
25
|
|
25
26
|
# not semver: first three are lsp protocol version, last is patch
|
26
27
|
spec.add_dependency "language_server-protocol", "~> 3.17.0.2"
|
metadata
CHANGED
@@ -1,41 +1,41 @@
|
|
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.4
|
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
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 1.48.1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 1.48.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-performance
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: 1.16.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 1.16.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
@@ -122,7 +122,8 @@ files:
|
|
122
122
|
- standard.gemspec
|
123
123
|
homepage: https://github.com/testdouble/standard
|
124
124
|
licenses: []
|
125
|
-
metadata:
|
125
|
+
metadata:
|
126
|
+
rubygems_mfa_required: 'true'
|
126
127
|
post_install_message:
|
127
128
|
rdoc_options: []
|
128
129
|
require_paths:
|