Skip to content

Commit a7fa43e

Browse files
committed
Added v1.0-1 rockspec
1 parent d859812 commit a7fa43e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

rockspecs/mach-1.0-1.rockspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package = 'mach'
2+
version = '1.0-1'
3+
source = {
4+
url = 'https://github.com/ryanplusplus/mach.lua/archive/v1.0-1.tar.gz',
5+
dir = 'mach.lua-1.0-1/src'
6+
}
7+
description = {
8+
summary = 'Simple mocking framework for Lua inspired by CppUMock and designed for readability.',
9+
homepage = 'https://github.com/ryanplusplus/mach.lua/',
10+
license = 'MIT <http://opensource.org/licenses/MIT>'
11+
}
12+
dependencies = {
13+
'lua >= 5.1'
14+
}
15+
build = {
16+
type = 'builtin',
17+
modules = {
18+
['mach'] = 'mach.lua',
19+
['mach.expectation'] = 'mach/expectation.lua',
20+
['mach.expected-call'] = 'mach/expected-call.lua',
21+
}
22+
}

0 commit comments

Comments
 (0)