-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathIASearchKit.podspec
More file actions
38 lines (29 loc) · 1.47 KB
/
IASearchKit.podspec
File metadata and controls
38 lines (29 loc) · 1.47 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
#
# Be sure to run `pod spec lint IASearchKit.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/
#
Pod::Spec.new do |s|
s.name = "IASearchKit"
s.version = '1.2.0'
s.summary = "search kit for iOS write by Objective-C"
s.description = <<-DESC
SearchKit support Chinese search, pinyin initials, full spelling.
DESC
s.homepage = "https://github.com/CranzCapatain/IASearchKit.git"
s.license = 'MIT'
s.author = { "Alter" => "1154941292@qq.com" }
s.platform = :ios
s.source = { :git => "https://github.com/CranzCapatain/IASearchKit.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# CocoaPods is smart about how it includes source code. For source files
# giving a folder will include any swift, h, m, mm, c & cpp files.
# For header files it will include any header in the folder.
# Not including the public_header_files will make all headers public.
#
s.source_files = 'SearchKit/SearchKit/*.{h,m}'
s.resources = 'SearchKit/SearchKit/*.txt'
end