47primes-amatch 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: 47primes-amatch
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.3
5
+ platform: ruby
6
+ authors:
7
+ - Florian Frank
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-09 00:00:00 -07:00
13
+ default_executable: agrep.rb
14
+ dependencies: []
15
+
16
+ description: 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.
17
+ email: flori@ping.de
18
+ executables:
19
+ - agrep.rb
20
+ extensions:
21
+ - ext/extconf.rb
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - bin
26
+ - bin/agrep.rb
27
+ - CHANGES
28
+ - ext
29
+ - ext/amatch.bundle
30
+ - ext/amatch.c
31
+ - ext/extconf.rb
32
+ - ext/Makefile
33
+ - ext/MANIFEST
34
+ - ext/pair.c
35
+ - ext/pair.h
36
+ - ext/tags
37
+ - GPL
38
+ - install.rb
39
+ - Rakefile
40
+ - README.en
41
+ - tests
42
+ - tests/runner.rb
43
+ - tests/test_hamming.rb
44
+ - tests/test_levenshtein.rb
45
+ - tests/test_longest_subsequence.rb
46
+ - tests/test_longest_substring.rb
47
+ - tests/test_pair_distance.rb
48
+ - tests/test_sellers.rb
49
+ - VERSION
50
+ has_rdoc: true
51
+ homepage: http://amatch.rubyforge.org
52
+ post_install_message:
53
+ rdoc_options:
54
+ - --title
55
+ - Amatch -- Approximate Matching
56
+ - --main
57
+ - Amatch
58
+ - --line-numbers
59
+ require_paths:
60
+ - ext
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: "0"
66
+ version:
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: "0"
72
+ version:
73
+ requirements: []
74
+
75
+ rubyforge_project: amatch
76
+ rubygems_version: 1.2.0
77
+ signing_key:
78
+ specification_version: 2
79
+ summary: Approximate String Matching library
80
+ test_files:
81
+ - tests/runner.rb