Sha256: 5a1cc64c6398157214f9573c193c2f43a897a8c6fa4107d62f8abb228f659878

Contents?: true

Size: 935 Bytes

Versions: 1

Compression:

Stored size: 935 Bytes

Contents

# -*- encoding: utf-8 -*-

require File.dirname(__FILE__) + "/lib/unicode/categories/constants"

Gem::Specification.new do |gem|
  gem.name          = "unicode-categories"
  gem.version       = Unicode::Categories::VERSION
  gem.summary       = "Determine the Unicode General Categories of a string."
  gem.description   = "[Unicode version: #{Unicode::Categories::UNICODE_VERSION}] Determine which Unicode General Categories a string belongs to."
  gem.authors       = ["Jan Lelis"]
  gem.email         = ["mail@janlelis.de"]
  gem.homepage      = "https://github.com/janlelis/unicode-categories"
  gem.license       = "MIT"

  gem.files         = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^pkg/ }
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.required_ruby_version = "~> 2.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unicode-categories-1.0.0 unicode-categories.gemspec