Skip to content

Commit 0064507

Browse files
committed
Fixed rockspec
1 parent 109b7ac commit 0064507

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

rockspecs/mach-4.4-1.rockspec

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package = 'mach'
2+
version = '4.4-0'
3+
source = {
4+
url = 'https://github.com/ryanplusplus/mach.lua/archive/v4.4-0.tar.gz',
5+
dir = 'mach.lua-4.4-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.1'
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.CompletedCall'] = 'mach/CompletedCall.lua',
22+
['mach.unexpected_call_error'] = 'mach/unexpected_call_error.lua',
23+
['mach.unexpected_args_error'] = 'mach/unexpected_args_error.lua',
24+
['mach.out_of_order_call_error'] = 'mach/out_of_order_call_error.lua',
25+
['mach.not_all_calls_occurred_error'] ='mach/not_all_calls_occurred_error.lua',
26+
['mach.format_call_status'] = 'mach/format_call_status.lua',
27+
['mach.format_arguments'] = 'mach/format_arguments.lua',
28+
['mach.deep_compare_matcher'] = 'mach/deep_compare_matcher.lua',
29+
['mach.match'] = 'mach/match.lua',
30+
['mach.any'] = 'mach/any.lua',
31+
}
32+
}

rockspecs/mach-git-0.rockspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ build = {
2121
['mach.unexpected_call_error'] = 'mach/unexpected_call_error.lua',
2222
['mach.unexpected_args_error'] = 'mach/unexpected_args_error.lua',
2323
['mach.out_of_order_call_error'] = 'mach/out_of_order_call_error.lua',
24+
['mach.not_all_calls_occurred_error'] ='mach/not_all_calls_occurred_error.lua',
2425
['mach.format_call_status'] = 'mach/format_call_status.lua',
2526
['mach.format_arguments'] = 'mach/format_arguments.lua',
2627
['mach.deep_compare_matcher'] = 'mach/deep_compare_matcher.lua',

0 commit comments

Comments
 (0)