-
Notifications
You must be signed in to change notification settings - Fork 94
/
YCDownloadSession.podspec
34 lines (29 loc) · 1.19 KB
/
YCDownloadSession.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
#
# Be sure to run `pod spec lint YCDownloadSession.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
# :tag => "#{s.version}"
Pod::Spec.new do |s|
s.name = "YCDownloadSession"
s.version = "2.0.6"
s.summary = "iOS background download video or file"
s.homepage = "https://github.com/onezens/YCDownloadSession"
s.license = "MIT"
s.author = { "onezens" => "[email protected]" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/onezens/YCDownloadSession.git", :tag => "#{s.version}" }
s.subspec 'Core' do |c|
c.source_files = "YCDownloadSession/Core/*.{h,m}"
c.public_header_files = "YCDownloadSession/Core/*.h"
end
s.subspec 'Mgr' do |m|
m.dependency 'YCDownloadSession/Core'
m.source_files = "YCDownloadSession/*.{h,m}"
m.public_header_files = "YCDownloadSession/*.h"
end
s.default_subspec = 'Core','Mgr'
s.requires_arc = true
s.frameworks = 'CFNetwork'
end