forked from mailchimp/ChimpKit3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChimpKit.podspec
26 lines (19 loc) · 931 Bytes
/
ChimpKit.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
Pod::Spec.new do |s|
s.name = "ChimpKit"
s.version = "3.1.1"
s.summary = "ChimpKit is an API wrapper for the MailChimp API 2.0."
s.description = <<-DESC
ChimpKit lets you interact with MailChimp's API to subscribe users,
fetch reports, send campaigns, and more. ChimpKit has OAuth2 baked in
so your users can easily log into their MailChimp account.
DESC
s.homepage = "https://github.com/mailchimp/ChimpKit3"
s.license = { :type => 'MIT', :file => 'LICENSE.TXT' }
s.author = { "Drew Conner" => "[email protected]" }
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.source = { :git => "https://github.com/mailchimp/ChimpKit3.git", :tag => "3.1.1" }
s.source_files = 'ChimpKit3', 'ChimpKit3/**/*.{h,m}'
s.resources = ['ChimpKit3/**/*.{xib}']
s.requires_arc = true
end