Sha256: 0cc4ceb64c4304b7436057f30d6e368c3f45ef79b64ecb89ff5f29d4a5b498ff
Contents?: true
Size: 926 Bytes
Versions: 9
Compression:
Stored size: 926 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 #{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
9 entries across 9 versions & 1 rubygems