This repository was archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathVimeoUpload.podspec
More file actions
38 lines (27 loc) · 1.53 KB
/
VimeoUpload.podspec
File metadata and controls
38 lines (27 loc) · 1.53 KB
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
Pod::Spec.new do |s|
s.name = "VimeoUpload"
s.version = "3.1.0"
s.summary = "The Vimeo iOS/OSX Upload SDK."
s.description = <<-DESC
An iOS/OSX library for uploading videos to Vimeo. The library supports the existing server-side upload flow. It also supports a new private server-side upload flow that will soon be made public. VimeoUpload's core can be extended to support any NSURLSession(background)Task workflow.'
DESC
s.homepage = "https://github.com/vimeo/VimeoUpload"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Alfie Hanssen" => "alfie@vimeo.com",
"Rob Huebner" => "robh@vimeo.com",
"Gavin King" => "gavin@vimeo.com",
"Nicole Lehrer" => "nicole@vimeo.com",
"Chris Larsen" => "chrisl@vimeo.com",
"Rogerio de Paula Assis" => "rogerio@vimeo.com",
"Van Le Nguyen" => "van@vimeo.com",
"Freddy Kellison-Linn" => "freddy.kellisonlinn@vimeo.com",
"Jason Hawkins" => "jasonh@vimeo.com"
}
s.social_media_url = "http://twitter.com/vimeo"
s.ios.deployment_target = '10.3'
s.source = { :git => "https://github.com/vimeo/VimeoUpload.git", :tag => s.version.to_s }
s.source_files = "VimeoUpload/**/*.{swift}"
s.requires_arc = true
s.ios.frameworks = "Foundation", "AVFoundation", "AssetsLibrary", "Photos", "MobileCoreServices", "UIKit", "CoreGraphics"
s.dependency 'VimeoNetworking'
end