soundcord 0.0.2 → 0.0.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.
- data/lib/soundcord.rb +7 -0
- metadata +1 -1
data/lib/soundcord.rb
CHANGED
|
@@ -6,6 +6,10 @@ class SoundCord
|
|
|
6
6
|
end
|
|
7
7
|
|
|
8
8
|
def self.compare term_1, term_2, use_vogals=false
|
|
9
|
+
homophone? term_1, term_2, use_vogals=false
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def self.homophone? term_1, term_2, use_vogals=false
|
|
9
13
|
handle_text(term_1, use_vogals) == handle_text(term_2, use_vogals)
|
|
10
14
|
end
|
|
11
15
|
|
|
@@ -100,4 +104,7 @@ class String
|
|
|
100
104
|
def compare_phonetically compared
|
|
101
105
|
compare_phntc compared
|
|
102
106
|
end
|
|
107
|
+
def homophone? compared
|
|
108
|
+
SoundCord.homophone? self, compared
|
|
109
|
+
end
|
|
103
110
|
end
|