-
-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please publish json.lua on LuaRocks #13
Comments
yes |
Take a look here. luarocks install rxi-json-lua |
Could the latest release tag 0.1.2 get pushed to luarocks? |
@rxi hi, I'm the admin of luarocks.org — I can transfer ownership of rxi-json-lua over to you. To upload the latest version to LuaRocks, you can do the following:
package = "rxi-json-lua"
version = "0.1.2-1"
source = {
url = "git://github.com/rxi/json.lua",
tag = "v0.1.2",
}
description = {
summary = "A lightweight JSON library for Lua",
detailed = [[
- Implemented in pure Lua: works with 5.1, 5.2, 5.3 and JIT
- Fast: generally outperforms other pure Lua JSON implementations (benchmark scripts)
- Tiny: around 290sloc, 9kb
- Proper error messages, eg: expected '}' or ',' at line 203 col 30
]],
homepage = "https://github.com/rxi/json.lua",
license = "MIT",
}
dependencies = {
"lua >= 5.1, < 5.4"
}
build = {
type = "builtin",
modules = {
["json"] = "json.lua",
-- the original uploader renamed the module to "rxi-json-lua".
-- you might want to keep the line below for compatibility (or not, your call)
--[[
["rxi-json-lua"] = "json.lua",
]]
}
}
|
Please publish json.lua on LuaRocks, the de facto standard Lua packages repository. This issue has been already raised in #3, but the submitter closed it without any reason.
The text was updated successfully, but these errors were encountered: