Skip to content

Commit a8f9dda

Browse files
committed
Update .podspec
1 parent 8b6ce48 commit a8f9dda

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.swift-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.0

Sources/VideoInfo.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import AVFoundation
1111

1212
public struct VideoInfo {
1313

14+
/** Raw info for each video quality. Elements are sorted by video quality with first being the highest quality. */
1415
public let rawInfo: [[String: String]]
1516

1617
public var highestQualityPlayableLink: String? {

YoutubeDirectLinkExtractor.podspec

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
Pod::Spec.new do |s|
22
s.name = "YoutubeDirectLinkExtractor"
3-
s.version = "0.1"
4-
s.summary = ""
3+
s.version = "0.1.0"
4+
s.summary = "Get the direct link to a YouTube video for AVPlayer"
55
s.description = <<-DESC
6-
Your description here.
6+
YoutubeDirectLinkExtractor allows you to obtain the direct link to a YouTube video, which you can easily use with AVPlayer.
77
DESC
8-
s.homepage = "git@github.com:devandsev/YoutubeDirectLinkExtractor"
8+
s.homepage = "https://github.com/devandsev/YoutubeDirectLinkExtractor"
99
s.license = { :type => "MIT", :file => "LICENSE" }
1010
s.author = { "Andrey Sevrikov" => "devandsev@gmail.com" }
11-
s.social_media_url = ""
1211
s.ios.deployment_target = "8.0"
1312
s.osx.deployment_target = "10.9"
14-
s.watchos.deployment_target = "2.0"
15-
s.tvos.deployment_target = "9.0"
16-
s.source = { :git => "git@github.com:devandsev/YoutubeDirectLinkExtractor.git", :tag => s.version.to_s }
13+
s.source = { :git => s.homepage + ".git", :tag => s.version.to_s }
1714
s.source_files = "Sources/**/*"
18-
s.frameworks = "Foundation"
15+
s.frameworks = "Foundation", "AVFoundation"
1916
end

0 commit comments

Comments
 (0)