-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFleet.podspec
24 lines (23 loc) · 1.21 KB
/
Fleet.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
Pod::Spec.new do |s|
s.name = "Fleet"
s.version = "4.6.1"
s.summary = "A UIKit-focused Swift testing framework"
s.homepage = "https://github.com/jwfriese/Fleet"
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
s.author = "Jared Friese"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "10.0"
s.source = { :git => "https://github.com/jwfriese/Fleet.git", :tag => "#{s.version}" }
s.source_files = "Fleet/**/*.{swift,h,m}"
s.public_header_files = ["Fleet/Fleet.h", "Fleet/ObjC/FleetObjC.h"]
s.preserve_paths = "Fleet/Script/copy_storyboard_info_files.sh"
s.tvos.exclude_files = [
"Fleet/CoreExtensions/TableView/UITableViewRowAction+Fleet.m",
"Fleet/CoreExtensions/TableView/UITableView+SelectCellAction.swift",
"Fleet/CoreExtensions/TableView/UITableViewRowAction+Fleet.swift",
"Fleet/CoreExtensions/Controls/TextInput/UITextField+Fleet.swift",
"Fleet/CoreExtensions/Controls/TextInput/UITextView+Fleet.swift",
"Fleet/CoreExtensions/Controls/UISwitch+Fleet.swift",
"Fleet/CoreExtensions/Toolbar/UIToolbar+Fleet.swift",
]
end