forked from cloudinary/cloudinary_ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cloudinary.podspec
39 lines (31 loc) · 1.75 KB
/
Cloudinary.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
34
35
36
37
38
39
#
# Be sure to run `pod lib lint Cloudinary.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Cloudinary'
s.version = '3.0.0'
s.summary = "Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline."
s.description = <<-DESC
Easily upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software.
Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website’s graphics requirements.
Images are seamlessly delivered through a fast CDN, and much much more.
Cloudinary offers comprehensive APIs and administration capabilities and is easy to integrate with any web application, existing or new.
Cloudinary provides URL and HTTP based APIs that can be easily integrated with any Web development framework.
DESC
s.homepage = 'http://cloudinary.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Cloudinary" => "[email protected]" }
s.source = { :git => "https://github.com/cloudinary/cloudinary_ios.git", :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '9.0'
s.frameworks = 'UIKit', 'Foundation'
s.default_subspec = 'ios'
s.subspec 'ios' do |spec|
spec.platform = :ios
spec.source_files = 'Cloudinary/Classes/**/*'
end
end