class Indofix::IndofixOtherHelper
Public Instance Methods
other_adjektiva_ber_x(string)
click to toggle source
id:Adjektiva (ber-)
# File lib/indofix/indofix_other_helper.rb, line 20 def other_adjektiva_ber_x (string) @verex = VerEx.new do start_of_line find 'ber' begin_capture anything end_capture end_of_line end @verex.match(string) end
other_adjektiva_ke_x_an(string)
click to toggle source
id:Adjektiva (ke-an)
# File lib/indofix/indofix_other_helper.rb, line 33 def other_adjektiva_ke_x_an (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'an' end_of_line end @verex.match(string) end
other_adjektiva_keter_x_an(string)
click to toggle source
id:Adjektiva (keter-an)
# File lib/indofix/indofix_other_helper.rb, line 47 def other_adjektiva_keter_x_an (string) @verex = VerEx.new do start_of_line find 'keter' begin_capture anything end_capture find 'an' end_of_line end @verex.match(string) end
other_adjektiva_me_x(string)
click to toggle source
id:Adjektiva (me-)
# File lib/indofix/indofix_other_helper.rb, line 61 def other_adjektiva_me_x (string) @verex = VerEx.new do start_of_line find 'me' begin_capture anything end_capture end_of_line end @verex.match(string) end
other_adjektiva_me_x_an(string)
click to toggle source
id:Adjektiva (me-kan)
# File lib/indofix/indofix_other_helper.rb, line 74 def other_adjektiva_me_x_an (string) @verex = VerEx.new do start_of_line find 'me' begin_capture anything end_capture find 'an' end_of_line end @verex.match(string) end
other_adjektiva_se_x(string)
click to toggle source
id:Adjektiva (se-)
# File lib/indofix/indofix_other_helper.rb, line 88 def other_adjektiva_se_x (string) @verex = VerEx.new do start_of_line find 'se' begin_capture anything end_capture end_of_line end @verex.match(string) end
other_adjektiva_ter_x(string)
click to toggle source
id:Adjektiva (ter-)
# File lib/indofix/indofix_other_helper.rb, line 100 def other_adjektiva_ter_x (string) @verex = VerEx.new do start_of_line find 'ter' begin_capture anything end_capture end_of_line end @verex.match(string) end
other_adjektiva_x_an(string)
click to toggle source
id:Adjektiva (-an)
# File lib/indofix/indofix_other_helper.rb, line 7 def other_adjektiva_x_an (string) @verex = VerEx.new do start_of_line begin_capture anything end_capture find 'an' end_of_line end @verex.match(string) end
other_adverbia_ke_x_an(string)
click to toggle source
id:Adverbia (se-nya)
# File lib/indofix/indofix_other_helper.rb, line 139 def other_adverbia_ke_x_an (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'an' end_of_line end @verex.match(string) end
other_adverbia_se_x(string)
click to toggle source
id:Adverbia (se-)
# File lib/indofix/indofix_other_helper.rb, line 126 def other_adverbia_se_x (string) @verex = VerEx.new do start_of_line find 'se' begin_capture anything end_capture end_of_line end @verex.match(string) end
other_adverbia_x_an(string)
click to toggle source
id:Adverbia (-an)
# File lib/indofix/indofix_other_helper.rb, line 113 def other_adverbia_x_an (string) @verex = VerEx.new do start_of_line begin_capture anything end_capture find 'an' end_of_line end @verex.match(string) end
other_bilangan_se_x(string)
click to toggle source
id:Bilangan (se-)
# File lib/indofix/indofix_other_helper.rb, line 153 def other_bilangan_se_x (string) @verex = VerEx.new do start_of_line find 'se' begin_capture anything end_capture end_of_line end @verex.match(string) end