-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFlexLayoutKit.podspec
More file actions
49 lines (39 loc) · 1.58 KB
/
FlexLayoutKit.podspec
File metadata and controls
49 lines (39 loc) · 1.58 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Be sure to run `pod lib lint FlexLayoutKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'FlexLayoutKit'
s.version = '0.5'
s.summary = "flex layout for iOS powered by yoga"
s.description = <<-DESC
flex layout for iOS powered by yoga. Like SwiftUI.
DESC
s.homepage = 'https://github.com/BestYun/FlexLayoutKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'yun' => 'lixingyunxing@163.com' }
s.source = { :git => 'https://github.com/BestYun/FlexLayoutKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.swift_versions = ["5.4"]
s.module_name = 'FlexLayoutKit'
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = "FlexLayoutKit/Sources/Core/**/*.{swift,h,m,mm,cpp,c}","FlexLayoutKit/Sources/YogaKit/*.{swift,h,m,mm,cpp,c}"
ss.public_header_files = "FlexLayoutKit/Sources/YogaKit/*.h"
ss.frameworks = 'UIKit'
ss.dependency 'FlexBoxYoga', "~> 2.0.0.2"
end
s.subspec 'Kingfisher' do |ss|
ss.dependency 'FlexLayoutKit/Core'
ss.source_files = "FlexLayoutKit/Sources/Kingfisher/*.{swift}"
ss.dependency 'Kingfisher', '~> 6.3.1'
end
s.subspec 'SDWebImage' do |ss|
ss.source_files = "FlexLayoutKit/Sources/SDWebImage/*.swift"
ss.dependency 'SDWebImage'
ss.dependency 'FlexLayoutKit/Core'
end
end