forked from erikdoe/ocmock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OCMock.podspec
42 lines (35 loc) · 2 KB
/
OCMock.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
41
42
Pod::Spec.new do |s|
s.name = "OCMock"
s.version = "3.9.1"
s.summary = "Mock objects for Objective-C"
s.description = <<-DESC
OCMock is an Objective-C implementation of mock objects. It provides
stubs that return pre-determined values for specific method invocations,
dynamic mocks that can be used to verify interaction patterns, and
partial mocks to overwrite selected methods of existing objects.
DESC
s.homepage = "http://ocmock.org"
s.documentation_url = "http://ocmock.org/reference/"
s.license = { :type => "Apache 2.0", :file => "License.txt" }
s.author = { "Erik Doernenburg" => "[email protected]" }
s.social_media_url = "https://twitter.com/erikdoe"
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.9.1" }
s.source_files = "Source/OCMock/*.{h,m}"
s.requires_arc = false
s.osx.deployment_target = '10.10'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '4.0'
s.osx.framework = 'XCTest'
s.ios.framework = 'XCTest'
s.tvos.framework = 'XCTest'
s.watchos.framework = 'XCTest'
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMArg.h", "OCMConstraint.h",
"OCMLocation.h", "OCMMacroState.h", "OCMRecorder.h",
"OCMStubRecorder.h", "NSNotificationCenter+OCMAdditions.h",
"OCMFunctions.h", "OCMVerifier.h", "OCMQuantifier.h",
"OCMockMacros.h"
]
.map { |file| "Source/OCMock/" + file }
end