File: constants.rb

package info (click to toggle)
ruby-unicode-display-width 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 124 kB
  • sloc: ruby: 79; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 407 bytes parent folder | download
1
2
3
4
5
6
7
8
9
module Unicode
  module DisplayWidth
    VERSION = '1.6.1'
    UNICODE_VERSION = "12.1.0".freeze
    DEBIAN_DATA_DIRECTORY = '/usr/share/ruby-unicode-display-width/'
    DATA_DIRECTORY = (File.directory?(DEBIAN_DATA_DIRECTORY) ? DEBIAN_DATA_DIRECTORY : File.expand_path(File.dirname(__FILE__) + '/../../../data/')).freeze
    INDEX_FILENAME = (DATA_DIRECTORY + '/display_width.marshal.gz').freeze
  end
end