class Socrates::SampleStates::Help

Public Instance Methods

ask() click to toggle source
# File lib/socrates/sample_states.rb, line 47
      def ask
        respond message: <<~MSG
          Thanks for asking! I can do these things for you...

            • `age` - Calculate your age from your birth date.
            • `dms` - Sends a direct messages to two other users.
            • `error` - Start a short error path that raises an error.
            • `help` - Tell you what I can do for you.

          So, what shall it be?
        MSG

        transition_to :get_started, action: :listen
      end