forked from campaignmonitor/createsend-objectivec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateSend.podspec
16 lines (16 loc) · 1.01 KB
/
CreateSend.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "CreateSend"
s.version = "1.1.1"
s.summary = "An Objective-C library for talking to the Campaign Monitor API from Cocoa & Cocoa Touch applications."
s.homepage = "http://campaignmonitor.github.io/createsend-objectivec/"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Nathan de Vries" => "[email protected]", "Jonathan Younger" => "[email protected]", "James Dennes" => "[email protected]" }
s.source = { :git => "https://github.com/campaignmonitor/createsend-objectivec.git", :tag => "v#{s.version}" }
s.ios.deployment_target = "5.0"
s.osx.deployment_target = "10.7"
s.requires_arc = true
s.source_files = "CreateSend", "Vendor/**/*.{h,m}"
s.osx.exclude_files = "CreateSend/*iOS.*", "CreateSend/CSAuthorizationViewController.*"
s.frameworks = "Security"
s.prefix_header_file = "CreateSend/CreateSend-Prefix.pch"
end