-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunicode-scripts.gemspec
More file actions
22 lines (18 loc) · 1.1 KB
/
unicode-scripts.gemspec
File metadata and controls
22 lines (18 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.dirname(__FILE__) + "/lib/unicode/scripts/constants"
Gem::Specification.new do |gem|
gem.name = "unicode-scripts"
gem.version = Unicode::Scripts::VERSION
gem.summary = "Which script(s) does a Unicode string belong to?"
gem.description = "[Unicode #{Unicode::Scripts::UNICODE_VERSION}] Retrieve the Unicode script(s) a string belongs to. Can also return the Script_Extension property which is defined as characters which are 'commonly used with more than one script, but with a limited number of scripts'. "
gem.authors = ["Jan Lelis"]
gem.email = ["hi@ruby.consulting"]
gem.homepage = "https://github.com/janlelis/unicode-scripts"
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.metadata = { "rubygems_mfa_required" => "true" }
gem.required_ruby_version = ">= 2.0"
end