-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToki.podspec
More file actions
25 lines (24 loc) · 1.04 KB
/
Toki.podspec
File metadata and controls
25 lines (24 loc) · 1.04 KB
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
Pod::Spec.new do |s|
s.name = "Toki"
s.version = "0.12.0"
s.summary = "SOAP Stubber for APIs generated by WSDL2Swift"
s.description = <<-DESC
Toki enables to test using stubbed SOAP responses for APIs generated by WSDL2Swift.
DESC
s.homepage = "https://github.com/banjun/Toki"
s.license = 'MIT'
s.author = { "banjun" => "banjun@gmail.com" }
s.source = { :git => "https://github.com/banjun/Toki.git", :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'XCTest'
s.dependency 'Mockingjay', '~> 2.0'
s.dependency 'OHHTTPStubs/NSURLSession', '~> 6.1'
s.dependency 'AEXML'
s.dependency 'WSDL2Swift', '>= 0.7'
s.dependency 'Fuzi'
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO',
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'} # for importing Fuzi with Swift 4
end