-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCloudInAppMessaging.podspec
More file actions
24 lines (19 loc) · 953 Bytes
/
CloudInAppMessaging.podspec
File metadata and controls
24 lines (19 loc) · 953 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
Pod::Spec.new do |s|
s.name = 'CloudInAppMessaging'
s.version = '0.1.0'
s.summary = 'Send In-App Messages via CloudKit without a hassle.'
s.description = <<-DESC
CloudInAppMessaging is CloudKit-powered SDK
which allows you to engage active app users with contextual messages.
DESC
s.homepage = 'https://github.com/podkovyrin/CloudInAppMessaging'
s.license = 'MIT'
s.author = { 'Andrew Podkovyrin' => 'podkovyrin@gmail.com' }
s.source = { :git => 'https://github.com/podkovyrin/CloudInAppMessaging.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/podkovyr'
s.ios.deployment_target = '10.0'
s.source_files = 'CloudInAppMessaging/**/*'
s.public_header_files = 'CloudInAppMessaging/*.h'
s.private_header_files = 'CloudInAppMessaging/Private/*.h'
s.frameworks = 'UIKit', 'Foundation', 'CloudKit'
end