forked from fpg1503/Aho-Corasick-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAho-Corasick.podspec
More file actions
executable file
·18 lines (14 loc) · 971 Bytes
/
Aho-Corasick.podspec
File metadata and controls
executable file
·18 lines (14 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "Aho-Corasick"
s.version = "2.0"
s.summary = "🔍 Swift implementation of the Aho-Corasick algorithm for efficient String matching"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.description = <<-DESC
This library is the Swift implementation of the afore-mentioned Aho-Corasick algorithm for efficient string matching. The algorithm is explained in great detail in the white paper written by Aho and Corasick. It supports matching several patterns at once, unicode word boundaris, case insensitive and diacritic insensitive searches.
DESC
s.homepage = 'https://github.com/fpg1503/Aho-Corasick-Swift'
s.authors = { 'Francesco Perrotti-Garcia' => 'fpg1503@gmail.com' }
s.source = { :git => 'https://github.com/fpg1503/Aho-Corasick-Swift.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.source_files = 'Source/**/*.swift'
end