2011-06-30 07:54:27 -04:00
|
|
|
# -*- ruby -*-
|
2016-04-15 02:15:54 -04:00
|
|
|
_VERSION = "0.4.6"
|
2013-02-04 07:15:32 -05:00
|
|
|
date = %w$Date:: $[1]
|
2011-06-30 07:54:27 -04:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "io-console"
|
|
|
|
s.version = _VERSION
|
2013-02-04 07:09:16 -05:00
|
|
|
s.date = date
|
2011-06-30 07:54:27 -04:00
|
|
|
s.summary = "Console interface"
|
|
|
|
s.email = "nobu@ruby-lang.org"
|
|
|
|
s.description = "add console capabilities to IO instances."
|
2013-08-09 09:56:04 -04:00
|
|
|
s.required_ruby_version = ">= 2.0.0"
|
2017-09-15 19:46:46 -04:00
|
|
|
s.homepage = "https://github.com/ruby/io-console"
|
2011-06-30 07:54:27 -04:00
|
|
|
s.authors = ["Nobu Nakada"]
|
2015-06-12 22:35:25 -04:00
|
|
|
s.require_path = %[lib]
|
2017-09-13 22:01:36 -04:00
|
|
|
s.files = %w[ext/io/console/console.c ext/io/console/extconf.rb lib/console/size.rb ext/io/console/win32_vk.inc]
|
|
|
|
s.extensions = %w[ext/io/console/extconf.rb]
|
2015-12-22 08:56:34 -05:00
|
|
|
s.license = "BSD-2-Clause"
|
2013-11-13 03:08:09 -05:00
|
|
|
s.cert_chain = %w[certs/nobu.pem]
|
|
|
|
s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
|
2017-09-13 22:01:36 -04:00
|
|
|
|
|
|
|
s.add_development_dependency 'rake-compiler'
|
|
|
|
s.add_development_dependency 'rake-compiler-dock', ">= 0.6.1"
|
2011-06-30 07:54:27 -04:00
|
|
|
end
|