-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathRPAgentSwiftXCTest.podspec
26 lines (21 loc) · 1013 Bytes
/
RPAgentSwiftXCTest.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
Pod::Spec.new do |s|
s.name = 'RPAgentSwiftXCTest'
s.version = '1.10'
s.summary = 'Agent to push test results on Report Portal'
s.description = <<-DESC
This agent allows to see test results on the Report Portal - http://reportportal.io
DESC
s.homepage = 'https://github.com/SergeVKom/RPAgentSwiftXCTest'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'SergeVKom' => '[email protected]' }
s.source = { :git => 'https://github.com/SergeVKom/RPAgentSwiftXCTest.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'RPAgentSwiftXCTest/**/*'
s.dependency 'Alamofire', '~> 4.5.1'
s.dependency 'AlamofireObjectMapper', '~> 5.0.0'
s.weak_framework = "XCTest"
s.pod_target_xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks"',
}
end