Skip to content

Commit ec194f6

Browse files
committed
Added git rockspec
1 parent d4f3b39 commit ec194f6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

rockspecs/mach-git-0.rockspec

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

0 commit comments

Comments
 (0)