2011-06-30 11:54:27 +00:00
|
|
|
# -*- ruby -*-
|
2019-12-30 17:38:28 +09:00
|
|
|
_VERSION = "0.5.4"
|
2013-02-04 12:15:32 +00:00
|
|
|
date = %w$Date:: $[1]
|
2011-06-30 11:54:27 +00:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "io-console"
|
|
|
|
s.version = _VERSION
|
2013-02-04 12:09:16 +00:00
|
|
|
s.date = date
|
2011-06-30 11:54:27 +00:00
|
|
|
s.summary = "Console interface"
|
|
|
|
s.email = "nobu@ruby-lang.org"
|
|
|
|
s.description = "add console capabilities to IO instances."
|
2018-03-02 11:24:29 +00:00
|
|
|
s.required_ruby_version = ">= 2.2.0"
|
2017-09-15 23:46:46 +00:00
|
|
|
s.homepage = "https://github.com/ruby/io-console"
|
2018-12-27 04:21:53 +00:00
|
|
|
s.metadata["source_code_url"] = s.homepage
|
2011-06-30 11:54:27 +00:00
|
|
|
s.authors = ["Nobu Nakada"]
|
2015-06-13 02:35:25 +00:00
|
|
|
s.require_path = %[lib]
|
2018-12-27 04:21:53 +00:00
|
|
|
s.files = %w[
|
|
|
|
LICENSE.txt
|
|
|
|
README.md
|
|
|
|
ext/io/console/console.c
|
|
|
|
ext/io/console/extconf.rb
|
|
|
|
ext/io/console/win32_vk.inc
|
|
|
|
lib/io/console/size.rb
|
|
|
|
]
|
2017-09-14 02:01:36 +00:00
|
|
|
s.extensions = %w[ext/io/console/extconf.rb]
|
2015-12-22 13:56:34 +00:00
|
|
|
s.license = "BSD-2-Clause"
|
2011-06-30 11:54:27 +00:00
|
|
|
end
|