standard 1.41.0 → 1.41.1
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 +1 -1
- data/lib/ruby_lsp/standard/wraps_built_in_lsp_standardizer.rb +7 -0
- data/lib/standard/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 518f3cd8128adcdb51904e331444965466ab87f3cdceb6c8e48cbcc406d67844
|
4
|
+
data.tar.gz: 9ca1ba65a3220da9690f86efdbf980646b94dbce5c601f77854bbf5c4135bd72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2112c97536d431ef5e9b45979878e3b63ee55e08c1d8b1016d248737adef1212bbac79ebd20ed11b089dd4554e8db9128b039b585dffd070c3e82160c587489d
|
7
|
+
data.tar.gz: d1028b2d67144598f17aaec23cd9f71262e75a757f441c7216da9b735effbc6ef2e3401a24698c4b1a6696833f9c92cea5265ee8af2a009af538bda83a4bd977
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## 1.41.1
|
6
|
+
|
7
|
+
* Adds a stub method to the Ruby LSP add-on to avoid a potential runtime exception
|
8
|
+
for range formatting requests [#655](https://github.com/standardrb/standard/pull/655)
|
9
|
+
|
5
10
|
## 1.41.0
|
6
11
|
|
7
12
|
* Updates rubocop to [1.66.1](https://github.com/rubocop/rubocop/releases/tag/v1.66.1)
|
data/Gemfile.lock
CHANGED
@@ -20,6 +20,13 @@ module RubyLsp
|
|
20
20
|
@standardizer.offenses(uri_to_path(uri), document.source, document.encoding)
|
21
21
|
end
|
22
22
|
|
23
|
+
def run_range_formatting(_uri, _partial_source, _base_indentation)
|
24
|
+
# Not yet supported. Should return the formatted version of `partial_source` which is a partial selection of the
|
25
|
+
# entire document. For example, it should not try to add a frozen_string_literal magic comment and all style
|
26
|
+
# corrections should start from the `base_indentation`
|
27
|
+
nil
|
28
|
+
end
|
29
|
+
|
23
30
|
private
|
24
31
|
|
25
32
|
# duplicated from: lib/standard/lsp/routes.rb
|
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.41.
|
4
|
+
version: 1.41.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Searls
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -188,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
188
|
- !ruby/object:Gem::Version
|
189
189
|
version: '0'
|
190
190
|
requirements: []
|
191
|
-
rubygems_version: 3.
|
191
|
+
rubygems_version: 3.5.11
|
192
192
|
signing_key:
|
193
193
|
specification_version: 4
|
194
194
|
summary: Ruby Style Guide, with linter & automatic code fixer
|