mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1de78c5fd8
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62633 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
24 lines
878 B
Ruby
24 lines
878 B
Ruby
# -*- ruby -*-
|
|
_VERSION = "0.4.6"
|
|
date = %w$Date:: $[1]
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "io-console"
|
|
s.version = _VERSION
|
|
s.date = date
|
|
s.summary = "Console interface"
|
|
s.email = "nobu@ruby-lang.org"
|
|
s.description = "add console capabilities to IO instances."
|
|
s.required_ruby_version = ">= 2.2.0"
|
|
s.homepage = "https://github.com/ruby/io-console"
|
|
s.authors = ["Nobu Nakada"]
|
|
s.require_path = %[lib]
|
|
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]
|
|
s.license = "BSD-2-Clause"
|
|
s.cert_chain = %w[certs/nobu.pem]
|
|
s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
|
|
|
|
s.add_development_dependency 'rake-compiler'
|
|
s.add_development_dependency 'rake-compiler-dock', ">= 0.6.1"
|
|
end
|