dimus-taxamatch_rb 0.5.7 → 0.5.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/taxamatch_rb.rb +2 -0
  2. metadata +2 -2
@@ -57,6 +57,7 @@ module Taxamatch
57
57
  genus2_length = genus2[:normalized].size
58
58
  match = false
59
59
  ed = @dlm.distance(genus1[:normalized], genus2[:normalized],1,3) #TODO put block = 2
60
+ return {'edit_distance' => ed, 'phonetic_match' => false, 'match' => false} if ed/[genus1_length, genus2_length].min > 0.2
60
61
  return {'edit_distance' => ed, 'phonetic_match' => true, 'match' => true} if genus1[:phonetized] == genus2[:phonetized]
61
62
 
62
63
  match = true if ed <= 3 && ([genus1_length, genus2_length].min > ed * 2) && (ed < 2 || genus1[0] == genus2[0])
@@ -70,6 +71,7 @@ module Taxamatch
70
71
  sp2[:phonetized] = Taxamatch::Phonetizer.normalize_ending sp2[:phonetized]
71
72
  match = false
72
73
  ed = @dlm.distance(sp1[:normalized], sp2[:normalized], 1, 4) #TODO put block 4
74
+ return {'edit_distance' => ed, 'phonetic_match' => false, 'match' => false} if ed/[sp1_length, sp2_length].min > 0.3334
73
75
  #puts 's: %s, %s, %s' % [sp1[:normalized], sp2[:normalized], ed]
74
76
  return {'edit_distance' => ed, 'phonetic_match' => true, 'match' => true} if sp1[:phonetized] == sp2[:phonetized]
75
77
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dimus-taxamatch_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.7
4
+ version: 0.5.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Mozzherin
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-17 00:00:00 -07:00
12
+ date: 2009-09-03 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency