-
Notifications
You must be signed in to change notification settings - Fork 2
/
MSUITest.podspec
31 lines (22 loc) · 1.03 KB
/
MSUITest.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
Pod::Spec.new do |spec|
spec.name = "MSUITest"
spec.version = "1.0.1"
spec.summary = "A Swift XCUITest wrapper inspired by Gherkin syntax."
spec.description = <<-DESC
A XCUITest wrapper written in Swift inspired by the Gherkin syntax to allow everyone to write human readable UI tests in a clean way.
DESC
spec.homepage = "https://github.com/MarcoSantarossa/MSUITest"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = "Marco Santarossa"
spec.social_media_url = "https://twitter.com/MarcoSantaDev"
spec.source = { :git => "https://github.com/MarcoSantarossa/MSUITest.git", :tag => "v#{spec.version}" }
spec.swift_version = '5.0'
spec.platform = :ios, '10.0'
spec.subspec "Core" do |ss|
ss.source_files = "Source/Core/**/*.swift"
ss.framework = "XCTest"
end
spec.subspec "App" do |ss|
ss.source_files = ["Source/AIP/**/*.swift", "Source/Core/LaunchArguments/UITestLaunchArguments.swift"]
end
end