-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocumentViewer.podspec
More file actions
30 lines (23 loc) · 1.08 KB
/
DocumentViewer.podspec
File metadata and controls
30 lines (23 loc) · 1.08 KB
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
#
# Be sure to run `pod lib lint DocumentViewer.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = 'DocumentViewer'
s.version = '1.1.2'
s.summary = 'A library to be used to display different file types on iOS.'
s.module_name = 'DocumentViewer'
s.swift_version = '5.0'
s.description = <<-DESC
A `DocumentViewer` view controller that can be used to
present different types of documents.
DESC
s.homepage = 'https://github.com/alejandroivan/DocumentViewer'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Alejandro Melo Domínguez' => 'alejandroivan@icloud.com' }
s.source = { :git => 'https://github.com/alejandroivan/DocumentViewer.git', :tag => s.version.to_s }
s.social_media_url = 'https://iosdev.cl'
s.ios.deployment_target = '12.0'
s.source_files = 'DocumentViewer/Classes/**/*'
s.frameworks = 'Foundation', 'PDFKit', 'SystemConfiguration', 'UIKit'
end