-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathRakefile
31 lines (29 loc) · 1.07 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# vim: set filetype=ruby et sw=2 ts=2:
require 'gem_hadar'
GemHadar do
name 'amatch'
author 'Florian Frank'
email '[email protected]'
homepage "http://github.com/flori/#{name}"
summary 'Approximate String Matching library'
description <<EOT
Amatch is a library for approximate string matching and searching in strings.
Several algorithms can be used to do this, and it's also possible to compute a
similarity metric number between 0.0 and 1.0 for two given strings.
EOT
executables << 'agrep' << 'dupfind'
bindir 'bin'
test_dir 'tests'
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.AppleDouble', '.rbx',
'Makefile', '*.bundle', '*.o', '*.so'
package_ignore '.all_images.yml', '.gitignore', 'VERSION'
title "#{name.camelize} - Approximate Matching"
readme 'README.md'
require_paths %w[lib ext]
dependency 'tins', '~>1.0'
dependency 'mize'
development_dependency 'test-unit', '~>3.0'
development_dependency 'all_images'
required_ruby_version '>=2.4'
licenses << 'Apache-2.0'
end