-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFXListKit.podspec
31 lines (27 loc) · 1.17 KB
/
FXListKit.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
#
# Be sure to run `pod spec lint FXListKit.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 https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "FXListKit"
spec.version = "1.2.2"
spec.summary = "A data-driven UICollectionView framework for building fast and flexible lists"
spec.homepage = "https://github.com/feixue299/FXListKit"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "wupengfei" => "[email protected]" }
spec.source = { :git => "https://github.com/feixue299/FXListKit.git", :tag => "#{spec.version}" }
spec.default_subspec = "Core"
spec.ios.deployment_target = '9.0'
spec.swift_version = '5.0'
spec.subspec "Core" do |ss|
ss.source_files = "Sources/FXListKit/**/*"
end
spec.subspec "Animation" do |ss|
ss.source_files = "Sources/FXListKitAnimation/"
ss.dependency 'FXListKit/Core'
ss.dependency "DifferenceKit", "~> 1.1.5"
end
end