# # Be sure to run `pod spec lint VIMVideoPlayer.podspec' to ensure this is a # valid spec and to remove all comments including this before submitting the spec. # # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ # Pod::Spec.new do |s| s.name = "VIMVideoPlayer" s.version = "5.5" s.summary = "A simple wrapper around the AVPlayer and AVPlayerLayer classes." s.description = <<-DESC VIMVideoPlayer is a simple wrapper around the AVPlayer and AVPlayerLayer classes. Check out the README for details. And the Pegasus project for a demo. DESC s.homepage = "https://github.com/vimeo/VIMVideoPlayer" s.license = "MIT" s.license = { :type => "MIT", :file => "LICENSE.md" } s.authors = { "Alfie Hanssen" => "alfiehanssen@gmail.com" } s.social_media_url = "http://twitter.com/vimeo" # s.platform = :ios # s.platform = :ios, "7.0" # When using multiple platforms s.ios.deployment_target = "7.0" # s.osx.deployment_target = "10.7" s.source = { :git => "https://github.com/vimeo/VIMVideoPlayer.git", :tag => s.version.to_s } s.source_files = "VIMVideoPlayer", "VIMVideoPlayer/*.{h,m}" s.exclude_files = "VIMVideoPlayer/Exclude" # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # # # Link your library with frameworks, or libraries. Libraries do not include # the lib prefix of their name. # # s.framework = "SomeFramework" # s.frameworks = "SomeFramework", "AnotherFramework" # s.library = "iconv" # s.libraries = "iconv", "xml2" s.requires_arc = true end