forked from parkerdonat/ios-pdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPinterestSDK.podspec
31 lines (26 loc) · 1.06 KB
/
PinterestSDK.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
#
# Be sure to run `pod lib lint PinterestSDK.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 = "PinterestSDK"
s.version = "1.0.2"
s.summary = "An SDK for doing Pinteresting things."
s.description = <<-DESC
An SDK for interacting with Pinterest.
DESC
s.homepage = "https://github.com/Pinterest/iOS-PDK"
s.license = 'MIT'
s.author = { "Ricky Cancro" => "[email protected]", "Garrett Moon" => "[email protected]" }
s.source = { :git => "https://github.com/pinterest/ios-pdk.git", :tag => s.version.to_s }
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.weak_frameworks = 'SafariServices'
s.source_files = 'Pod/Classes/*.{h,m}'
s.dependency 'AFNetworking', '~> 3.0'
s.dependency 'SAMKeychain'
end