aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/ruby-lsp/init.lua
blob: d84487b3978efbe182c509d35ce7c8b23cc19db0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
local Pkg = require "mason-core.package"
local gem = require "mason-core.managers.gem"

return Pkg.new {
    name = "ruby-lsp",
    desc = [[This gem is an implementation of the language server protocol specification for Ruby, used to improve editor features.]],
    homepage = "https://github.com/Shopify/ruby-lsp",
    languages = { Pkg.Lang.Ruby },
    categories = { Pkg.Cat.LSP },
    install = gem.packages { "ruby-lsp", bin = { "ruby-lsp" } },
}