forked from Yelp/yelp-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYelpAPI.podspec
33 lines (27 loc) · 1.12 KB
/
YelpAPI.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
#
# Be sure to run `pod lib lint YelpAPI.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "YelpAPI"
s.version = "1.1.0"
s.summary = "Objective-C client library for accessing the Yelp Public API."
s.description = <<-DESC
This pod is designed to help developers using both Objective-C
and Swift in accessing the Yelp Public API. A thorough
readme with usage examples can be found at https://github.com/Yelp/yelp-ios.
DESC
s.homepage = "https://github.com/Yelp/yelp-ios"
s.license = 'MIT'
s.author = 'Yelp'
s.source = { :git => "https://github.com/Yelp/yelp-ios.git", :tag => s.version.to_s }
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.source_files = "Classes/**/*.{h,m}"
s.private_header_files = 'Classes/**/*Private.h'
s.dependency 'TDOAuth', '~> 1.1'
end