2011-06-30 11:54:27 +00:00
|
|
|
# -*- ruby -*-
|
2013-02-03 08:22:43 +00:00
|
|
|
_VERSION = "0.4.0.1"
|
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."
|
2011-10-16 10:46:30 +00:00
|
|
|
s.homepage = "http://www.ruby-lang.org"
|
2011-06-30 11:54:27 +00:00
|
|
|
s.authors = ["Nobu Nakada"]
|
|
|
|
s.require_path = %[.]
|
|
|
|
s.files = %w[console.c extconf.rb lib/console/size.rb]
|
|
|
|
s.extensions = %w[extconf.rb]
|
2013-02-04 12:09:16 +00:00
|
|
|
s.licenses = "ruby"
|
2011-06-30 11:54:27 +00:00
|
|
|
end
|