Ruboty::ToggleSwitch
ruboty-toggle_switch allows you to toggle switch on/off.
Installation
Add this line to your application's Gemfile:
gem 'ruboty-toggle_switch'
Usage
ruboty: toggle <switch> (on|off) - Toggle key status.
ruboty: show <switch> status - Show the current status.
ruboty: list switches - List the statuses of switches
Examples
> ruboty: toggle switch on
switch is now on.
> ruboty: show switch status
switch is on on Apr 27 at 06:29.
> ruboty: toggle switch off for good sleeping
switch is now off.
> ruboty: show switch status
switch is off for good sleeping on Apr 27 at 06:30.
> ruboty: list switches
- switch is off.
API
Use Ruboty::ToggleSwitch::Storage
to get the state of switch from other handlers:
storage = Ruboty::ToggleSwitch::Storage.new(robot.brain)
record = storage['switch']
record.status # => 'on' or 'off'
http://www.rubydoc.info/github/takai/ruboty-toggle_switch/master/Ruboty/ToggleSwitch/Storage