Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From solargraph
Ruby-lsp provides code intelligence for Ruby: diagnostics, go-to-definition, find references, hover information, symbol listing, and call hierarchy for .rb files.
npx claudepluginhub boostvolt/claude-code-lsps --plugin solargraphThis LSP server requires solargraphto be installed on your system. Make sure it's available in your PATH before enabling.
Copy this JSON into your .lsp.json to enable this server
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"ruby": {
"command": "solargraph",
"extensionToLanguage": {
".rb": "ruby",
".rake": "ruby",
".gemspec": "ruby"
},
"args": [
"stdio"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
solargraphstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
Share bugs, ideas, or general feedback.