summaryrefslogtreecommitdiff
path: root/spec/fixtures/a_repo/manifests/another_user/a_rock-3.0-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/a_repo/manifests/another_user/a_rock-3.0-1.rockspec')
-rw-r--r--spec/fixtures/a_repo/manifests/another_user/a_rock-3.0-1.rockspec17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/fixtures/a_repo/manifests/another_user/a_rock-3.0-1.rockspec b/spec/fixtures/a_repo/manifests/another_user/a_rock-3.0-1.rockspec
new file mode 100644
index 0000000..628c5a4
--- /dev/null
+++ b/spec/fixtures/a_repo/manifests/another_user/a_rock-3.0-1.rockspec
@@ -0,0 +1,17 @@
+package = "a_rock"
+version = "3.0-1"
+source = {
+ url = "http://localhost:8080/file/a_rock.lua"
+}
+description = {
+ summary = "An example rockspec",
+}
+dependencies = {
+ "lua >= 5.1"
+}
+build = {
+ type = "builtin",
+ modules = {
+ a_rock = "a_rock.lua"
+ },
+}