zed/extensions/ruby/extension.toml
Vitaly Slobodin 45afe9dffa
ruby: Add support for *.rbs files (#15778)
Hi, this pull request adds support for RBS files for the Ruby language.
[RBS](https://github.com/ruby/rbs) is a language to describe the
structure of Ruby programs.

This pull request:

- adds a new grammar to the Ruby extension for RBS
https://github.com/joker1007/tree-sitter-rbs
- configures the Ruby extension to use the added grammar.

Release Notes:

- N/A
2024-08-06 09:51:44 +02:00

31 lines
836 B
TOML

id = "ruby"
name = "Ruby"
description = "Ruby support."
version = "0.0.8"
schema_version = 1
authors = ["Vitaly Slobodin <vitaliy.slobodin@gmail.com>"]
repository = "https://github.com/zed-industries/zed"
[language_servers.solargraph]
name = "Solargraph"
languages = ["Ruby"]
[language_servers.ruby-lsp]
name = "Ruby LSP"
languages = ["Ruby", "ERB"]
[language_servers.rubocop]
name = "Rubocop"
languages = ["Ruby"]
[grammars.ruby]
repository = "https://github.com/tree-sitter/tree-sitter-ruby"
commit = "dc2d7d6b50f9975bc3c35bbec0ba11b2617b736b"
[grammars.embedded_template]
repository = "https://github.com/tree-sitter/tree-sitter-embedded-template"
commit = "91fc5ae1140d5c9d922312431f7d251a48d7b8ce"
[grammars.rbs]
repository = "https://github.com/joker1007/tree-sitter-rbs"
commit = "8d8e65ac3f77fbc9e15b1cdb9f980a3e0ac3ab99"