forked from swiftcsv/SwiftCSV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftCSV.podspec
More file actions
21 lines (19 loc) · 740 Bytes
/
SwiftCSV.podspec
File metadata and controls
21 lines (19 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "SwiftCSV"
s.version = "0.8.1"
s.summary = "CSV parser for Swift"
s.homepage = "https://github.com/swiftcsv/SwiftCSV"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = {
"Naoto Kaneko" => "naoty.k@gmail.com",
"Christian Tietze" => "me@christiantietze.de"
}
s.source = { :git => "https://github.com/swiftcsv/SwiftCSV.git", :tag => s.version }
s.swift_versions = [ "5.6", "5.5", "5.4", "5.3", "5.2", "5.1", "5.0", "4.2" ]
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.2"
s.watchos.deployment_target = "2.2"
s.source_files = "SwiftCSV/**/*.swift"
s.requires_arc = true
end