forked from Daniel1of1/CSwiftV
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCSwiftV.podspec
More file actions
27 lines (17 loc) · 771 Bytes
/
CSwiftV.podspec
File metadata and controls
27 lines (17 loc) · 771 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
Pod::Spec.new do |s|
s.name = "CSwiftV"
s.version = "0.0.2"
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 = "http://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 = "7.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "http://github.com/daniel1of1/CSwiftV.git", :tag => s.version }
s.source_files = "CSwiftV/CSwiftV.swift"
s.requires_arc = true
end