summaryrefslogtreecommitdiff
path: root/curses.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'curses.gemspec')
-rw-r--r--curses.gemspec13
1 files changed, 13 insertions, 0 deletions
diff --git a/curses.gemspec b/curses.gemspec
new file mode 100644
index 0000000..e933b6c
--- /dev/null
+++ b/curses.gemspec
@@ -0,0 +1,13 @@
+require 'rubygems'
+Gem::Specification.new { |s|
+ s.name = "curses"
+ s.version = "1.0.2"
+ s.author = "Shugo Maeda"
+ s.email = "shugo@ruby-lang.org"
+ s.homepage = "http://github.com/shugo/curses"
+ s.platform = Gem::Platform::RUBY
+ s.summary = "curses binding for Ruby"
+ s.files = Dir.glob('{lib,ext,sample}/**/*') + ['README.md', 'COPYING', 'BSDL']
+ s.extensions = ["ext/curses/extconf.rb"]
+ s.require_path = "lib"
+}