1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
---
name: Ruby LSP bug
description: File a bug report about the Ruby LSP
labels:
- bug
body:
- type: markdown
attributes:
value: |
Thank you for filing a bug report! Please answer the following questions to help us understand the issue.
Note that the maintainers only have bandwidth to prioritize VS Code support and lean on the community to
assist with supporting other editors.
### Before submitting
First, check the instructions on [troubleshooting](https://shopify.github.io/ruby-lsp/troubleshooting.html).
If using VS Code, ensure you are:
* On the latest version of the [Ruby LSP VS Code extension](https://marketplace.visualstudio.com/items?itemName=Shopify.ruby-lsp)
* On the latest version of the [Ruby LSP server gem](https://rubygems.org/gems/ruby-lsp)
* On the latest version of VS Code
If you are using another editor:
* Check if the editor and LSP plugin you use are up to date, and if they support the latest
[Language Server Protocol Specification](https://microsoft.github.io/language-server-protocol).
* Seek community help from the [Ruby DX Slack](https://shopify.github.io/ruby-lsp/invite).
* Seek help in the related editor/plugin's issue tracker.
- type: textarea
attributes:
label: Description
description: Reproduction steps
value: |
### Ruby LSP Information
<!--For VS Code, please run `Collect Ruby LSP information for issue reporting` from VS Code's command palette
and paste the result here.
For other editors, please provide as much detail about your development setup as possible. Often issues with the
Ruby LSP are specific to a combination of operating system, Ruby version, Ruby version manager, the editor being
used and project setup. The easier it is to reproduce the problem, the quicker it will likely take to fix
it. -->
### Reproduction steps
<!-- Suggested structure -->
1. Start the Ruby LSP using a certain editor
2. Open a Ruby file
3. Do something
4. See unexpected behavior
**Code snippet or error message**
```ruby
```
validations:
required: true
|