ruby-lsp 0.9.0 → 0.9.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/VERSION +1 -1
- data/lib/ruby_lsp/requests.rb +1 -0
- data/lib/ruby_lsp/setup_bundler.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08f4db46a392926873115c77175be859ecdfc4c5093e003f913eec7288f05fac'
|
|
4
|
+
data.tar.gz: 2f34acc2fc69ab4dd6ad5fc9961a86c020d550284ed18aefd3221b0525af2628
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99a9e243c0dd2f763532a5a1c52241ac86c9a7ba2ccb0814932d8e08b17add78143566ac26ad609b59ff8d96e1d2844b53995b85b473cb736c5f87e2a30c5a26
|
|
7
|
+
data.tar.gz: 2a1669be7a054a5d19b0b7eff113347571928cb601e1b432c6f49bc3f349a530b6d0df45c7ea5dfa46add7b69fd347713ec33f95fdca9baa896855f958814209
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.1
|
data/lib/ruby_lsp/requests.rb
CHANGED
|
@@ -21,6 +21,7 @@ module RubyLsp
|
|
|
21
21
|
# - [CodeLens](rdoc-ref:RubyLsp::Requests::CodeLens)
|
|
22
22
|
# - [Definition](rdoc-ref:RubyLsp::Requests::Definition)
|
|
23
23
|
# - [ShowSyntaxTree](rdoc-ref:RubyLsp::Requests::ShowSyntaxTree)
|
|
24
|
+
# - [WorkspaceSymbol](rdoc-ref:RubyLsp::Requests::WorkspaceSymbol)
|
|
24
25
|
|
|
25
26
|
module Requests
|
|
26
27
|
autoload :BaseRequest, "ruby_lsp/requests/base_request"
|
|
@@ -179,7 +179,7 @@ module RubyLsp
|
|
|
179
179
|
|
|
180
180
|
if should_bundle_install?
|
|
181
181
|
# Install gems using the custom bundle
|
|
182
|
-
command << "bundle check || bundle install "
|
|
182
|
+
command << "(bundle check || bundle install) "
|
|
183
183
|
else
|
|
184
184
|
# If ruby-lsp or debug are not in the Gemfile, try to update them to the latest version
|
|
185
185
|
command << "bundle update "
|