14 lines
623 B
Ruby
14 lines
623 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "XCDYouTubeVideoPlayerViewController"
|
|
s.version = "1.0.0"
|
|
s.summary = "YouTube video player for iPhone and iPad."
|
|
s.homepage = "https://github.com/0xced/XCDYouTubeVideoPlayerViewController"
|
|
s.license = 'MIT'
|
|
s.author = { "Cédric Luthi" => "cedric.luthi@gmail.com" }
|
|
s.source = { :git => "https://github.com/0xced/XCDYouTubeVideoPlayerViewController.git", :tag => "1.0.0" }
|
|
s.platform = :ios, '5.0'
|
|
s.source_files = 'XCDYouTubeVideoPlayerViewController'
|
|
s.frameworks = 'AVFoundation', 'MediaPlayer'
|
|
s.requires_arc = true
|
|
end
|