class TwitterCldr::Resources::UnicodeFileParser

Public Class Methods

parse_standard_file(file) { |split(';', -1).map(&:strip)| ... } click to toggle source
# File lib/twitter_cldr/resources/unicode_file_parser.rb, line 11
def parse_standard_file(file)
  if block_given?
    File.open(file) do |input|
      input.each_line do |line|
        unless line[0] == '#'
          comment_idx = if idx = line.index('#')
            idx - 1 # consume #
          else
            line.size
          end

          line = line.chomp[0..comment_idx]
          if line.size > 0
            yield line.split(';', -1).map(&:strip)
          end
        end
      end
    end
  else
    enum_for(__method__, file)
  end
end