blob: 5e9bc3193c129c8951e24df2d0f134e4dc0dc47d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require "rubygems"
PLUGIN = "ncurses"
NAME = "ncurses"
VERSION = "1.1"
AUTHOR = "Tobias Peters"
EMAIL = "t-peters@users.berlios.de"
HOMEPAGE = "http://ncurses-ruby.berlios.de/"
SUMMARY = "This wrapper provides access to the functions, macros, global variables and constants of the ncurses library. These are mapped to a Ruby Module named \"Ncurses\": Functions and external variables are implemented as singleton functions of the Module Ncurses."
spec = Gem::Specification.new do |s|
s.name = NAME
s.email = EMAIL
s.author = AUTHOR
s.version = VERSION
s.summary = SUMMARY
s.platform = Gem::Platform::RUBY
s.has_rdoc = false
s.homepage = HOMEPAGE
s.description = SUMMARY
s.autorequire = PLUGIN
s.require_paths = ["lib"]
s.files = Dir.glob("[A-Z]*") + Dir.glob("*.{c,h,rb}") + Dir.glob("{examples,lib}/**/*")
s.extensions = "extconf.rb"
end
|