-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathAMPPreviewController.podspec
More file actions
26 lines (21 loc) · 954 Bytes
/
AMPPreviewController.podspec
File metadata and controls
26 lines (21 loc) · 954 Bytes
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
Pod::Spec.new do |s|
s.name = 'AMPPreviewController'
s.version = '0.4'
s.summary = 'AMPPreviewController is a subclass of QLPreviewController that allows you to preview remote documents.'
s.homepage = "https://github.com/alexito4/AMPPreviewController"
s.license = 'MIT'
s.author = { "Alejandro Martinez" => "alexito4@gmail.com" }
s.source = { :git => "https://github.com/alexito4/AMPPreviewController.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/alexito4'
s.dependency 'AFNetworking', '~> 2.2'
s.platform = :ios, '7.0'
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'Classes'
#s.resources = 'Assets
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
s.public_header_files = 'Classes/**/*.h'
s.framework = 'UIKit', 'QuickLook'
end