forked from binnj/UXMPDFKit
-
Notifications
You must be signed in to change notification settings - Fork 6
/
UXMPDFKit.podspec
29 lines (24 loc) · 1021 Bytes
/
UXMPDFKit.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
#
# Be sure to run `pod lib lint UXMPDFKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "UXMPDFKit"
s.version = "0.8.5"
s.summary = "A fully functioning PDF reader written completely in Swift"
s.homepage = "https://github.com/diegostamigni/UXMPDFKit"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Chris Anderson" => "chris@uxmstudio.com" }
s.source = { :git => "https://github.com/diegostamigni/UXMPDFKit.git", :tag => s.version.to_s }
s.requires_arc = true
s.swift_version = '4.2'
s.ios.deployment_target = '9.0'
s.ios.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'UXMPDFKit' => ['Pod/Assets/**/*.{xcassets,png,json}']
}
end