This repository has been archived by the owner on Jul 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMocka.podspec
33 lines (30 loc) · 1.73 KB
/
Mocka.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 = "Mocka"
s.version = "0.7.1"
s.summary = "Mocka is an Objective-C mocking library designed after mockito."
s.description = <<-DESC
Mocka is an Objective-C mocking library designed after mockito.
The goal is to provide a powerful yet simple and readable way to
isolate your objects and testing messages between objects.
Features include:
* Use first, verify later – Use a natural flow when mocking
and verifying interaction
* Readable syntax - Mocka syntax is focused on being readable
and understandable, even if you never used it before.
* Easy to refactor - Mocka makes Xcode’s life as easy as possible
when it comes to refactoring, particularly renaming methods
* Support for spies - Spy method invocations on existing objects
* Mock network calls - If you have the OHHTTPStubs library
available you can use mocka syntax to verify network calls
DESC
s.homepage = "https://github.com/frenetisch-applaudierend/mocka"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Markus Gasser" => "[email protected]" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source = { :git => "https://github.com/frenetisch-applaudierend/mocka.git", :tag => "0.7.1" }
s.source_files = 'Sources'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PLATFORM_DIR)/Developer/Library/Frameworks' }
s.frameworks = 'Foundation', 'XCTest'
s.requires_arc = true
end