20 lines
768 B
Ruby
20 lines
768 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "HCYoutubeParser"
|
|
s.version = "0.0.1"
|
|
s.summary = "Retrieves the iOS compatible video URL from YouTube."
|
|
s.description = "HCYoutubeParser is a class which lets you get the iOS compatible video url from YouTube so you don't need to use a UIWebView or open the YouTube Application."
|
|
s.homepage = "https://github.com/hellozimi/HCYoutubeParser"
|
|
|
|
s.license = 'Public Domain'
|
|
s.author = "hellozimi"
|
|
s.source = {
|
|
:git => "https://github.com/hellozimi/HCYoutubeParser.git",
|
|
:commit => "429ac83593d66817102001a621b291677ef26ec9"
|
|
}
|
|
|
|
s.platform = :ios
|
|
s.source_files = 'YoutubeParser/Classes'
|
|
s.public_header_files = 'YoutubeParser/Classes/*.h'
|
|
s.requires_arc = true
|
|
end
|