standard 1.25.3 → 1.25.4
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 +5 -0
- data/Gemfile.lock +3 -3
- data/README.md +1 -0
- data/lib/standard/lsp/routes.rb +3 -1
- data/lib/standard/version.rb +1 -1
- metadata +2 -2
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
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.4)
|
|
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,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
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.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
|