forked from renebigot/XlsxReaderWriter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXlsxReaderWriter.podspec
More file actions
20 lines (17 loc) · 856 Bytes
/
XlsxReaderWriter.podspec
File metadata and controls
20 lines (17 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "XlsxReaderWriter"
s.version = "2.3.2"
s.summary = "XlsxReaderWriter is an Objective-C library for iPhone / iPad and Mac. It parses and writes Excel OpenXml files (XLSX)."
s.homepage = "https://github.com/renebigot/XlsxReaderWriter"
s.license = "MIT"
s.author = "René Bigot"
s.social_media_url = "https://www.linkedin.com/in/renebigot"
s.platforms = { :ios => "7.0" }
s.source = { :git => "https://github.com/renebigot/XlsxReaderWriter.git", :tag => s.version.to_s }
s.source_files = "XlsxReaderWriter/*.{h,m}"
s.exclude_files = "ThirdParties"
s.frameworks = "Foundation", "UIKit"
s.requires_arc = true
s.dependency "SSZipArchive", "~> 1.1"
s.dependency "XMLDictionary", "~> 1.4"
end