aboutsummaryrefslogtreecommitdiff
path: root/spec/fixtures/a_rock-1.0-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/a_rock-1.0-1.rockspec')
-rw-r--r--spec/fixtures/a_rock-1.0-1.rockspec17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/fixtures/a_rock-1.0-1.rockspec b/spec/fixtures/a_rock-1.0-1.rockspec
new file mode 100644
index 00000000..9f15e87a
--- /dev/null
+++ b/spec/fixtures/a_rock-1.0-1.rockspec
@@ -0,0 +1,17 @@
1package = "a_rock"
2version = "1.0-1"
3source = {
4 url = "http://localhost:8080/file/a_rock.lua"
5}
6description = {
7 summary = "An example rockspec",
8}
9dependencies = {
10 "lua >= 5.1"
11}
12build = {
13 type = "builtin",
14 modules = {
15 build = "a_rock.lua"
16 },
17}