0.0
No commit activity in last 3 years
No release in over 3 years
Rotation management system for Ruboty
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 0

Runtime

>= 0.2.0
 Project Readme

Ruboty::Rotation

Rotation management system for Ruboty.

Usage

@ruboty rotation current             - Show current item
@ruboty rotation items               - Show all items
@ruboty rotation items add <item>    - Add item
@ruboty rotation items delete <item> - Delete item
@ruboty rotation next                - Move to next
@ruboty rotation prev                - Move to prev

Example

> @ruboty rotation items add one
Item one added
> @ruboty rotation items add two
Item two added
> @ruboty rotation items add three
Item three added
> @ruboty rotation items
one,two,three
> @ruboty rotation current
one
> @ruboty rotation next
> @ruboty rotation current
two
> @ruboty rotation next
> @ruboty rotation current
three
> @ruboty rotation next
> @ruboty rotation current
one

ENV

# With ENV options:
#   ROTATION_CURRENT_PREFIX='Current item is '
#   ROTATION_CURRENT_SUFFIX='. Please check it!'

> @ruboty rotation current
Current item is one. Please check it!