mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-03-17 10:33:08 +00:00
32 lines
535 B
Markdown
32 lines
535 B
Markdown
# ruby-lsp
|
|
|
|
Ruby language server for Claude Code, providing code intelligence and analysis.
|
|
|
|
## Supported Extensions
|
|
`.rb`, `.rake`, `.gemspec`, `.ru`, `.erb`
|
|
|
|
## Installation
|
|
|
|
### Via gem (recommended)
|
|
```bash
|
|
gem install ruby-lsp
|
|
```
|
|
|
|
### Via Bundler
|
|
Add to your Gemfile:
|
|
```ruby
|
|
gem 'ruby-lsp', group: :development
|
|
```
|
|
|
|
Then run:
|
|
```bash
|
|
bundle install
|
|
```
|
|
|
|
## Requirements
|
|
- Ruby 3.0 or later
|
|
|
|
## More Information
|
|
- [Ruby LSP Website](https://shopify.github.io/ruby-lsp/)
|
|
- [GitHub Repository](https://github.com/Shopify/ruby-lsp)
|