From 5978ace463abb52d06c73ffde7ae0daf88fbfa8b Mon Sep 17 00:00:00 2001 From: bakpakin Date: Sun, 14 Jun 2015 10:22:03 -0400 Subject: [PATCH] Update to version 1.1-3 --- rockspecs/tiny-ecs-1.1-3.rockspec | 24 ++++++++++++++++++++++++ tiny.lua | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 rockspecs/tiny-ecs-1.1-3.rockspec diff --git a/rockspecs/tiny-ecs-1.1-3.rockspec b/rockspecs/tiny-ecs-1.1-3.rockspec new file mode 100644 index 0000000..0b8ae58 --- /dev/null +++ b/rockspecs/tiny-ecs-1.1-3.rockspec @@ -0,0 +1,24 @@ +package = "tiny-ecs" +version = "1.1-3" +source = { + url = "git://github.com/bakpakin/tiny-ecs", + tag = "1.1-3" +} +description = { + summary = "Entity Component System for Lua.", + detailed = [[ + Pure Lua implementation of an easy to use, compact, fast, and flexible + Entity Component System. Works well with Object Orientation. + ]], + homepage = "https://github.com/bakpakin/tiny-ecs", + license = "MIT" +} +dependencies = { + "lua >= 5.1" +} +build = { + type = "builtin", + modules = { + tiny = "tiny.lua" + } +} diff --git a/tiny.lua b/tiny.lua index 68015fc..751d1f9 100644 --- a/tiny.lua +++ b/tiny.lua @@ -23,7 +23,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- @author Calvin Rose -- @license MIT -- @copyright 2015 -local tiny = { _VERSION = "scm" } +local tiny = { _VERSION = "1.1-3" } -- Local versions of standard lua functions local tinsert = table.insert