Project

blight

0.0
No commit activity in last 3 years
No release in over 3 years
Blight provides a sane interface to the very procedural ncurses API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

blight

Blight is a little library to help you write apps with ncurses in an object-oriented way. (rubygems).

example

Here's a hello world app:

require 'blight'

include Blight
RunsLoop.new.run do |window|
  renders_text = RendersCenteredText.new(window)
  renders_text.render("Hello, World! (type 'q' to quit)")
end

And here's what that looks like:

Hello, World example terminal

issues

  • Requires Ruby 1.9.x, but without good reason
  • Depends on the little-used ncurses-ruby gem, because I couldn't get any of the other ncurses wrappers to compile (on MRI 1.9.3, rbenv, OS X Lion, XCode CLI tools June 2012).