Skip to content

Commit c3f6f34

Browse files
committed
add pod spec
1 parent c3b4f75 commit c3f6f34

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Fuzzywuzzy_swift.podspec

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "Fuzzywuzzy_swift"
3+
spec.version = "0.0.1"
4+
spec.summary = "Fuzzy String Matching in Swift using Levenshtein Distance. Inspired by the python fuzzywuzzy library https://github.com/seatgeek/fuzzywuzzy"
5+
spec.homepage = "https://github.com/lxian/Fuzzywuzzy_swift"
6+
spec.license = { type: 'MIT', file: 'LICENSE.txt' }
7+
spec.authors = { "Li Xian" => '[email protected]' }
8+
9+
spec.platform = :ios, "8.0"
10+
spec.requires_arc = true
11+
spec.source = { git: "https://github.com/lxian/Fuzzywuzzy_swift.git", tag: "v#{spec.version}", submodules: true }
12+
spec.source_files = "Fuzzywuzzy_swift/**/*.{h,swift}"
13+
14+
end

0 commit comments

Comments
 (0)