forked from FlineDev/CSVImporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSVImporter.podspec
30 lines (23 loc) · 1.13 KB
/
CSVImporter.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 = "CSVImporter"
s.version = "1.3.1"
s.summary = "Import CSV files line by line with ease."
s.description = <<-DESC
CSVImporter works both asynchronously (prevents delays) and reads your CSV file line by line
instead of loading the entire String into memory (prevents memory issues). On top of that it is
easy to use and provides beautiful callbacks for indicating failure, progress, completion and
even data mapping if you desire to.
DESC
s.homepage = "https://github.com/Flinesoft/CSVImporter"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Cihat Gündüz" => "[email protected]" }
s.social_media_url = "https://twitter.com/Dschee"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/Flinesoft/CSVImporter.git", :tag => "#{s.version}" }
s.source_files = "Sources", "Sources/**/*.swift"
s.framework = "Foundation"
s.dependency "HandySwift", "~> 1.3"
s.dependency "FileKit", "~> 4.0"
end