-
Notifications
You must be signed in to change notification settings - Fork 14
/
simpleidn.gemspec
23 lines (18 loc) · 944 Bytes
/
simpleidn.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'simpleidn/version'
Gem::Specification.new do |spec|
spec.name = "simpleidn"
spec.version = SimpleIDN::VERSION
spec.authors = ["Morten Møller Riis"]
spec.email = ["mortenmoellerriis _AT_ gmail.com"]
spec.summary = %q{Punycode ACE to unicode UTF-8 (and vice-versa) string conversion.}
spec.description = %q{This gem allows easy conversion from punycode ACE strings to unicode UTF-8 strings and vice-versa.}
spec.homepage = "https://github.com/mmriis/simpleidn"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ["lib"]
spec.add_development_dependency "rake", "~> 13.0.3"
spec.add_development_dependency "rspec", "~> 3.10"
spec.required_ruby_version = '>=2.2'
end