any_number
It going to be executed if the incoming message contains at least one number (integer or float) and it will return as a parameter an array with the numbers found.
any_number(&block)
any_number(&block)Platforms
Platform
Supported
Messenger
Telegram
Usage
class MainContext < Conversation
  def blocks
    any_number do |numbers|
      @reply.text "You've sent these numers: #{numbers.join(" ,")}"
    end
  end
  
endLast updated
Was this helpful?