-
Notifications
You must be signed in to change notification settings - Fork 2
/
mango-ios.podspec
28 lines (19 loc) · 998 Bytes
/
mango-ios.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
Pod::Spec.new do |s|
s.name = "mango-ios"
s.version = "0.1.0"
s.summary = "This is the iOS SDK that allows interaction with Mango API."
s.description = <<-DESC
This is the iOS SDK that allows interaction with Mango API.
For more information https://developers.getmango.com
DESC
s.homepage = "https://developers.getmango.com"
s.license = { :type => "MIT", :file => "LICENSE.MD" }
s.authors = { 'Mango Development Team' => '[email protected]', 'Ezequiel Becerra' => '[email protected]', 'Gonzalo Larralde' => '[email protected]' }
s.social_media_url = "https://twitter.com/getmango"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/mango/mango-ios.git", :tag => "0.1.0" }
s.source_files = "mango-ios/src/*.{h,m}"
s.public_header_files = "mango-ios/src/*.{h,m}"
s.requires_arc = true
s.dependency "AFNetworking", "~> 2.5"
end