Class: Indofix::IndofixNominaHelper
- Inherits:
-
Object
- Object
- Indofix::IndofixNominaHelper
- Defined in:
- lib/indofix/indofix_nomina_helper.rb
Instance Method Summary collapse
-
#nomina_ke_x(string) ⇒ Object
id:Nomina (ke-).
-
#nomina_ke_x_an(string) ⇒ Object
id:Nomina (ke-an).
-
#nomina_ke_x_anku(string) ⇒ Object
id:Nomina (ke-anku).
-
#nomina_ke_x_anlah(string) ⇒ Object
id:Nomina (ke-anlah).
-
#nomina_ke_x_anmu(string) ⇒ Object
id:Nomina (ke-anmu).
-
#nomina_ke_x_annya(string) ⇒ Object
id:Nomina (ke-annya).
-
#nomina_ke_x_ku(string) ⇒ Object
id:Nomina (ke-ku).
-
#nomina_ke_x_mu(string) ⇒ Object
id:Nomina (ke-mu).
-
#nomina_ke_x_nya(string) ⇒ Object
id:Nomina (ke-nya).
-
#nomina_keber_x_an(string) ⇒ Object
id:Nomina (keber-an).
-
#nomina_kepeng_x_an(string) ⇒ Object
id:Nomina (kepeng-an).
-
#nomina_kese_x_an(string) ⇒ Object
id:Nomina (kese-an).
-
#nomina_keter_x_an(string) ⇒ Object
id:Nomina (keter-an).
-
#nomina_ketidak_x_an(string) ⇒ Object
id:Nomina (ketidak-an).
-
#nomina_pe_x(string) ⇒ Object
id:Nomina (pe-).
-
#nomina_pe_x_an(string) ⇒ Object
id:Nomina (pe-an).
-
#nomina_peng_x(string) ⇒ Object
id:Nomina (peng-).
-
#nomina_peng_x_an(string) ⇒ Object
id:Nomina (peng-an).
-
#nomina_per_x(string) ⇒ Object
id:Nomina (per-).
-
#nomina_per_x_an(string) ⇒ Object
id:Nomina (per-an).
-
#nomina_se_x(string) ⇒ Object
id:Nomina (se-).
-
#nomina_se_x_an(string) ⇒ Object
id:Nomina (se-an).
-
#nomina_se_x_nya(string) ⇒ Object
id:Nomina (se-nya).
-
#nomina_x_an(string) ⇒ Object
id:Nomina (-an).
-
#nomina_x_ku(string) ⇒ Object
id:Nomina (-ku).
-
#nomina_x_mu(string) ⇒ Object
id:Nomina (-mu).
-
#nomina_x_nya(string) ⇒ Object
id:Nomina (-nya).
Instance Method Details
#nomina_ke_x(string) ⇒ Object
id:Nomina (ke-)
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 59 def nomina_ke_x (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture end_of_line end return @verex.match(string) end |
#nomina_ke_x_an(string) ⇒ Object
id:Nomina (ke-an)
72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 72 def nomina_ke_x_an (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_ke_x_anku(string) ⇒ Object
id:Nomina (ke-anku)
86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 86 def nomina_ke_x_anku (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'anku' end_of_line end return @verex.match(string) end |
#nomina_ke_x_anlah(string) ⇒ Object
id:Nomina (ke-anlah)
100 101 102 103 104 105 106 107 108 109 110 111 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 100 def nomina_ke_x_anlah (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'anlah' end_of_line end return @verex.match(string) end |
#nomina_ke_x_anmu(string) ⇒ Object
id:Nomina (ke-anmu)
114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 114 def nomina_ke_x_anmu (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'anmu' end_of_line end return @verex.match(string) end |
#nomina_ke_x_annya(string) ⇒ Object
id:Nomina (ke-annya)
128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 128 def nomina_ke_x_annya (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'annya' end_of_line end return @verex.match(string) end |
#nomina_ke_x_ku(string) ⇒ Object
id:Nomina (ke-ku)
142 143 144 145 146 147 148 149 150 151 152 153 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 142 def nomina_ke_x_ku (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'ku' end_of_line end return @verex.match(string) end |
#nomina_ke_x_mu(string) ⇒ Object
id:Nomina (ke-mu)
156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 156 def nomina_ke_x_mu (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'mu' end_of_line end return @verex.match(string) end |
#nomina_ke_x_nya(string) ⇒ Object
id:Nomina (ke-nya)
170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 170 def nomina_ke_x_nya (string) @verex = VerEx.new do start_of_line find 'ke' begin_capture anything end_capture find 'nya' end_of_line end return @verex.match(string) end |
#nomina_keber_x_an(string) ⇒ Object
id:Nomina (keber-an)
184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 184 def nomina_keber_x_an (string) @verex = VerEx.new do start_of_line find 'keber' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_kepeng_x_an(string) ⇒ Object
id:Nomina (kepeng-an)
198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 198 def nomina_kepeng_x_an (string) @verex = VerEx.new do start_of_line find 'kepeng' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_kese_x_an(string) ⇒ Object
id:Nomina (kese-an)
212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 212 def nomina_kese_x_an (string) @verex = VerEx.new do start_of_line find 'kese' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_keter_x_an(string) ⇒ Object
id:Nomina (keter-an)
226 227 228 229 230 231 232 233 234 235 236 237 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 226 def nomina_keter_x_an (string) @verex = VerEx.new do start_of_line find 'keter' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_ketidak_x_an(string) ⇒ Object
id:Nomina (ketidak-an)
240 241 242 243 244 245 246 247 248 249 250 251 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 240 def nomina_ketidak_x_an (string) @verex = VerEx.new do start_of_line find 'ketidak' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_pe_x(string) ⇒ Object
id:Nomina (pe-)
254 255 256 257 258 259 260 261 262 263 264 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 254 def nomina_pe_x (string) @verex = VerEx.new do start_of_line find 'pe' begin_capture anything end_capture end_of_line end return @verex.match(string) end |
#nomina_pe_x_an(string) ⇒ Object
id:Nomina (pe-an)
267 268 269 270 271 272 273 274 275 276 277 278 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 267 def nomina_pe_x_an (string) @verex = VerEx.new do start_of_line find 'pe' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_peng_x(string) ⇒ Object
id:Nomina (peng-)
281 282 283 284 285 286 287 288 289 290 291 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 281 def nomina_peng_x (string) @verex = VerEx.new do start_of_line find 'peng' begin_capture anything end_capture end_of_line end return @verex.match(string) end |
#nomina_peng_x_an(string) ⇒ Object
id:Nomina (peng-an)
294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 294 def nomina_peng_x_an (string) @verex = VerEx.new do start_of_line find 'peng' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_per_x(string) ⇒ Object
id:Nomina (per-)
308 309 310 311 312 313 314 315 316 317 318 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 308 def nomina_per_x (string) @verex = VerEx.new do start_of_line find 'per' begin_capture anything end_capture end_of_line end return @verex.match(string) end |
#nomina_per_x_an(string) ⇒ Object
id:Nomina (per-an)
321 322 323 324 325 326 327 328 329 330 331 332 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 321 def nomina_per_x_an (string) @verex = VerEx.new do start_of_line find 'per' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_se_x(string) ⇒ Object
id:Nomina (se-)
335 336 337 338 339 340 341 342 343 344 345 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 335 def nomina_se_x (string) @verex = VerEx.new do start_of_line find 'se' begin_capture anything end_capture end_of_line end return @verex.match(string) end |
#nomina_se_x_an(string) ⇒ Object
id:Nomina (se-an)
348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 348 def nomina_se_x_an (string) @verex = VerEx.new do start_of_line find 'se' begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_se_x_nya(string) ⇒ Object
id:Nomina (se-nya)
362 363 364 365 366 367 368 369 370 371 372 373 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 362 def nomina_se_x_nya (string) @verex = VerEx.new do start_of_line find 'se' begin_capture anything end_capture find 'nya' end_of_line end return @verex.match(string) end |
#nomina_x_an(string) ⇒ Object
id:Nomina (-an)
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 7 def nomina_x_an (string) @verex = VerEx.new do start_of_line begin_capture anything end_capture find 'an' end_of_line end return @verex.match(string) end |
#nomina_x_ku(string) ⇒ Object
id:Nomina (-ku)
20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 20 def nomina_x_ku (string) @verex = VerEx.new do start_of_line begin_capture anything end_capture find 'ku' end_of_line end return @verex.match(string) end |
#nomina_x_mu(string) ⇒ Object
id:Nomina (-mu)
33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 33 def nomina_x_mu (string) @verex = VerEx.new do start_of_line begin_capture anything end_capture find 'mu' end_of_line end return @verex.match(string) end |
#nomina_x_nya(string) ⇒ Object
id:Nomina (-nya)
46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/indofix/indofix_nomina_helper.rb', line 46 def nomina_x_nya (string) @verex = VerEx.new do start_of_line begin_capture anything end_capture find 'nya' end_of_line end return @verex.match(string) end |