-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYeeKit.podspec
More file actions
25 lines (18 loc) · 808 Bytes
/
Copy pathYeeKit.podspec
File metadata and controls
25 lines (18 loc) · 808 Bytes
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
Pod::Spec.new do |s|
s.name = 'YeeKit'
s.version = '1.2.8'
s.summary = 'A lightweight SwiftUI extension kit for data/state/view handling.'
s.description = <<-DESC
YeeKit is a modular and elegant SwiftUI utility library focused on data handling
DESC
s.homepage = 'https://github.com/yijingKing/YeeKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '祎境' => '1091676312@email.com' }
s.source = { :git => 'https://github.com/yijingKing/YeeKit.git', :tag => s.version }
s.swift_version = '5.0'
s.ios.deployment_target = '14.0'
s.source_files = 'Sources/**/*.{swift}'
s.module_name = 'YeeKit'
s.requires_arc = true
s.dependency 'Kingfisher', '~> 8.4'
end