Skip to content

Commit b822ef8

Browse files
committed
Revert "Apply lower bound ruby-lsp version constraint in composed bundle"
This reverts commit 731d2d6.
1 parent 731d2d6 commit b822ef8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/ruby_lsp/setup_bundler.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ def stdout
3434
# Gems that should be kept up to date in the composed bundle. When updating, any of these gems that are not
3535
# already in the user's Gemfile will be updated together.
3636
GEMS_TO_UPDATE = ["ruby-lsp", "debug", "prism", "rbs"].freeze #: Array[String]
37-
RUBY_LSP_MIN_VERSION = ">= 0.18.0" #: String
3837

3938
#: (String project_path, **untyped options) -> void
4039
def initialize(project_path, **options)
@@ -170,7 +169,7 @@ def write_custom_gemfile
170169
end
171170

172171
unless @dependencies["ruby-lsp"]
173-
ruby_lsp_entry = +"gem \"ruby-lsp\", \"#{RUBY_LSP_MIN_VERSION}\", require: false, group: :development"
172+
ruby_lsp_entry = +'gem "ruby-lsp", require: false, group: :development'
174173
ruby_lsp_entry << ", github: \"Shopify/ruby-lsp\", branch: \"#{@branch}\"" if @branch
175174
parts << ruby_lsp_entry
176175
end

0 commit comments

Comments
 (0)