-
Notifications
You must be signed in to change notification settings - Fork 45
/
YTLiveStreaming.podspec
47 lines (37 loc) · 1.62 KB
/
YTLiveStreaming.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
35
36
37
38
39
40
41
42
43
44
45
46
47
Pod::Spec.new do |s|
s.platform = :ios
s.ios.deployment_target = '12.1'
s.swift_versions = "5.0"
s.name = "YTLiveStreaming"
s.description = <<-DESC
YTLiveStreaming is a framework which lets create live broadcasts and video streams on YouTube using the YouTube Live Streaming API.
DESC
s.summary = "YTLiveStreaming is an YouTube Live Streaming Framework"
s.requires_arc = true
s.version = "0.2.45"
# Initialize
# Check podspec
# pod lib lint YTLiveStreaming.podspec
# First commit
# git commit -m "Initial Commit"
# git remote add origin https://github.com/SKrotkih/YTLiveStreaming.git
# git push -u origin master
# Make for new version:
# 1. git tag 0.2.35
# 2. git push -u origin master --tags
# 3. pod spec lint YTLiveStreaming.podspec --allow-warnings
# Push podspec with the new version info
# Create session:
# 4. pod trunk register sergey.krotkih@gmail.com "Serhii Krotkykh" --description="CocoaPods Session for the YTLiveStreaming"
# 5. pod trunk push YTLiveStreaming.podspec --verbose --allow-warnings
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Serhii Krotkykh" => "sergey.krotkih@gmail.com" }
s.homepage = "https://github.com/SKrotkih/YTLiveStreaming.git"
s.source = { :git => "https://github.com/SKrotkih/YTLiveStreaming.git", :tag => s.version.to_s }
s.frameworks = "UIKit"
s.dependency 'Moya', '14.0'
s.dependency 'SwiftyJSON'
s.dependency 'KeychainAccess'
s.source_files = "YTLiveStreaming/**/*.{swift,h,m}"
s.public_header_files = ['YTLiveStreaming/YTLiveStreaming.h']
end