-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHaidoraRefreshExtension.podspec
More file actions
33 lines (32 loc) · 1.22 KB
/
HaidoraRefreshExtension.podspec
File metadata and controls
33 lines (32 loc) · 1.22 KB
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
Pod::Spec.new do |s|
s.name = "HaidoraRefreshExtension"
s.version = "0.1.0"
s.summary = "HaidoraRefreshExtension."
s.description = <<-DESC
HaidoraRefresh几个自定义拉下动画.
DESC
s.homepage = "https://github.com/Haidora/HaidoraRefreshExtension"
s.license = 'MIT'
s.author = { "mrdaios" => "mrdaios@gmail.com" }
s.source = { :git => "https://github.com/Haidora/HaidoraRefreshExtension.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/*.h'
s.subspec 'Color' do |hdColor|
hdColor.source_files = 'Pod/Classes/ExtensionColor/**/*'
end
s.subspec 'Gif' do |hdGif|
hdGif.source_files = 'Pod/Classes/ExtensionGif/**/*'
hdGif.dependency 'AnimatedGIFImageSerialization', '~> 0.2.0'
hdGif.resource_bundles = {
'HaidoraRefreshExtensionGif' => ['Pod/Assets/ExtensionGif/*.*']
}
end
s.subspec 'Indicator' do |hdIndicator|
hdIndicator.source_files = 'Pod/Classes/ExtensionIndicator/**/*'
end
#s.resource_bundles = {
# 'HaidoraRefreshExtension' => ['Pod/Assets/*.png']
# }
s.dependency 'HaidoraRefresh'
end