mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1a15c3770e
* ext/io/console/io-console.gemspec: limit Date keyword length to get rid of locale format. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
18 lines
518 B
Ruby
18 lines
518 B
Ruby
# -*- ruby -*-
|
|
_VERSION = "0.4.0.1"
|
|
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.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]
|
|
s.licenses = "ruby"
|
|
end
|