forked from rest-nvim/rest.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrest.nvim-scm-1.rockspec
More file actions
46 lines (41 loc) · 936 Bytes
/
rest.nvim-scm-1.rockspec
File metadata and controls
46 lines (41 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
local MAJOR, REV = "scm", "-1"
rockspec_format = "3.0"
package = "rest.nvim"
version = MAJOR .. REV
description = {
summary = "A fast and asynchronous Neovim HTTP client written in Lua",
labels = { "neovim", "rest" },
detailed = [[
rest.nvim makes use of Lua cURL bindings to make HTTP requests so you don't have to leave Neovim to test your back-end codebase!
]],
homepage = "https://github.com/rest-nvim/rest.nvim",
license = "GPLv3",
}
dependencies = {
"lua >= 5.1, < 5.4",
"nvim-nio",
"lua-curl",
"mimetypes",
"xml2lua",
}
source = {
url = "http://github.com/rest-nvim/rest.nvim/archive/" .. MAJOR .. ".zip",
dir = "rest.nvim-" .. MAJOR,
}
if MAJOR == "scm" then
source = {
url = "git://github.com/rest-nvim/rest.nvim",
branch = "dev",
}
end
build = {
type = "builtin",
copy_directories = {
"doc",
"after",
"plugin",
"syntax",
"ftdetect",
"ftplugin",
}
}