forked from microsoft/react-native-macos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
103 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "OCMock" | ||
s.version = "3.9.3" | ||
|
||
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 = "Apache 2.0" | ||
|
||
s.author = { "Erik Doernenburg" => "erik@doernenburg.com" } | ||
s.social_media_url = "https://toot.thoughtworks.com/@edoernen" | ||
|
||
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.9.3" } | ||
s.source_files = "Source/OCMock/*.{h,m}" | ||
|
||
s.requires_arc = false | ||
s.osx.deployment_target = '10.15' | ||
s.ios.deployment_target = '12.0' | ||
s.tvos.deployment_target = '12.0' | ||
s.watchos.deployment_target = '7.0' | ||
s.visionos.deployment_target = '1.0' | ||
s.osx.framework = 'XCTest' | ||
s.ios.framework = 'XCTest' | ||
s.tvos.framework = 'XCTest' | ||
s.watchos.framework = 'XCTest' | ||
s.visionos.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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters