0.0
No release in over a year
Simple menu offering choices with navigation keys using curses
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 1.4
 Project Readme

curses_menu

Ruby API to create terminal-based menus, using curses.

  • Easy navigation using arrows, page up/down, home, end, enter and escape keys.
  • Several actions per menu item.
  • Scrolling support.
  • Extensive formatting options with colors, alignments, decorations...
  • Easy support for sub-menus.
  • Automatic key presses for autmating tasks in the menu.
  • Ruby-like API.

Install

Via gem

$ gem install curses_menu

Via a Gemfile

$ gem 'curses_menu'

Usage

require 'curses_menu'

CursesMenu.new 'My awesome new menu!' do |menu|
  menu.item 'How\'s life?' do
    puts 'Couldn\'t be easier'
    :menu_exit
  end
end

Check the examples folder for more examples.

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

Automated tests are done using rspec.

Do execute them, first install development dependencies:

bundle install

Then execute rspec

bundle exec rspec

Contributing

Any contribution is welcome:

  • Fork the github project and create pull requests.
  • Report bugs by creating tickets.
  • Suggest improvements and new features by creating tickets.

Credits

  • [Muriel Salvan][link-author]

License

The BSD License. Please see License File for more information.