Sha256: dd3e7b68cd4955579f862b401d4c88dbc51ac4c28ff3a470f46c810d6f96e9ba
Contents?: true
Size: 663 Bytes
Versions: 5
Compression:
Stored size: 663 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?('--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 for f in fonemas if count > 0 puts "#{i}(#{count})\t#{f}" else puts "#{i}\t#{f}" end count += 1 end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
fonemas-0.2.4 | bin/fonemas |
fonemas-0.2.3 | bin/fonemas |
fonemas-0.2.2 | bin/fonemas |
fonemas-0.2.1 | bin/fonemas |
fonemas-0.1.14 | bin/fonemas |