summaryrefslogtreecommitdiff
path: root/ext/io/console/io-console.gemspec
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-30 11:54:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-30 11:54:27 +0000
commit3b8f9dc0b073170bd71fa42e018194afe0f99ea6 (patch)
tree82b92e7891ea27f7e5c8834fb172d04d440f80bc /ext/io/console/io-console.gemspec
parent1b10d8c327e2aff121cfbe537c3617d3714daab8 (diff)
* ext/io/console/io-console.gemspec: spin-off gem for 1.9.2.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32330 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/io/console/io-console.gemspec')
-rw-r--r--ext/io/console/io-console.gemspec15
1 files changed, 15 insertions, 0 deletions
diff --git a/ext/io/console/io-console.gemspec b/ext/io/console/io-console.gemspec
new file mode 100644
index 0000000000..2d34a41336
--- /dev/null
+++ b/ext/io/console/io-console.gemspec
@@ -0,0 +1,15 @@
+# -*- ruby -*-
+_VERSION = "0.3"
+
+Gem::Specification.new do |s|
+ s.name = "io-console"
+ s.version = _VERSION
+ s.date = "2011-06-24"
+ s.summary = "Console interface"
+ s.email = "nobu@ruby-lang.org"
+ s.description = "add console capabilities to IO instances."
+ s.authors = ["Nobu Nakada"]
+ s.require_path = %[.]
+ s.files = %w[console.c extconf.rb lib/console/size.rb]
+ s.extensions = %w[extconf.rb]
+end