forked from ruby/curses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurses.gemspec
17 lines (17 loc) · 911 Bytes
/
curses.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Gem::Specification.new { |s|
s.name = "curses"
s.version = "1.2.2"
s.author = ["Shugo Maeda", 'Eric Hodel']
s.email = ["[email protected]", '[email protected]']
s.homepage = "https://github.com/ruby/curses"
s.platform = Gem::Platform::RUBY
s.summary = "A Ruby binding for curses, ncurses, and PDCurses. curses is an extension library for text UI applications. Formerly part of the Ruby standard library, [curses was removed and placed in this gem][1] with the release of Ruby 2.1.0. (see [ruby/ruby@9c5b2fd][2])"
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(vendor)/}) }
s.extensions = ["ext/curses/extconf.rb"]
s.require_path = "lib"
s.required_ruby_version = Gem::Requirement.new('>= 2.1.0')
s.licenses = ['Ruby', 'BSD-2-Clause']
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
s.add_development_dependency 'rake-compiler'
}