Sha256: cf70a878cb95c03c29a42146828220075b76920b867a50bcdd769b75a69cc5a6

Contents?: true

Size: 646 Bytes

Versions: 3

Compression:

Stored size: 646 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 << i.split(" ")[0].chomp.downcase
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

3 entries across 3 versions & 1 rubygems

Version Path
fonemas-0.1.12 bin/fonemas
fonemas-0.1.11 bin/fonemas
fonemas-0.1.10 bin/fonemas