6dacca1a5e
Implementation of the Language Server Protocol for LaTeX homepage https://texlab.netlify.com/ Closes #47526. Signed-off-by: Rui Chen <chenrui333@gmail.com>
31 lines
878 B
Ruby
31 lines
878 B
Ruby
class Texlab < Formula
|
|
desc "Implementation of the Language Server Protocol for LaTeX"
|
|
homepage "https://texlab.netlify.com/"
|
|
url "https://github.com/latex-lsp/texlab/archive/v1.8.0.tar.gz"
|
|
sha256 "af644d2555c3852513135e87dc6f9bc8b5ee789a4f1c151f4478d108fa007c49"
|
|
head "https://github.com/latex-lsp/texlab.git"
|
|
|
|
depends_on "rust" => :build
|
|
|
|
def install
|
|
system "cargo", "install", "--locked", "--root", prefix, "--path", "."
|
|
end
|
|
|
|
test do
|
|
require "Open3"
|
|
|
|
begin
|
|
stdin, stdout, _, wait_thr = Open3.popen3("#{bin}/texlab")
|
|
pid = wait_thr.pid
|
|
stdin.write <<~EOF
|
|
Content-Length: 103
|
|
|
|
{"jsonrpc": "2.0", "id": 0, "method": "initialize", "params": { "rootUri": null, "capabilities": {}}}
|
|
|
|
EOF
|
|
assert_match "Content-Length: 543", stdout.gets("\n")
|
|
ensure
|
|
Process.kill "SIGKILL", pid
|
|
end
|
|
end
|
|
end
|