1 diff -ur a/lib/fantasdic/net/dict.rb b/lib/fantasdic/net/dict.rb
2 --- a/lib/fantasdic/net/dict.rb 2009-03-24 17:14:57.000000000 +0100
3 +++ b/lib/fantasdic/net/dict.rb 2010-01-11 14:14:11.000000000 +0100
5 # Highly modified version of Ruby/DICT, by Ian Macdonald <ian@caliban.org>
13 diff -ur a/lib/fantasdic/pre-setup.rb b/lib/fantasdic/pre-setup.rb
14 --- a/lib/fantasdic/pre-setup.rb 2009-03-24 17:14:57.000000000 +0100
15 +++ b/lib/fantasdic/pre-setup.rb 2010-01-11 14:15:37.000000000 +0100
18 authors = IO.readlines('../../AUTHORS').join.chomp.split("\n")
21 # This file is automatically generated by the installer.
22 # Do not edit by hands.
29 # This file is automatically generated by the installer.
30 # Do not edit by hands.
33 documenters = IO.readlines('../../data/gnome/help/fantasdic/AUTHORS').
34 join.chomp.split("\n")
37 # This file is automatically generated by the installer.
38 # Do not edit by hands.
40 diff -ur a/lib/fantasdic/source_base.rb b/lib/fantasdic/source_base.rb
41 --- a/lib/fantasdic/source_base.rb 2009-03-24 17:14:57.000000000 +0100
42 +++ b/lib/fantasdic/source_base.rb 2010-01-11 14:14:11.000000000 +0100
45 define_method(name) do |*args|
47 - when 0: instance_variable_get("@#{name}")
48 - else instance_variable_set("@#{name}", *args)
49 + when 0 then instance_variable_get("@#{name}")
50 + else instance_variable_set("@#{name}", *args)
54 diff -ur a/lib/fantasdic/text/double_metaphone.rb b/lib/fantasdic/text/double_metaphone.rb
55 --- a/lib/fantasdic/text/double_metaphone.rb 2009-03-24 17:14:57.000000000 +0100
56 +++ b/lib/fantasdic/text/double_metaphone.rb 2010-01-11 14:14:46.000000000 +0100
60 # Ruby implementation of the Double Metaphone algorithm by Lawrence Philips,
61 # originally published in the June 2000 issue of C/C++ Users Journal.