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-11-09 01:53:28 +0300
committerRonan Collobert <ronan@collobert.com>2014-11-09 01:53:28 +0300
commite77a7ccc8ad5c3f93cd7e199fc2eb1e60714f067 (patch)
treef07cdc69118e6935e77445077d33d0fcd1e99364
parentb30b0aa0cc3f14eb1855e191e04cb5551a7f79e9 (diff)
version 1.01.0.0-0
-rw-r--r--rocks/argcheck-1.0.0-0.rockspec33
1 files changed, 33 insertions, 0 deletions
diff --git a/rocks/argcheck-1.0.0-0.rockspec b/rocks/argcheck-1.0.0-0.rockspec
new file mode 100644
index 0000000..19a83ba
--- /dev/null
+++ b/rocks/argcheck-1.0.0-0.rockspec
@@ -0,0 +1,33 @@
+package = "argcheck"
+version = "1.0.0-0"
+
+source = {
+ url = "git://github.com/torch/argcheck.git",
+ tag = "1.0.0-0"
+}
+
+description = {
+ summary = "Advanced function argument checker",
+ detailed = [[
+Argcheck generates specific code for checking arguments of a function. This
+allows complex argument checking (possibly with optional values), as well
+as function overloading with almost no overhead.
+ ]],
+ homepage = "https://github.com/torch/argcheck",
+ license = "BSD"
+}
+
+dependencies = {
+ "lua >= 5.1",
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ ["argcheck.init"] = "init.lua",
+ ["argcheck.env"] = "env.lua",
+ ["argcheck.utils"] = "utils.lua",
+ ["argcheck.doc"] = "doc.lua",
+ ["argcheck.dump"] = "dump.lua"
+ }
+}