-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCloudSight.podspec
30 lines (23 loc) · 1.09 KB
/
CloudSight.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
Pod::Spec.new do |s|
s.name = "CloudSight"
s.version = "1.0.4"
s.summary = "CloudSight image recognition API interface in Objective-C"
s.description = <<-DESC
CloudSight is a simple web API for image recognition. This library is
an implementation in Objective-C for developing applications that leverage
the CloudSight image recognition API, and is derived from the CamFind iOS app.
DESC
s.homepage = "http://cloudsightapi.com"
s.license = { :type => "MIT" }
s.authors = { "Bradford Folkens" => "[email protected]" }
s.social_media_url = "http://twitter.com/CloudSightAPI"
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.8"
s.source = { :git => "https://github.com/cloudsight/cloudsight-objc.git", :tag => s.version }
s.requires_arc = true
s.source_files = "CloudSight/*.{h,m}"
#s.public_header_files = "CloudSight/*.h"
s.dependency 'BFOAuth', '~> 1.0'
s.dependency 'RequestUtils', '~> 1.1'
s.frameworks = 'CoreLocation', 'CoreGraphics'
end