Method: Rodbot::Relay.say
- Defined in:
- lib/rodbot/relay.rb
permalink .say(text, on: nil, room: nil) ⇒ Boolean
Post a message via one or more relay services
By default, messages are posted via all relay services which have “say true” configured in their corresponding config blocks. To further narrow it to exactly one relay service, use the on
argument.
26 27 28 29 30 31 32 |
# File 'lib/rodbot/relay.rb', line 26 def say(text, on: nil, room: nil) Rodbot.config(:plugin).select do |extension, config| config[:say] == true && (!on || extension == on) end.keys.inject(true) do |success, extension| write(Rodbot::Message.new(text, room: room).dump, extension) && success end end |