Last active
December 11, 2015 10:49
-
-
Save jk/4589779 to your computer and use it in GitHub Desktop.
Intermediate HCYoutubeParser podspec to prepare a pull request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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/jk/HCYoutubeParser.git", | |
| :commit => "b660103f444b45ec534a96f82eca901bef5ac458" | |
| } | |
| s.platform = :ios | |
| s.source_files = 'YoutubeParser/Classes/*.{h,m}' | |
| s.public_header_files = 'YoutubeParser/Classes/*.h' | |
| s.requires_arc = true | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment