-
Notifications
You must be signed in to change notification settings - Fork 66
/
TTOpenInAppActivity.podspec
15 lines (15 loc) · 1.15 KB
/
TTOpenInAppActivity.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'TTOpenInAppActivity'
s.version = '1.2'
s.ios.deployment_target = '8.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'TTOpenInAppActivity is a UIActivity subclass that provides an "Open In ..." action to a UIActivityViewController.'
s.description = 'TTOpenInAppActivity is a UIActivity subclass that provides an "Open In ..." action to a UIActivityViewController. TTOpenInAppActivity uses an UIDocumentInteractionController to present all Apps than can handle the document specified by the activity item. Supported item types are NSURL instances that point to local files and UIImage instances.'
s.homepage = 'https://github.com/honkmaster/TTOpenInAppActivity'
s.authors = { 'Tobias Tiemerding' => '[email protected]' }
s.source = { :git => 'https://github.com/honkmaster/TTOpenInAppActivity.git', :tag => s.version.to_s }
s.source_files = 'TTOpenInAppActivity/*.{h,m}'
s.resources = 'TTOpenInAppActivity/TTOpenInAppActivity.bundle'
s.frameworks = 'UIKit', 'CoreServices', 'ImageIO', 'Foundation'
s.requires_arc = true
end