Sha256: 9a77b7c174a6c575934d39efa1c9f3c4dccd7ddcc135a7387a2143b86019d4e7

Contents?: true

Size: 942 Bytes

Versions: 1

Compression:

Stored size: 942 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.dirname(__FILE__) + "/lib/unicode/display_width"

Gem::Specification.new do |s|
  s.name        = "unicode-display_width"
  s.version     = Unicode::DisplayWidth::VERSION
  s.authors     = ["Jan Lelis"]
  s.email       = "mail@janlelis.de"
  s.homepage    = "http://github.com/janlelis/unicode-display_width"
  s.summary = "Determines the monospace display width of a string in Ruby."
  s.description =  "Determines the monospace display width of a string using EastAsianWidth.txt, Unicode general category, and other data."
  s.files = Dir.glob(%w[{lib,spec}/**/*.rb [A-Z]*.{txt,rdoc} data/unicode-width.index]) + %w{Rakefile unicode-display_width.gemspec}
  s.extra_rdoc_files = ["README.md", "MIT-LICENSE.txt", "CHANGELOG.txt"]
  s.license = 'MIT'
  s.required_ruby_version = '>= 1.9.3', '< 3.0.0'
  s.add_development_dependency 'rspec', '~> 3.4'
  s.add_development_dependency 'rake', '~> 10.4'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unicode-display_width-1.0.1 unicode-display_width.gemspec