-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdecipher.nvim-scm-1.rockspec
More file actions
41 lines (36 loc) · 916 Bytes
/
decipher.nvim-scm-1.rockspec
File metadata and controls
41 lines (36 loc) · 916 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
rockspec_format = "3.0"
package = "decipher.nvim"
version = "scm-1"
description = {
summary = "A plugin that provides ways to encode and decode text using various codecs like base64",
detailed = [[Important: A bit library is needed which requires that either neovim has been compiled with luajit or you are using v0.9.0+ which provides a bit library.]],
labels = {
"neovim",
"plugin",
"decipher",
"codec",
"encode",
"decode",
"base64",
},
homepage = "https://github.com/MisanthropicBit/decipher.nvim",
issues_url = "https://github.com/MisanthropicBit/decipher.nvim/issues",
license = "BSD 3-Clause",
}
dependencies = {
"lua == 5.1",
}
source = {
url = "git://github.com/MisanthropicBit/decipher.nvim"
}
build = {
type = "builtin",
copy_directories = {
"doc",
"plugin",
},
}
test = {
type = "command",
command = "./tests/run_tests.sh",
}