forked from lilfaf/YTVimeoExtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYTVimeoExtractor.podspec
More file actions
20 lines (19 loc) · 921 Bytes
/
YTVimeoExtractor.podspec
File metadata and controls
20 lines (19 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "YTVimeoExtractor"
s.version = "1.2.0"
s.summary = "Fetches Vimeo's mp4 URLs for iOS."
s.description = <<-DESC
YTVimeoExtractor is a class which lets you get the iOS
compatible video url from Vimeo which you can use in
MPMoviePlayerController, no need to use a UIWebView.
DESC
s.homepage = "https://github.com/lilfaf/YTVimeoExtractor"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Louis Larpin" => "louis.larpin@gmail.com", "Soneé John" => "sonee@alphasoftware.co" }
s.source = { :git => "https://github.com/lilfaf/YTVimeoExtractor.git", :tag => "1.2.0" }
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.source_files = 'YTVimeoExtractor/*.{h,m}'
s.requires_arc = true
end