Sha256: 4e23c35a12922f0ae2c6ec453d779d98bcd3bd527387555649db2a9d089db816
Contents?: true
Size: 866 Bytes
Versions: 11
Compression:
Stored size: 866 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]) unless i.nil? 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
11 entries across 11 versions & 1 rubygems