diff --git a/YTVimeoExtractor.podspec b/YTVimeoExtractor.podspec new file mode 100644 index 0000000..821f786 --- /dev/null +++ b/YTVimeoExtractor.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = "YTVimeoExtractor" + s.version = "0.0.7" + 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.author = { "Louis Larpin" => "louis.larpin@gmail.com" } + s.source = { :git => "https://github.com/lilfaf/YTVimeoExtractor.git", :tag => "0.0.7" } + + s.platform = :ios, '5.0' + s.source_files = 'YTVimeoExtractor/*.{h,m}' + s.requires_arc = true +end