From 03617b9a8cede011d5dbd7009bf7dab00ba67806 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Sat, 7 Nov 2015 01:53:33 -0800 Subject: feat: made the module return a function - also add lua lib path to the .so creation to ensure compilation (generally lua header files are not in the standrard compiler's search paths) - remove boilerplate - bare minimum of tests additions --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index cfa7c92..ee80f5d 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # lua_uuid -Lua library that generate UUIDs leveraging libuuid. +Lua library that generate UUIDs leveraging [libuuid](http://linux.die.net/man/3/libuuid). ## Usage -To generate an unique UUID string: +To generate a new UUID string: ```lua -local lua_uuid = require "lua_uuid" -local uuid_str = lua_uuid.generate() +local uuid = require "lua_uuid" +local uuid_str = uuid() -print("The UUID is "..uuid_str) -``` \ No newline at end of file +print("New UUID: "..uuid_str) +``` -- cgit v1.2.3-54-g00ecf