stealth icon indicating copy to clipboard operation
stealth copied to clipboard

An open source Ruby framework for text and voice chatbots. 🤖

Results 51 stealth issues
Sort by recently updated
recently updated
newest added

create integration with instagram message api

Hi, Related to #83, I'd like to share how I write Stealth's integration test. Source code can be found here https://github.com/josephktcheung/stealth-integration-test. @luizcarvalho @mgomes please take a look and see if...

Hello everyone, I came across with a very weird behavior, when I setup the database in `database.yml` it can't connect, it just shows the error `could not obtain a database...

Is there any detailed instructions on how to set up the Twilio service for Stealth. I have added the `stealth-twilio` gem to my GemFile and ran `stealth setup twilio` but...

Given this code: ```ruby handle_message( [:yes, :maybe] => proc { step_to state: :proceed } :no => proc { step_to state: :goodbye } ) ``` Stealth could execute the first arm...

controllers

Hello guys, When user hits the max attempts in CatchAll controller, a [hard code time](https://github.com/hellostealth/stealth/blob/db6490aeb29104d1573f8cf26364591b6ce01ef4/lib/stealth/controller/catch_all.rb#L51) (15 minutes) is used for define time to he try again. Is it possible make...

Current we support `step_to session: some_session` and all its variants, however it is required that `some_session` be an instance of `Stealth::Session`. We should add an additional option called `slug` that...

In Rails 5.x+, if migrations are pending, an error is raised and error page is shown in development. Since we don't have an "error page" I was thinking we would...

help wanted