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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 10ded174ec569721dd381f60e3321ff5865202d1f74b8454f76318caf0aa9173
4
- data.tar.gz: 806883ee72a817ada40be7a32192cc9b6bb96c6dec4356cb3fcc094bba3f54e3
3
+ metadata.gz: 67c3210797cdb4dfc86ebfe31b828aea710d685adf1e8d3cc0c8f34df8caef72
4
+ data.tar.gz: d2b1637d2012c4cef0f194c6f2316f12d9bedc8c4ea4b05fa0fc4e7af5ba81b0
5
5
  SHA512:
6
- metadata.gz: 8c0944c89dacff7130ed7456eab5af4b4a43b5c297e449e5465671f90b78f72cd46dca21603b8c16d73bf30a76d701918a3086945bf5d101d8de18a700bbfe25
7
- data.tar.gz: 053d1ef9a8b3a0117741c61bd72a8079c5ae95733c038f58eb73bec579a3796351f735c08231d70d5118d209b21ae544d5f256bc031b6f1386e1089402fdd4ce
6
+ metadata.gz: 8932fa0aee54a3143bcc56a77ce828888101089c5f6ac515b5eb2a8c1486ef05a61aace572c5c4c320b56b0f0d874c8b8b031296d46d2fd193073ff1dd7d6dd5
7
+ data.tar.gz: 724a15814a9d1170ab775e6b6b8ab057a972b229b6457cc1be8f03db98c49e0679ff119d1f5f6b8ffd99a11089052c389220eb6f7e4de06f1503975115ab7c6f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ## 1.25.3
4
9
 
5
10
  * 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.3)
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.1.1)
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.27.0)
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
 
@@ -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: true,
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
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.25.3")
2
+ VERSION = Gem::Version.new("1.25.4")
3
3
  end
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.3
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-03-20 00:00:00.000000000 Z
11
+ date: 2023-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop