-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathFuzzywuzzy_swift.podspec
More file actions
19 lines (17 loc) · 1008 Bytes
/
Fuzzywuzzy_swift.podspec
File metadata and controls
19 lines (17 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "Fuzzywuzzy_swift"
spec.version = "0.0.2"
spec.summary = "Fuzzy String Matching in Swift using Levenshtein Distance. Inspired by the python fuzzywuzzy library https://github.com/seatgeek/fuzzywuzzy"
spec.description = <<-DESC
Fuzzy String Matching in Swift using Levenshtein Distance. Ported from the python fuzzywuzzy library https://github.com/seatgeek/fuzzywuzzy
It supports multiple types of string matching.
It has no external dependancies. And thanks to Swift String, it can support multi-language.
DESC
spec.homepage = "https://github.com/lxian/Fuzzywuzzy_swift"
spec.license = { type: 'MIT', file: 'LICENSE.txt' }
spec.authors = { "Li Xian" => 'lxian2shell@gmail.com' }
spec.platform = :ios, "8.0"
spec.requires_arc = true
spec.source = { git: "https://github.com/lxian/Fuzzywuzzy_swift.git", tag: spec.version.to_s, submodules: true }
spec.source_files = "Fuzzywuzzy_swift/**/*.{h,swift}"
end