-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCSwiftV.podspec
More file actions
28 lines (18 loc) · 801 Bytes
/
CSwiftV.podspec
File metadata and controls
28 lines (18 loc) · 801 Bytes
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
Pod::Spec.new do |s|
s.name = "CSwiftV"
s.version = "0.0.9"
s.summary = "A swift CSV parser"
s.description = <<-DESC
A csv parser conforming (and tested as much) to [rfc4180](http://tools.ietf.org/html/rfc4180#section-2) i.e the closest thing to a csv spec.
DESC
s.homepage = "https://github.com/daniel1of1/CSwiftV"
s.license = "MIT"
s.author = { "Daniel Haight" => "other@haight.io" }
s.social_media_url = "http://twitter.com/daniel1of1"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.swift_version = '5.0'
s.source = { :git => "https://github.com/daniel1of1/CSwiftV.git", :tag => s.version }
s.source_files = "Sources/CSwiftV.swift"
s.requires_arc = true
end