standard 1.28.4 → 1.28.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 336a74c43a1586b848e35590fa8a7fe902d9b43ad673decdb5fb0df757cbc143
4
- data.tar.gz: 8259654132f8c8340d84b4f06f91411704ee372c73c2e55b4ffcc8fd61d3ac65
3
+ metadata.gz: 9cacd9a7826b5f1ba936886338d0da0c09fc0c6ce117b080bc790d1f9e5e7640
4
+ data.tar.gz: bbcc3b1ad40d9d40b96b0ba497fde48ed827cb0a54083b582a84021f85ed36ea
5
5
  SHA512:
6
- metadata.gz: 7f48f8174a34e6131fd321c6d55b4f2344620449f7856dc1c3047f55912c740930391730d797cbc2046ee5f30fa181f227ae54cb94b70c19c8a09a6be0445312
7
- data.tar.gz: '08df5f51287d8540393352a60f0e8bca80c2270e1d10703ff338ed9964447f32480966ecbf48bb441f30a596920370c9a70c69aebba2c6a8af33e3d05e16f6c6'
6
+ metadata.gz: 635184ab9f254a00940b37189ebdf2dacec5edc385af855efab0abf4723ef649b7fe1790fce79287a0e5114fdc791559723ec1a5c16031c00631c89a57634f63
7
+ data.tar.gz: '07148ca7aecc5c9b08763bea32623dafdf222f1c9366dc52dd6238ed32a2288cdbbfa188999e615b3c668501958dbfb7f1765e9c6229d3ad09c8de6a35c4f820'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.28.5
4
+
5
+ * Make LSP behave more nicely with nvim-lspconfig [#564](https://github.com/standardrb/standard/pull/564)
6
+
3
7
  ## 1.28.4
4
8
 
5
9
  * Fix [standard-rails#7](https://github.com/standardrb/standard-rails/issues/7#issuecomment-1563505365)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.28.4)
4
+ standard (1.28.5)
5
5
  language_server-protocol (~> 3.17.0.2)
6
6
  lint_roller (~> 1.0)
7
7
  rubocop (~> 1.50.2)
@@ -75,6 +75,10 @@ module Standard
75
75
  @writer.write({id: request[:id], result: format_file(uri)})
76
76
  end
77
77
 
78
+ handle "workspace/didChangeConfiguration" do |_request|
79
+ @logger.puts "Ignoring workspace/didChangeConfiguration"
80
+ end
81
+
78
82
  handle "workspace/didChangeWatchedFiles" do |request|
79
83
  if request[:params][:changes].any? { |change| change[:uri].end_with?(".standard.yml") }
80
84
  @logger.puts "Configuration file changed; restart required"
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.28.4")
2
+ VERSION = Gem::Version.new("1.28.5")
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.28.4
4
+ version: 1.28.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-05-26 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop