Sha256: 9f7c398a36b93c712db4ef6925fd28119f47bf6919766b0c10a1ee030a5d5aeb
Contents?: true
Size: 946 Bytes
Versions: 2
Compression:
Stored size: 946 Bytes
Contents
# -*- encoding: utf-8 -*- require File.dirname(__FILE__) + "/lib/unicode/types/constants" Gem::Specification.new do |gem| gem.name = "unicode-types" gem.version = Unicode::Types::VERSION gem.summary = "Determine the basic type of codepoints." gem.description = "[Unicode version: #{Unicode::Types::UNICODE_VERSION}] Determine the basic type of codepoints (Graphic, Format, Control, Private-use, Surrogate, Noncharacter, Reserved)" gem.authors = ["Jan Lelis"] gem.email = ["mail@janlelis.de"] gem.homepage = "https://github.com/janlelis/unicode-types" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
unicode-types-1.0.1 | unicode-types.gemspec |
unicode-types-1.0.0 | unicode-types.gemspec |