standard 1.28.3 → 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: 30b728f2836aad5e7fddd215df4ff85951020b33cac13b33ab1961c5ed24ee89
4
- data.tar.gz: 80ed236d661fd860ef7dc08d4b65d6c10b4495135527083c301b6a345853d182
3
+ metadata.gz: 9cacd9a7826b5f1ba936886338d0da0c09fc0c6ce117b080bc790d1f9e5e7640
4
+ data.tar.gz: bbcc3b1ad40d9d40b96b0ba497fde48ed827cb0a54083b582a84021f85ed36ea
5
5
  SHA512:
6
- metadata.gz: 67c06d4ad34dc5036054a9c08961344fb3f41fbe81738e46dcb3dcbfb926d2291fd3e864c0694f73d4659d3f71ee904d2676bdc87e82b9e06def612c89d9cd24
7
- data.tar.gz: ae8bb8be8db855f1815265db396020269ee4f79703fd181b5a84c460a932e204140848e4be81522e10866afca018e73b58a5712b181bee5506e7ee1c9c1abbd5
6
+ metadata.gz: 635184ab9f254a00940b37189ebdf2dacec5edc385af855efab0abf4723ef649b7fe1790fce79287a0e5114fdc791559723ec1a5c16031c00631c89a57634f63
7
+ data.tar.gz: '07148ca7aecc5c9b08763bea32623dafdf222f1c9366dc52dd6238ed32a2288cdbbfa188999e615b3c668501958dbfb7f1765e9c6229d3ad09c8de6a35c4f820'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ## 1.28.4
8
+
9
+ * Fix [standard-rails#7](https://github.com/standardrb/standard-rails/issues/7#issuecomment-1563505365)
10
+
3
11
  ## 1.28.3
4
12
 
5
13
  * Older ruby support fixes from [@pboling](https://github.com/pboling):
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.28.3)
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)
@@ -19,9 +19,9 @@ module Standard
19
19
  RuboCop::ConfigStore.new.tap do |config_store|
20
20
  options_config = @assigns_rubocop_yaml.call(config_store, standard_config)
21
21
  @sets_target_ruby_version.call(options_config, standard_config)
22
- @configures_ignored_paths.call(options_config, standard_config)
23
22
  @combines_plugin_configs.call(options_config, standard_config)
24
23
  @merges_user_config_extensions.call(options_config, standard_config)
24
+ @configures_ignored_paths.call(options_config, standard_config)
25
25
  end
26
26
  end
27
27
  end
@@ -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.3")
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.3
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-24 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