amatch 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Rakefile +2 -1
  2. data/VERSION +1 -1
  3. data/amatch.gemspec +25 -25
  4. data/lib/amatch/version.rb +1 -1
  5. metadata +21 -10
data/Rakefile CHANGED
@@ -20,7 +20,8 @@ EOT
20
20
  title "#{name.camelize} - Approximate Matching"
21
21
  readme 'README.rdoc'
22
22
  require_paths %w[lib ext]
23
- dependency 'spruz', '~>0.2'
23
+ dependency 'tins', '~>0.3'
24
+ development_dependency 'test-unit', '~>2.3'
24
25
 
25
26
  install_library do
26
27
  libdir = CONFIG["sitelibdir"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.7
1
+ 0.2.8
@@ -1,40 +1,40 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = %q{amatch}
5
- s.version = "0.2.7"
4
+ s.name = "amatch"
5
+ s.version = "0.2.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
- s.authors = [%q{Florian Frank}]
9
- s.date = %q{2011-08-05}
10
- s.description = %q{Amatch is a library for approximate string matching and searching in strings.
11
- Several algorithms can be used to do this, and it's also possible to compute a
12
- similarity metric number between 0.0 and 1.0 for two given strings.
13
- }
14
- s.email = %q{flori@ping.de}
15
- s.executables = [%q{agrep.rb}]
16
- s.extensions = [%q{ext/extconf.rb}]
17
- s.extra_rdoc_files = [%q{README.rdoc}, %q{lib/amatch/version.rb}, %q{ext/amatch.c}, %q{ext/pair.c}]
18
- s.files = [%q{.gitignore}, %q{.travis.yml}, %q{CHANGES}, %q{COPYING}, %q{Gemfile}, %q{README.rdoc}, %q{Rakefile}, %q{VERSION}, %q{amatch.gemspec}, %q{bin/agrep.rb}, %q{ext/amatch.c}, %q{ext/common.h}, %q{ext/extconf.rb}, %q{ext/pair.c}, %q{ext/pair.h}, %q{install.rb}, %q{lib/amatch/.keep}, %q{lib/amatch/version.rb}, %q{tests/test_hamming.rb}, %q{tests/test_jaro.rb}, %q{tests/test_jaro_winkler.rb}, %q{tests/test_levenshtein.rb}, %q{tests/test_longest_subsequence.rb}, %q{tests/test_longest_substring.rb}, %q{tests/test_pair_distance.rb}, %q{tests/test_sellers.rb}]
19
- s.homepage = %q{http://github.com/flori/amatch}
20
- s.rdoc_options = [%q{--title}, %q{Amatch - Approximate Matching}, %q{--main}, %q{README.rdoc}]
21
- s.require_paths = [%q{lib}, %q{ext}]
22
- s.rubygems_version = %q{1.8.7}
23
- s.summary = %q{Approximate String Matching library}
24
- s.test_files = [%q{tests/test_sellers.rb}, %q{tests/test_jaro.rb}, %q{tests/test_longest_subsequence.rb}, %q{tests/test_longest_substring.rb}, %q{tests/test_hamming.rb}, %q{tests/test_pair_distance.rb}, %q{tests/test_levenshtein.rb}, %q{tests/test_jaro_winkler.rb}]
8
+ s.authors = ["Florian Frank"]
9
+ s.date = "2011-09-25"
10
+ s.description = "Amatch is a library for approximate string matching and searching in strings.\nSeveral algorithms can be used to do this, and it's also possible to compute a\nsimilarity metric number between 0.0 and 1.0 for two given strings.\n"
11
+ s.email = "flori@ping.de"
12
+ s.executables = ["agrep.rb"]
13
+ s.extensions = ["ext/extconf.rb"]
14
+ s.extra_rdoc_files = ["README.rdoc", "lib/amatch/version.rb", "ext/amatch.c", "ext/pair.c"]
15
+ s.files = [".gitignore", ".travis.yml", "CHANGES", "COPYING", "Gemfile", "README.rdoc", "Rakefile", "VERSION", "amatch.gemspec", "bin/agrep.rb", "ext/amatch.c", "ext/common.h", "ext/extconf.rb", "ext/pair.c", "ext/pair.h", "install.rb", "lib/amatch/.keep", "lib/amatch/version.rb", "tests/test_hamming.rb", "tests/test_jaro.rb", "tests/test_jaro_winkler.rb", "tests/test_levenshtein.rb", "tests/test_longest_subsequence.rb", "tests/test_longest_substring.rb", "tests/test_pair_distance.rb", "tests/test_sellers.rb"]
16
+ s.homepage = "http://github.com/flori/amatch"
17
+ s.rdoc_options = ["--title", "Amatch - Approximate Matching", "--main", "README.rdoc"]
18
+ s.require_paths = ["lib", "ext"]
19
+ s.rubygems_version = "1.8.10"
20
+ s.summary = "Approximate String Matching library"
21
+ s.test_files = ["tests/test_sellers.rb", "tests/test_jaro.rb", "tests/test_longest_subsequence.rb", "tests/test_longest_substring.rb", "tests/test_hamming.rb", "tests/test_pair_distance.rb", "tests/test_levenshtein.rb", "tests/test_jaro_winkler.rb"]
25
22
 
26
23
  if s.respond_to? :specification_version then
27
24
  s.specification_version = 3
28
25
 
29
26
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
30
- s.add_development_dependency(%q<gem_hadar>, ["~> 0.0.11"])
31
- s.add_runtime_dependency(%q<spruz>, ["~> 0.2"])
27
+ s.add_development_dependency(%q<gem_hadar>, ["~> 0.1.0"])
28
+ s.add_development_dependency(%q<test-unit>, ["~> 2.3"])
29
+ s.add_runtime_dependency(%q<tins>, ["~> 0.3"])
32
30
  else
33
- s.add_dependency(%q<gem_hadar>, ["~> 0.0.11"])
34
- s.add_dependency(%q<spruz>, ["~> 0.2"])
31
+ s.add_dependency(%q<gem_hadar>, ["~> 0.1.0"])
32
+ s.add_dependency(%q<test-unit>, ["~> 2.3"])
33
+ s.add_dependency(%q<tins>, ["~> 0.3"])
35
34
  end
36
35
  else
37
- s.add_dependency(%q<gem_hadar>, ["~> 0.0.11"])
38
- s.add_dependency(%q<spruz>, ["~> 0.2"])
36
+ s.add_dependency(%q<gem_hadar>, ["~> 0.1.0"])
37
+ s.add_dependency(%q<test-unit>, ["~> 2.3"])
38
+ s.add_dependency(%q<tins>, ["~> 0.3"])
39
39
  end
40
40
  end
@@ -1,6 +1,6 @@
1
1
  module Amatch
2
2
  # Amatch version
3
- VERSION = '0.2.7'
3
+ VERSION = '0.2.8'
4
4
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amatch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,30 +9,41 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-08-05 00:00:00.000000000 Z
12
+ date: 2011-09-25 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: gem_hadar
16
- requirement: &2153302580 !ruby/object:Gem::Requirement
16
+ requirement: &2156333160 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 0.0.11
21
+ version: 0.1.0
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *2153302580
24
+ version_requirements: *2156333160
25
25
  - !ruby/object:Gem::Dependency
26
- name: spruz
27
- requirement: &2153302020 !ruby/object:Gem::Requirement
26
+ name: test-unit
27
+ requirement: &2156332280 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
31
31
  - !ruby/object:Gem::Version
32
- version: '0.2'
32
+ version: '2.3'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *2156332280
36
+ - !ruby/object:Gem::Dependency
37
+ name: tins
38
+ requirement: &2156331380 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: '0.3'
33
44
  type: :runtime
34
45
  prerelease: false
35
- version_requirements: *2153302020
46
+ version_requirements: *2156331380
36
47
  description: ! 'Amatch is a library for approximate string matching and searching
37
48
  in strings.
38
49
 
@@ -103,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
114
  version: '0'
104
115
  requirements: []
105
116
  rubyforge_project:
106
- rubygems_version: 1.8.7
117
+ rubygems_version: 1.8.10
107
118
  signing_key:
108
119
  specification_version: 3
109
120
  summary: Approximate String Matching library