[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: [ANN] updated Lua_library_template
- From: Thijs Schreijer <thijs@...>
- Date: Mon, 22 Feb 2016 00:10:34 +0000
Just pushed updates to the template library. It now supports Lua 5.3.
What it does;
Install a commandline script that can instantly create a new Lua C library. This provides a quick way to write some tests or get started with a fill-in-the-blanks approach. It will include a luarocks rockspec file to build it.
Install;
> luarocks install lualibrarytemplate
Example use;
> luacmodule testmod
> cd testmod
> sudo luarocks make
Test the result;
> lua -e "require([[testmod]]).somefunction([[one]], two, 3)"
Repository;
https://github.com/Tieske/Lua_library_template
Thijs