summaryrefslogtreecommitdiff
path: root/curses.gemspec
blob: e933b6ceb16f37fe97f8bf8c65e1493494e8933a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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"
}