Skip to content
This repository has been archived by the owner on Jul 25, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2 from auramagi/cocoapods
Browse files Browse the repository at this point in the history
CocoaPods support
  • Loading branch information
auramagi authored Aug 2, 2019
2 parents 395aefd + af95bbb commit b396b91
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions SwiftWebVTT.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Pod::Spec.new do |s|
s.name = "SwiftWebVTT"
s.version = "1.0.1"
s.summary = "A parser for WebVTT caption files written in Swift"
s.homepage = "https://github.com/auramagi/SwiftWebVTT"
s.license = { type: 'MIT', file: 'LICENSE' }
s.authors = { "Mike Apurin" => '[email protected]' }
s.source = { :git => 'https://github.com/auramagi/SwiftWebVTT.git', :tag => s.version }

s.ios.deployment_target = '12.0'

s.swift_version = '5.0'

s.source_files = "SwiftWebVTT/*.{h,swift}"
s.resources = ["SwiftWebVTT/*.{json}"]
end

0 comments on commit b396b91

Please sign in to comment.