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
path: root/rocks
diff options
context:
space:
mode:
authorRonan Collobert <ronan@collobert.com>2013-02-22 20:36:20 +0400
committerRonan Collobert <ronan@collobert.com>2013-02-22 20:36:20 +0400
commit5171776cd4f4015ce573c2e163b60ce2bef0cce5 (patch)
tree6e82b8130abf977c486e57005d1cd6378173adb6 /rocks
parent9c9952269d248b8d9f06a514ce7870c8f1832fb0 (diff)
added git-based rock
Diffstat (limited to 'rocks')
-rw-r--r--rocks/argcheck-scm-1.rockspec28
1 files changed, 28 insertions, 0 deletions
diff --git a/rocks/argcheck-scm-1.rockspec b/rocks/argcheck-scm-1.rockspec
new file mode 100644
index 0000000..d5123a7
--- /dev/null
+++ b/rocks/argcheck-scm-1.rockspec
@@ -0,0 +1,28 @@
+package = "argcheck"
+version = "scm-1"
+
+source = {
+ url = "git://github.com/andresy/argcheck.git"
+}
+
+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/andresy/argcheck",
+ license = "BSD"
+}
+
+dependencies = {
+ "lua >= 5.1",
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ ["argcheck.init"] = "init.lua",
+ ["argcheck.argtypes"] = "argtypes.lua"
+ }
+}