-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkeyperSDK.podspec
More file actions
42 lines (35 loc) · 1.98 KB
/
keyperSDK.podspec
File metadata and controls
42 lines (35 loc) · 1.98 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
31
32
33
34
35
36
37
38
39
40
41
42
#
# Be sure to run `pod lib lint keyperSDK.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 = 'keyperSDK'
s.version = '1.3.0'
s.summary = 'iOS SDK for keyper.io - ticketing with friends.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Integrate a full ticketing solution by using this SDK.
DESC
s.homepage = 'https://github.com/keyper/keyper-ios-sdk'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Manuel Maly' => 'manuel.maly@gmail.com' }
s.social_media_url = 'https://twitter.com/keyper'
s.platforms = { :ios => '9.0' }
s.source = { :git => 'https://github.com/keyper/keyper-ios-sdk.git', :tag => "1.3.0" }
s.source_files = 'keyperSDK/keyperSDK.framework/Headers/*.h'
s.public_header_files = 'keyperSDK/keyperSDK.framework/Headers/*.h'
s.vendored_frameworks = 'keyperSDK/keyperSDK.framework'
s.preserve_paths = 'keyperSDK/*'
s.resources = ['keyperSDK/keyperSDK.framework/Resources/**/*']
s.module_name = 'keyperSDK'
# s.preserve_paths = 'keyperSDK/keyperSDK.framework/*'
s.frameworks = 'Foundation', 'UIKit', 'MapKit', 'EventKit', 'EventKitUI', 'AddressBook', 'CoreGraphics', 'CoreLocation', 'CoreImage', 'AVFoundation', 'ImageIO', 'MessageUI', 'SystemConfiguration', 'MobileCoreServices', 'Accelerate', 'PassKit'
s.libraries = 'xml2', 'z'
end