Skip to content

Commit 55cf741

Browse files
committed
typo
1 parent 92e9c4f commit 55cf741

2 files changed

Lines changed: 29 additions & 1 deletion

File tree

require.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ local function require52 (name)
9090
end
9191

9292
local module = {
93-
VERSION = "0.1.6"
93+
VERSION = "0.1.7",
9494
require51 = require51,
9595
require52 = require52
9696
}

rockspecs/require-0.1.7-1.rockspec

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package = "require"
2+
version = "0.1.7-1"
3+
source = {
4+
url = "git://github.com/pygy/require.lua.git",
5+
tag = "v0.1.7"
6+
}
7+
8+
description = {
9+
summary = "`require()` rewritten in plain Lua",
10+
detailed = [[
11+
`require()` rewritten in plain Lua.
12+
Lua 5.1 and 5.2 semantics are supported.
13+
]],
14+
homepage = "https://github.com/pygy/require.lua",
15+
license = "MIT/X11"
16+
}
17+
18+
dependencies = {
19+
"lua >= 5.1, < 5.3"
20+
}
21+
22+
build = {
23+
type = "builtin",
24+
modules = {
25+
require = "./require.lua"
26+
}
27+
}
28+

0 commit comments

Comments
 (0)