0.01
No commit activity in last 3 years
No release in over 3 years
Slider is a Ruby library to build and display slideshows for presentations
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

> 0.0.0
 Project Readme
Slider is a simple Ruby module to allow a presenter to create and view a
slideshow using only a terminal emulator. It requires the use of the console
application 'figlet' to draw the fancy headings.

Configuration:

- Set the # of columns in your terminal window (default is 80).
set_columns 105

- Set the # of rows in your terminal window (default is 24).
set_rows 30

- Set the FIGlet font of choice.  See the FIGlet man page for more info.
set_figlet_font 'bubble'

Create slides:
- Set the header (first argument), and sub-points (subsequent arguments) each
separated by a comma.

slide "Slider", "It's cool!"

Run the show:

start_slideshow

This code is provided under the MIT license, included in the file MIT-LICENSE