Skip to content

Commit 5987f64

Browse files
committed
Added v2 rockspec
1 parent cdb7a9a commit 5987f64

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

rockspecs/mach-2.0-0.rockspec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package = 'mach'
2+
version = '2.0-0'
3+
source = {
4+
url = 'https://github.com/ryanplusplus/mach.lua/archive/v2.0-0.tar.gz',
5+
dir = 'mach.lua-2.0-0/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.2'
14+
}
15+
build = {
16+
type = 'builtin',
17+
modules = {
18+
['mach'] = 'mach.lua',
19+
['mach.Expectation'] = 'mach/Expectation.lua',
20+
['mach.ExpectedCall'] = 'mach/ExpectedCall.lua',
21+
['mach.unexpected_call_error'] = 'mach/unexpected_call_error.lua',
22+
['mach.unexpected_args_error'] = 'mach/unexpected_args_error.lua',
23+
}
24+
}

0 commit comments

Comments
 (0)