-
Notifications
You must be signed in to change notification settings - Fork 99
/
OCHamcrest.podspec
40 lines (35 loc) · 1.97 KB
/
OCHamcrest.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
34
35
36
37
38
39
40
Pod::Spec.new do |s|
s.name = 'OCHamcrest'
s.version = '9.0.3'
s.summary = 'Hamcrest for Objective-C: Powerful, combinable, extensible matchers for verification.'
s.description = <<-DESC
OCHamcrest is:
* a library of "matcher" objects for declaring rules to check whether a
given object matches those rules.
* a framework for writing your own matchers.
Matchers are useful for a variety of purposes, such as UI validation. But
they're most commonly used for writing unit tests that are expressive and
flexible.
OCHamcrest is compatible with:
* XCTest
* OCUnit (SenTestingKit)
* Kiwi
* Cedar
* GHUnit
* Google Toolbox for Mac (GTM)
* OCMock
* OCMockito
DESC
s.homepage = 'https://github.com/hamcrest/OCHamcrest'
s.license = { :type => 'BSD' }
s.author = { 'Jon Reid' => '[email protected]' }
s.social_media_url = 'https://iosdev.space/home'
s.osx.deployment_target = '11.0'
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '4.0'
s.source = { :git => 'https://github.com/hamcrest/OCHamcrest.git', :tag => 'v9.0.3' }
s.source_files = 'Source/OCHamcrest.h', 'Source/Core/**/*.{h,m}', 'Source/Library/**/*.{h,m}'
s.private_header_files = 'Source/Core/Helpers/HCRunloopRunner.h', 'Source/Core/Helpers/NSInvocation+OCHamcrest.h', 'Source/Core/Helpers/ReturnValueGetters/*.h', 'Source/Core/Helpers/TestFailureReporters/HCGenericTestFailureReporter.h', 'Source/Core/Helpers/TestFailureReporters/HCSenTestFailureReporter.h', 'Source/Core/Helpers/TestFailureReporters/HCXCTestFailureReporter.h'
s.requires_arc = true
end