Sha256: a934b7c8474c4b72ad2434e6467a0273d84a91172caaa4522ddcc1fcff2a1ea8

Contents?: true

Size: 646 Bytes

Versions: 2

Compression:

Stored size: 646 Bytes

Contents

require "json"

module Unicoder
  module ReplaceCommonWords
  	def replace_common_words!(which_index, words, count = 500, _ = ?[.ord, min_word_length = 4)
      base = @words.join.chars.max.ord + 1
  	  puts "Starting to replace the #{count} most common words (replace base: #{base})"
  	  @index[:REPLACE_BASE] = base
  	  @index[:COMMON_WORDS] = words.
  	    select{_1.size >= min_word_length}.
  	    tally.
  	    max_by(count){_2}.
  	    map(&:first)
  	  @index[which_index].each{|_, name|
  	    @index[:COMMON_WORDS].each_with_index{|word, index|
  	      name.gsub! word + " ", [base + index].pack("U")
  	    }
  	  }
  	end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
unicoder-1.3.0 lib/unicoder/replace_common_words.rb
unicoder-1.1.1 lib/unicoder/replace_common_words.rb