From 0ff1c3631d98a15ded05f49f8c11e2fc296d49f1 Mon Sep 17 00:00:00 2001 From: Robert Ditthardt Date: Wed, 19 Nov 2014 20:29:11 -0800 Subject: [PATCH] Updated for easier testing and new lusty --- ...y-json-0.3-3.rockspec => lusty-json-0.4-0.rockspec | 11 +++++------ {src => lusty-json}/input/json.lua | 0 {src => lusty-json}/output/json.lua | 0 3 files changed, 5 insertions(+), 6 deletions(-) rename lusty-json-0.3-3.rockspec => lusty-json-0.4-0.rockspec (62%) rename {src => lusty-json}/input/json.lua (100%) rename {src => lusty-json}/output/json.lua (100%) diff --git a/lusty-json-0.3-3.rockspec b/lusty-json-0.4-0.rockspec similarity index 62% rename from lusty-json-0.3-3.rockspec rename to lusty-json-0.4-0.rockspec index c62e913..406d593 100644 --- a/lusty-json-0.3-3.rockspec +++ b/lusty-json-0.4-0.rockspec @@ -1,8 +1,8 @@ package = "lusty-json" -version = "0.3-3" +version = "0.4-0" source = { - url = "https://github.com/Olivine-Labs/lusty-json/archive/v0.3.tar.gz", - dir = "lusty-json-0.3" + url = "https://github.com/Olivine-Labs/lusty-json/archive/v0.4.tar.gz", + dir = "lusty-json-0.4" } description = { summary = "json input and output for lusty.", @@ -15,13 +15,12 @@ description = { dependencies = { "lua >= 5.1", "lusty >= 0.1-0", - "dkjson >= 2.1.0", "busted >= 1.7-1" } build = { type = "builtin", modules = { - ["lusty-json.output.json"] = "src/output/json.lua", - ["lusty-json.input.json"] = "src/input/json.lua" + ["lusty-json.output.json"] = "lusty-json/output/json.lua", + ["lusty-json.input.json"] = "lusty-json/input/json.lua" } } diff --git a/src/input/json.lua b/lusty-json/input/json.lua similarity index 100% rename from src/input/json.lua rename to lusty-json/input/json.lua diff --git a/src/output/json.lua b/lusty-json/output/json.lua similarity index 100% rename from src/output/json.lua rename to lusty-json/output/json.lua