Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ruby: Document
use_bundler
configuration option (#22498)
Hello, This PR documents the `use_bundler` configuration option that was added in https://github.com/zed-extensions/ruby/releases/tag/v0.3.3 **What it does?** This option allows users to run `solargraph` and `rubocop` within the context of Bundler, which is the most commonly used scenario in the Ruby ecosystem. Ruby LSP is not configured to run in the context of Bundler because it is recommended not to add it to the project dependencies (https://shopify.github.io/ruby-lsp/composed-bundle.html). However, if this is the case, the Ruby LSP can still be configured to run in the context of Bundler via the same configuration option. This configuration option has the following default values: - `rubocop` - `use_bundler` is `true`. - `solargraph` - `use_bundler` is `true`. - `ruby-lsp` - `use_bundler` is `false`. Release Notes: - N/A
- Loading branch information