mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
80455c0d97
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
16 lines
456 B
Ruby
16 lines
456 B
Ruby
# -*- ruby -*-
|
|
_VERSION = "0.4.0.1"
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "io-console"
|
|
s.version = _VERSION
|
|
s.date = "2013-02-03"
|
|
s.summary = "Console interface"
|
|
s.email = "nobu@ruby-lang.org"
|
|
s.description = "add console capabilities to IO instances."
|
|
s.homepage = "http://www.ruby-lang.org"
|
|
s.authors = ["Nobu Nakada"]
|
|
s.require_path = %[.]
|
|
s.files = %w[console.c extconf.rb lib/console/size.rb]
|
|
s.extensions = %w[extconf.rb]
|
|
end
|