From ffe7d80dba8fd3f624c0fff33492e9b9a0c691a0 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sun, 2 Mar 2014 19:36:40 +0400 Subject: [PATCH] Preparing for 0.1.0 release --- README.md | 2 +- rockspecs/argparse-0.1.0-1.rockspec | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 rockspecs/argparse-0.1.0-1.rockspec diff --git a/README.md b/README.md index 29ed011..73c8e7e 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ Did you mean '--output'? ### Using luarocks -Installing argparse using luarocks ~~is~~ will be easy. +Installing argparse using luarocks is simple. ```bash $ luarocks install argparse diff --git a/rockspecs/argparse-0.1.0-1.rockspec b/rockspecs/argparse-0.1.0-1.rockspec new file mode 100644 index 0000000..03135da --- /dev/null +++ b/rockspecs/argparse-0.1.0-1.rockspec @@ -0,0 +1,23 @@ +package = "argparse" +version = "0.1.0-1" +source = { + url = "git://github.com/mpeterv/argparse.git", + tag = "0.1.0" +} +description = { + summary = "A feature-rich command-line argument parser", + detailed = "argparse supports positional arguments, options, flags, optional arguments, subcommands and more. argparse automatically generates usage, help and error messages. ", + homepage = "https://github.com/mpeterv/argparse", + license = "MIT/X11" +} +dependencies = { + "lua >= 5.1, < 5.3", + "30log >= 0.8" +} +build = { + type = "builtin", + modules = { + argparse = "src/argparse.lua" + }, + copy_directories = {"doc", "spec"} +}