dkjson
Check-in [615ab01443]
Not logged in

Chisel is closing down. This repository can be found under the new URL dkolf.de/src/dkjson-lua.fsl/.

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
SHA1 Hash:615ab01443eb4bb5a77dc1d1ef28fdb98b6b55ca
Date: 2011-07-08 21:50:54
User: dhkolf
Comment:added rockspec
Tags And Properties
Changes
hide diffs side-by-side diffs patch

Added dkjson-2.1-1.rockspec

1 +package = "dkjson" 2 +version = "2.1-1" 3 +source = { 4 + url = "http://chiselapp.com/user/dhkolf/repository/dkjson/tarball/dkjson-2.1.tar.gz?uuid=55350b663c0073dd48e26edc6ec575cc4e354986", 5 + file = "dkjson-2.1.tar.gz" 6 +} 7 +description = { 8 + summary = "David Kolf's JSON module for Lua", 9 + detailed = [[ 10 +dkjson is a module for encoding and decoding JSON data. It supports UTF-8. 11 + 12 +JSON (JavaScript Object Notation) is a format for serializing data based 13 +on the format for JavaScript data structures. 14 + 15 +dkjson is written in Lua without any depencies, but 16 +when LPeg is available dkjson uses it to speed up decoding. 17 +]], 18 + homepage = "http://chiselapp.com/user/dhkolf/repository/dkjson/", 19 + license = "MIT/X11" 20 +} 21 +dependencies = { 22 + "lua >= 5.1" 23 +} 24 +build = { 25 + type = "builtin", 26 + modules = { 27 + dkjson = "dkjson.lua" 28 + } 29 +} 30 +