Sha256: 3e8bf1bfc73456849a6501a27c4e0e499710206a2ebfe7ad92c9b7c97ad01bc3
Contents?: true
Size: 852 Bytes
Versions: 24
Compression:
Stored size: 852 Bytes
Contents
#!/usr/bin/env ruby $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../lib') require 'fonemas' if ARGV.include?('--list') puts Fonemas.lista_de_fonemas.join("\n") exit end if ARGV.include?('--word') || ARGV.include?('-w') puts Fonemas.fonemas(ARGV[1]) exit end if ARGV.include?('--version') puts Fonemas.version exit end ARGF.set_encoding('UTF-8') input = ARGF.readlines words = [] for i in input #1 palabra por linea words << Fonemas.downcase(i.split(' ')[0].split('(')[0]) end words = words.sort words = words.uniq for i in words fonemas = Fonemas.fonemas(i) count = 0 begin for f in fonemas if count > 0 puts "#{i}(#{count})\t#{f}" else puts "#{i}\t#{f}" end count += 1 end rescue puts "error al procesar fonemas para #{i}" exit end end
Version data entries
24 entries across 24 versions & 1 rubygems