Skip to content

Commit

Permalink
Preparing for 0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeterv committed Mar 2, 2014
1 parent 8ee0fc4 commit ffe7d80
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
23 changes: 23 additions & 0 deletions rockspecs/argparse-0.1.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -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"}
}

0 comments on commit ffe7d80

Please sign in to comment.