mirror of
https://github.com/Reuh/candran.git
synced 2025-10-28 02:09:30 +00:00
Fixed using break and continue in the same loop, added vanilla Lua 5.1 target
somehow I never encountered this before... well now there's more tests
This commit is contained in:
parent
ea7720b7c3
commit
91948109ca
8 changed files with 1883 additions and 1093 deletions
38
rockspec/candran-0.9.0-1.rockspec
Normal file
38
rockspec/candran-0.9.0-1.rockspec
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
rockspec_format = "3.0"
|
||||
|
||||
package = "candran"
|
||||
|
||||
version = "0.9.0-1"
|
||||
|
||||
description = {
|
||||
summary = "A simple Lua dialect and preprocessor.",
|
||||
detailed = [[
|
||||
Candran is a dialect of the Lua 5.3 programming language which compiles to Lua 5.3 and Lua 5.1/LuaJit. It adds several useful syntax additions which aims to make Lua faster and easier to write, and a simple preprocessor.
|
||||
Unlike Moonscript, Candran tries to stay close to the Lua syntax, and existing Lua code can run on Candran unmodified.
|
||||
]],
|
||||
license = "MIT",
|
||||
homepage = "https://github.com/Reuh/candran",
|
||||
issues_url = "https://github.com/Reuh/candran",
|
||||
maintainer = "Étienne 'Reuh' Fildadut <fildadut@reuh.eu>",
|
||||
labels = {"lpeg", "commandline"}
|
||||
}
|
||||
|
||||
source = {
|
||||
url = "git://github.com/Reuh/candran",
|
||||
tag = "v0.9.0"
|
||||
}
|
||||
|
||||
dependencies = {
|
||||
"lua >= 5.1",
|
||||
"lpeglabel >= 1.5.0"
|
||||
}
|
||||
|
||||
build = {
|
||||
type = "builtin",
|
||||
modules = {
|
||||
candran = "candran.lua"
|
||||
},
|
||||
install = {
|
||||
bin = { "bin/can", "bin/canc" }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue