Sha256: 2469621d5feed81e4c8607b1619a0e769da73c4a45be5eebc8a7c9348ce58725

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ncurses-ruby/version'

DESCRIPTION = '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 Ncurses module.'

Gem::Specification.new do |spec|
  spec.name          = 'ncurses-ruby'
  spec.version       = Ncurses::Ruby::VERSION
  spec.platform      = Gem::Platform::RUBY
  spec.authors       = ['Tobias Herzke', 'Simon Kaczor', 'Earle Clubb']
  spec.email         = ['t-peters@users.berlios.de', 'skaczor@cox.net', 'eclubb@valcom.com']
  spec.has_rdoc      = false
  spec.homepage      = 'http://github.com/eclubb/ncurses-ruby'
  spec.summary       = 'A Ruby module for accessing the ncurses library'
  spec.description   = DESCRIPTION
  spec.license       = "LGPL"

  spec.require_paths = ['lib']
  spec.files         = `git ls-files -z`.split("\x0")
  spec.extensions    = ['ext/ncurses/extconf.rb']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ncurses-ruby-1.2.4 ncurses-ruby.gemspec