ruby-lsp 0.23.0 → 0.23.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/exe/ruby-lsp +1 -1
- 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: d4a7b6b44dae357ccbc6a9f6494bd892d890bebf1287aa6c989ef4f2aee14e82
|
4
|
+
data.tar.gz: cbfc554b33a2cf45663ab394e4fb81e27eb2ec4309907943e3fe67d591222d63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bee0f714bd2f2865eeefa2de4eeb2f31bbf55d1fb106cb2a19af208bfc8c868815e2fcad86dcd58a119c9494c6a8254b01fcacdbeb02ce4379a8242ad94d2fcb
|
7
|
+
data.tar.gz: 690d71bce5781f0de3ff170782d76e1d6ef34afd6801525c9ebbb92cfc64c2b9adc25b591710eaf4100c138706a8a358bfe6959d133a0da96e7cdd16279549c7
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.23.
|
1
|
+
0.23.1
|
data/exe/ruby-lsp
CHANGED
@@ -79,7 +79,7 @@ if ENV["BUNDLE_GEMFILE"].nil?
|
|
79
79
|
end
|
80
80
|
|
81
81
|
bundler_path = File.join(Gem.default_bindir, "bundle")
|
82
|
-
base_command = (File.exist?(bundler_path) ? "#{Gem.ruby} #{bundler_path}" : "bundle").dup
|
82
|
+
base_command = (!Gem.win_platform? && File.exist?(bundler_path) ? "#{Gem.ruby} #{bundler_path}" : "bundle").dup
|
83
83
|
|
84
84
|
if env["BUNDLER_VERSION"]
|
85
85
|
base_command << " _#{env["BUNDLER_VERSION"]}_"
|
@@ -281,7 +281,7 @@ module RubyLsp
|
|
281
281
|
# When not updating, we run `(bundle check || bundle install)`
|
282
282
|
# When updating, we run `((bundle check && bundle update ruby-lsp debug) || bundle install)`
|
283
283
|
bundler_path = File.join(Gem.default_bindir, "bundle")
|
284
|
-
base_command = (File.exist?(bundler_path) ? "#{Gem.ruby} #{bundler_path}" : "bundle").dup
|
284
|
+
base_command = (!Gem.win_platform? && File.exist?(bundler_path) ? "#{Gem.ruby} #{bundler_path}" : "bundle").dup
|
285
285
|
|
286
286
|
if env["BUNDLER_VERSION"]
|
287
287
|
base_command << " _#{env["BUNDLER_VERSION"]}_"
|