Sha256: 19c17ca882c5112d06d8d02f1245d28db83961e83753b33443e613c8b9c871f4
Contents?: true
Size: 1.13 KB
Versions: 3
Compression:
Stored size: 1.13 KB
Contents
# -*- encoding: utf-8 -*- require File.dirname(__FILE__) + "/lib/unicode/confusable/constants" Gem::Specification.new do |gem| gem.name = "unicode-confusable" gem.version = Unicode::Confusable::VERSION gem.summary = "Detect characters that look visually similar." gem.description = "[Unicode #{Unicode::Confusable::UNICODE_VERSION}] Compares two strings if they are visually confusable as described in UnicodeĀ® Technical Standard #39: Both strings get transformed into a skeleton format before comparing them. The skeleton is generated by normalizing the string, replacing confusable characters, and then normalizing the string again." gem.authors = ["Jan Lelis"] gem.email = ["hi@ruby.consulting"] gem.homepage = "https://github.com/janlelis/unicode-confusable" 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.2" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
unicode-confusable-1.9.0 | unicode-confusable.gemspec |
unicode-confusable-1.8.0 | unicode-confusable.gemspec |
unicode-confusable-1.7.0 | unicode-confusable.gemspec |