forked from yichizhang/SwiftyStringScore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStringScore_Swift.podspec
More file actions
24 lines (23 loc) · 1.22 KB
/
StringScore_Swift.podspec
File metadata and controls
24 lines (23 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
#
# Be sure to run `pod lib lint StringScore_Swift.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "StringScore_Swift"
s.version = "0.1.1"
s.summary = "Swift string search and fuzzy ranking. Score of 0 for no match; up to 1 for perfect."
s.description = "Swift string search and fuzzy ranking. Score of 0 for no match; up to 1 for perfect. StringScore_Swift is a Swift library which provides fast fuzzy string matching/scoring. Based on the JavaScript library of the same name, by Joshaven Potter."
s.homepage = "https://github.com/yichizhang/StringScore_Swift"
s.license = 'MIT'
s.author = { "Yichi Zhang" => "zhang-yi-chi@hotmail.com" }
s.source = { :git => "https://github.com/yichizhang/StringScore_Swift.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nsyichi'
s.requires_arc = true
s.source_files = 'Source/**/*'
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
end