stealth 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +10 -1
- data/VERSION +1 -1
- data/lib/stealth/server.rb +0 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbcb817d91a6e7277d46550a8a872916501b1b8d3dfd748d42213e44dc1cfaf2
|
4
|
+
data.tar.gz: 67d9819ebfdecd34284e9cf4d5bf0d2e242771c9fe895969c807d4e88a964795
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 770b2ccb38d26d5925dc616d80f7868afef7b9dc4cb7b3e2a1458285b04a9821686c75b73fb3b6631449eab88645ad5f1b451158dfff9c7e357a037a1db20f66
|
7
|
+
data.tar.gz: 5bc15c12cd1c62d18356e5f51e9feb9f6832326cf03c7fb01d42b97d74987efdd40cb8e0c84d7148ed43749f8e2489dbd360d7f27272d410314b3e0f8bcfb911
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,10 +1,19 @@
|
|
1
1
|
# <a href='https://hellostealth.org'><img src='logo.svg' height='120' alt='Stealth Logo' aria-label='hellostealth.org' /></a>
|
2
2
|
|
3
|
-
Stealth is a Ruby based framework for creating
|
3
|
+
Stealth is a Ruby based framework for creating voice & text chatbots. It's design is inspired by Ruby on Rails's philosophy of convention over configuration. It has an MVC architecture with the slight caveat that `views` are aptly named `replies`.
|
4
4
|
|
5
5
|
[![Gem Version](https://badge.fury.io/rb/stealth.svg)](https://badge.fury.io/rb/stealth)
|
6
6
|
[![CircleCI](https://circleci.com/gh/hellostealth/stealth/tree/master.svg?style=shield)](https://circleci.com/gh/hellostealth/stealth/tree/master)
|
7
7
|
|
8
|
+
## Features
|
9
|
+
|
10
|
+
* Deploy anywhere, it's just a Rack app
|
11
|
+
* Variants allow you to use a single codebase on multiple messaging platforms
|
12
|
+
* Structured, universal reply format
|
13
|
+
* Sessions utilize a state-machine concept and are Redis backed
|
14
|
+
* Highly scalable. Incoming webhooks are processed via a Sidekiq queue
|
15
|
+
* Built-in best practices: catch-alls (error handling), hello flows, goodbye flows
|
16
|
+
|
8
17
|
## Getting Started
|
9
18
|
|
10
19
|
Getting started with Stealth is simple:
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.1
|
data/lib/stealth/server.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stealth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mauricio Gomes
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-12-
|
12
|
+
date: 2018-12-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sinatra
|