-
Notifications
You must be signed in to change notification settings - Fork 1
/
TripKit.podspec
30 lines (27 loc) · 964 Bytes
/
TripKit.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 = "TripKit"
s.version = "4.7.1"
s.summary = "SkedGo's TripKit"
s.homepage = "https://github.com/skedgo/tripkit-ios"
s.license = { type: "Apache-2.0", file: "LICENSE" }
s.authors = {
"Adrian Schoenig" => "adrian@skedgo.com",
"Brian Huang" => "brian@skedgo.com"
}
s.source = { git: "https://github.com/skedgo/tripkit-ios.git", tag: "#{s.version}" }
s.swift_version = '5.5'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.requires_arc = true
s.source_files = [
"Sources/TripKit/**/*.swift"
]
s.resources = [
"Sources/TripKit/Resources/*.lproj",
"Sources/TripKit/Resources/TripKit.xcassets",
"Sources/TripKit/Resources/TripKitModel.xcdatamodeld",
"Sources/TripKit/Resources/TripKitModel.xcdatamodeld/*."
]
s.preserve_paths = 'Sources/TripKit/Resources/TripKitModel.xcdatamodeld'
s.frameworks = 'CoreData'
end