diff options
author | roboo <robo.karasek@gmail.com> | 2016-07-11 21:29:37 +0200 |
---|---|---|
committer | roboo <robo.karasek@gmail.com> | 2016-07-11 21:29:37 +0200 |
commit | 47a9e7571f5aefd48d5e8d168bd56f07e296b18e (patch) | |
tree | 0f6ca59478f5a69c92b3f6419fd386a245e9bae1 /test | |
parent | b8334ea38536b7db031dac925d426fb5e4783407 (diff) | |
download | luarocks-47a9e7571f5aefd48d5e8d168bd56f07e296b18e.tar.gz luarocks-47a9e7571f5aefd48d5e8d168bd56f07e296b18e.tar.bz2 luarocks-47a9e7571f5aefd48d5e8d168bd56f07e296b18e.zip |
Update new_version, pack tests
Diffstat (limited to 'test')
-rw-r--r-- | test/testfiles/invalid_validate-args-1.5.4-1.rockspec | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/testfiles/invalid_validate-args-1.5.4-1.rockspec b/test/testfiles/invalid_validate-args-1.5.4-1.rockspec new file mode 100644 index 00000000..0b4d807d --- /dev/null +++ b/test/testfiles/invalid_validate-args-1.5.4-1.rockspec | |||
@@ -0,0 +1,35 @@ | |||
1 | package = 'validate-args' | ||
2 | version = '1.5.4-1' | ||
3 | source = {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{++{ | ||
4 | url = "https://bitbucket.org/djerius/validate.args/downloads/validate-args-1.5.4.tar.gz" | ||
5 | } | ||
6 | |||
7 | description = { | ||
8 | summary = "Function argument validation", | ||
9 | detailed = [[ | ||
10 | validate.args is a Lua module that provides a framework for | ||
11 | validation of arguments to Lua functions as well as complex data | ||
12 | structures. The included validate.inplace module provides "live" | ||
13 | validation during assignment of values to elements in tables. ]], | ||
14 | license = "GPL-3", | ||
15 | |||
16 | } | ||
17 | |||
18 | dependencies = { | ||
19 | "lua >= 5.1" | ||
20 | } | ||
21 | |||
22 | build = { | ||
23 | |||
24 | type = "builtin", | ||
25 | |||
26 | modules = { | ||
27 | ["validate.args"] = "validate/args.lua", | ||
28 | ["validate.inplace"] = "validate/inplace.lua", | ||
29 | }, | ||
30 | |||
31 | copy_directories = { | ||
32 | "doc", "tests" | ||
33 | } | ||
34 | |||
35 | } | ||