-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy pathCHCSVParser.podspec
17 lines (17 loc) · 929 Bytes
/
CHCSVParser.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = "CHCSVParser"
spec.version = "2.1.0"
spec.summary = "A proper CSV parser for Objective-C"
spec.description = <<-DESC
A robust class for reading and writing delimited files in Cocoa.
DESC
spec.homepage = "https://github.com/davedelong/CHCSVParser"
spec.license = { :type => 'MIT', :file => 'LICENSE.txt' }
spec.author = "Dave DeLong"
spec.social_media_url = "http://twitter.com/davedelong"
spec.ios.deployment_target = "6.0"
spec.osx.deployment_target = "10.7"
spec.source = { :git => "https://github.com/davedelong/CHCSVParser.git", :tag => "2.1.0" }
spec.source_files = "CHCSVParser/CHCSVParser/CHCSVParser.{h,m}"
spec.requires_arc = true
end