-
Notifications
You must be signed in to change notification settings - Fork 120
/
OCMockito.podspec
33 lines (30 loc) · 2.07 KB
/
OCMockito.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = 'OCMockito'
s.version = '7.0.2'
s.summary = 'OCMockito is an Objective-C implementation of Mockito, supporting creation, verification and stubbing of mock objects.'
s.description = <<-DESC
OCMockito is an Objective-C implementation of Mockito, supporting creation,
verification and stubbing of mock objects.
Key differences from other mocking frameworks:
* Mock objects are always "nice," recording their calls instead of
throwing exceptions about unspecified invocations. This makes tests less fragile.
* No expect-run-verify, making tests more readable. Mock objects
record their calls, then you verify the methods you want.
* Verification failures are reported as unit test failures,
identifying specific lines instead of throwing exceptions. This makes
it easier to identify failures.
DESC
s.homepage = 'https://github.com/jonreid/OCMockito'
s.license = { :type => 'MIT' }
s.author = { 'Jon Reid' => 'jon@qualitycoding.org' }
s.social_media_url = 'https://iosdev.space/@qcoding'
s.osx.deployment_target = '11.0'
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '4.0'
s.source = { :git => 'https://github.com/jonreid/OCMockito.git', :tag => 'v7.0.2' }
s.source_files = 'Source/OCMockito/**/*.{h,m}', 'Source/ThirdParty/**/*.{h,m}'
s.public_header_files = 'Source/OCMockito/Core/MKTNonObjectArgumentMatching.h', 'Source/OCMockito/Core/OCMockito.h', 'Source/OCMockito/Invocation/NSInvocation+OCMockito.h', 'Source/OCMockito/Mocking/MKTBaseMockObject.h', 'Source/OCMockito/Mocking/MKTClassObjectMock.h', 'Source/OCMockito/Mocking/MKTObjectAndProtocolMock.h', 'Source/OCMockito/Mocking/MKTObjectMock.h', 'Source/OCMockito/Mocking/MKTProtocolMock.h', 'Source/OCMockito/Stubbing/MKTOngoingStubbing.h'
s.requires_arc = true
s.dependency 'OCHamcrest', '~> 9.0'
end