Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add rockspec. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
0fddfde3838fd42b3d1390645b306d21 |
| User & Date: | imagic 2021-11-10 19:54:37.000 |
Context
|
2021-11-11
| ||
| 20:10 | Improve check functions to return booleans. ... (check-in: 9470e9e52e user: imagic tags: trunk) | |
|
2021-11-10
| ||
| 19:54 | Add rockspec. ... (check-in: 0fddfde383 user: imagic tags: trunk) | |
| 19:37 | Support more Lua binary operators. ... (check-in: a12db62772 user: imagic tags: trunk) | |
Changes
Added rockspecs/xtype-scm-1.rockspec.
> > > > > > > > > > > > > > > > > > > > > > > > > | 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 |
package = "xtype"
version = "scm-1"
source = {
url = "git://github.com/ImagicTheCat/lua-xtype",
}
description = {
summary = "A dynamic type system library for Lua.",
detailed = [[
xtype, or Extended Type, is a dynamic type system library for Lua.
]],
homepage = "https://github.com/ImagicTheCat/lua-xtype",
license = "MIT"
}
dependencies = {
"lua >= 5.1, <= 5.4"
}
build = {
type = "builtin",
modules = {
Luaseq = "src/xtype.lua"
}
}
|