forked from zendesk/connect-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZendeskConnect.podspec
34 lines (30 loc) · 1.29 KB
/
ZendeskConnect.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
30
31
32
33
34
#
# Be sure to run `pod lib lint Connect.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "ZendeskConnect"
s.version = "2.0.1"
s.summary = "Better Messages for Web and Mobile Apps"
s.description = <<-DESC
Connect makes it easy to send email and mobile messages based on user actions, then test how much each message helps your business.
DESC
s.homepage = "https://www.zendesk.com/"
s.author = 'Zendesk'
s.source = { :git => "https://github.com/zendesk/connect-ios-sdk.git", :tag => s.version.to_s }
s.documentation_url = 'https://developer.zendesk.com/embeddables/docs/outbound/ios'
s.swift_version = '4.2'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'ZendeskConnect/ZendeskConnect/**/*.swift'
s.resource = 'ZendeskConnect/ZendeskConnect/**/*.storyboard'
s.frameworks = 'UIKit'
s.license = {
:type => 'Apache 2.0',
:file => 'LICENSE'
}
end