-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCHANGELOG
52 lines (33 loc) · 1.19 KB
/
CHANGELOG
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
master
* Handle more than one 'M' at end of word (ie: alissonn)
Thanks @vyper!
1.0.0 [Sun Jun 19 2011]
* Use replacements table proposed by Marcos Rodrigues Caso (see:
http://caso.somee.com/siteTCC/docs/TCCMarcosRC.pdf)
This change will catch current cases and more like 'willian' and 'uillian'
Note that this change is backwards-incompatible. But you can update your
database using a rake task like that:
task :update_fonetica => :environment do
Person.transaction do
Person.find_each do |person|
person.update_attribute(:fonetica, person.name.foneticalize)
end
end
end
0.4.0 [Sat Feb 12 2010]
* Compatibility with Ruby 1.9
* Testing with Test::Unit instead of RSpec
* Using singleton instead of module for Fonetica
0.3.1 [Wed Dec 22 2010]
* Update gemspec summary
0.3.0 [Wed Dec 22 2010]
* Dropped activerecord support
* Rename fonetica method to foneticalize
* Extract alghoritm to fonetica module
0.2.0 [Mon Oct 18 2010]
* Catch case baptista and batista
* Cache column renamed from "attribute_fonetica" to "fonetica_attribute"
0.1.1 [Sat Oct 16 2010]
* Fix gemspec homepage, summary and description
0.1.0 [Sat Oct 16 2010]
* First release