forked from pbernery/PBYouTubeVideoViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPBYouTubeVideoViewController.podspec
More file actions
17 lines (17 loc) · 952 Bytes
/
PBYouTubeVideoViewController.podspec
File metadata and controls
17 lines (17 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "PBYouTubeVideoViewController"
s.version = "0.0.1"
s.summary = "A view controller that embeds the YouTube iframe HTML 5 player."
s.description = <<-DESC
PBYouTubeVideoViewController shows the YouTube iframe HTML 5 video player in a UIWebView.
PBYouTubeVideoViewController send the player events to a delegate and declares player methods in Objective-C providing an easy way to show a YouTube video in your iOS app.
DESC
s.homepage = "https://github.com/pbernery/PBYouTubeVideoViewController"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.author = "Philippe Bernery"
s.source = { :git => "git://github.com/pbernery/PBYouTubeVideoViewController.git" }
s.platform = :ios, '5.0'
s.source_files = 'PBYouTubeVideoViewController/Library'
s.resources = 'PBYouTubeVideoViewController/Library/PBYouTubeVideoView.html'
s.requires_arc = true
end