-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinterlu-scm-1.rockspec
More file actions
24 lines (24 loc) · 896 Bytes
/
interlu-scm-1.rockspec
File metadata and controls
24 lines (24 loc) · 896 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
package = "interlu"
version = "scm-1"
source = {
url = "git+https://github.com/raingloom/interlu.git"
}
description = {
summary = "A (mostly) pure Lua REPL that replicates (pun intended) the one by PUC Rio.",
homepage = "https://github.com/raingloom/interlu",
license = "MIT",
detailed = [[interlu is a simple module that provides you with a REPL that works like the one the terrific guys at PUC Rio made, while being more dynamic. interlu lets you do things like wrap it in a custom environment, include it in an existing application or set a custom error handler, which was my original reason for writing it.]],
maintainer = "github.com/raingloom",
issues_url = "https://github.com/raingloom/interlu/issues",
labels = { "repl", "readline", "command line", "cli" },
}
dependencies = {
"lua >= 5.3",
"readline",
}
build = {
type = "builtin",
modules = {
interlu = "init.lua",
},
}