File: simpleidn.gemspec

package info (click to toggle)
ruby-simpleidn 0.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,100 kB
  • sloc: ruby: 6,725; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 944 bytes parent folder | download
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