Class: Ruboty::Handlers::ToggleSwitch
- Inherits:
-
Base
- Object
- Base
- Ruboty::Handlers::ToggleSwitch
- Defined in:
- lib/ruboty/handlers/toggle_switch.rb
Constant Summary collapse
- NAMESPACE =
'toggle_switch'
Instance Method Summary collapse
Instance Method Details
#show(message) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/ruboty/handlers/toggle_switch.rb', line 24 def show() switch = [:switch] if (record = storage[switch]) text = "#{switch} is #{record.state} " text << "by #{record.from} " if record.from text << "#{record.note} " if record.note text << record.at.strftime('on %b %d at %H:%M') text << '.' .reply(text) end end |
#toggle(message) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/ruboty/handlers/toggle_switch.rb', line 9 def toggle() switch = [:switch] state = [:state] note = [:note] storage_state = storage[switch] && storage[switch].state if storage_state == state .reply("#{switch} is already #{state}.") else storage[switch] = {state: state, from: .from_name, note: note} .reply("#{switch} is now #{state}.") end end |