-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTRVideoView.podspec
34 lines (26 loc) · 936 Bytes
/
TRVideoView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
# 1
s.platform = :ios
s.ios.deployment_target = '10.0'
s.swift_versions = '5.0'
s.name = "TRVideoView"
s.summary = "TRVideoView is a simple drop in WebView for embedded YouTube and Vimeo videos."
s.requires_arc = true
# 2
s.version = "0.1.5"
# 3
s.license = { :type => "MIT", :file => "LICENSE" }
# 4 - Replace with your name and e-mail address
s.author = { "Tim Roesner" => "[email protected]" }
# 5 - Replace this URL with your own Github page's URL (from the address bar)
s.homepage = "https://github.com/timroesner/TRVideoView"
# 6 - Replace this URL with your own Git URL from "Quick Setup"
s.source = { :git => "https://github.com/timroesner/TRVideoView.git", :tag => s.version.to_s }
# 7
s.framework = "UIKit"
s.framework = "WebKit"
# 8
s.source_files = "TRVideoView/**/*.{swift}"
# 9
#s.resources = "TRVideoView/**/*.{png,jpeg,jpg,storyboard,xib}"
end