forked from PGSSoft/AutoMate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AutoMate.podspec
30 lines (25 loc) · 1.08 KB
/
AutoMate.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
Pod::Spec.new do |s|
s.name = "AutoMate"
s.version = "1.7.1"
s.summary = "Swift framework containing set of helpful XCTest extensions for writing UI automation tests."
s.homepage = "https://github.com/PGSSoft/AutoMate"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = {
"Joanna Bednarz" => "jbednarz@pgs-soft.com",
"Paweł Szot" => "pszot@pgs-soft.com",
"Bartosz Janda" => "bjanda@pgs-soft.com",
"Paweł Kania" => "pkania@pgs-soft.com",
"Michał Myśliwiec" => "mmysliwiec@pgs-soft.com",
"Ewelina Cyło" => "ecylo@pgs-soft.com",
"Mateusz Nicpoń" => "mnicpon@pgs-soft.com"
}
s.ios.deployment_target = '9.3'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '9.2'
s.swift_versions = ['5.0']
s.source = { :git => "https://github.com/PGSSoft/AutoMate.git", :tag => "#{s.version}" }
s.source_files = "AutoMate/**/*.{swift}"
s.ios.resources = ["AutoMate/Models/Messages/*.json"]
s.framework = "XCTest"
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
end