Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/argcheck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonan Collobert <ronan@collobert.com>2014-03-04 16:48:01 +0400
committerRonan Collobert <ronan@collobert.com>2014-03-04 16:48:01 +0400
commit2a059b8d208be90ea5964cbf329ed50c35de1171 (patch)
treeb2c9cbae67f9a4cc49cd70dc8cdae9cf14ce43dd
parentab439b5e7c89588230635226837550ac07abc2ee (diff)
added version 0.5 rockspec0.5.0-0
-rw-r--r--rocks/argcheck-0.5.0-0.rockspec29
1 files changed, 29 insertions, 0 deletions
diff --git a/rocks/argcheck-0.5.0-0.rockspec b/rocks/argcheck-0.5.0-0.rockspec
new file mode 100644
index 0000000..1fc9d1a
--- /dev/null
+++ b/rocks/argcheck-0.5.0-0.rockspec
@@ -0,0 +1,29 @@
+package = "argcheck"
+version = "0.5.0-0"
+
+source = {
+ url = "git://github.com/torch/argcheck.git",
+ tag = "0.5.0-0"
+}
+
+description = {
+ summary = "Advanced function argument checker",
+ detailed = [[
+ Argcheck allows you to insure arguments given to a function are correct.
+ Checks are compiled beforehand, which guarantees little overheads.
+ ]],
+ homepage = "https://github.com/torch/argcheck",
+ license = "BSD"
+}
+
+dependencies = {
+ "lua >= 5.1",
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ ["argcheck.init"] = "init.lua",
+ ["argcheck.argtypes"] = "argtypes.lua"
+ }
+}