Skip to content

Commit 62de641

Browse files
committed
update pod spec
1 parent 885ee28 commit 62de641

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Fuzzywuzzy_swift.podspec

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
Pod::Spec.new do |spec|
22
spec.name = "Fuzzywuzzy_swift"
3-
spec.version = "0.0.1"
3+
spec.version = "0.0.2"
44
spec.summary = "Fuzzy String Matching in Swift using Levenshtein Distance. Inspired by the python fuzzywuzzy library https://github.com/seatgeek/fuzzywuzzy"
5+
spec.description = <<-DESC
6+
Fuzzy String Matching in Swift using Levenshtein Distance. Ported from the python fuzzywuzzy library https://github.com/seatgeek/fuzzywuzzy
7+
It supports multiple types of string matching.
8+
It has no external dependancies. And thanks to Swift String, it can support multi-language.
9+
DESC
510
spec.homepage = "https://github.com/lxian/Fuzzywuzzy_swift"
611
spec.license = { type: 'MIT', file: 'LICENSE.txt' }
712
spec.authors = { "Li Xian" => '[email protected]' }
813

914
spec.platform = :ios, "8.0"
1015
spec.requires_arc = true
11-
spec.source = { git: "https://github.com/lxian/Fuzzywuzzy_swift.git", tag: "v#{spec.version}", submodules: true }
16+
spec.source = { git: "https://github.com/lxian/Fuzzywuzzy_swift.git", tag: spec.version.to_s, submodules: true }
1217
spec.source_files = "Fuzzywuzzy_swift/**/*.{h,swift}"
1318

1419
end

0 commit comments

Comments
 (0)