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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46e7d69fe97e8038b0d469ddb81a2ea77f53a258c9e6f5b06d18239e43ffdc69
4
- data.tar.gz: 60892bc1b66e89c53d2769013a4ef94c654ccb143da065700803a0d602652257
3
+ metadata.gz: cbcb817d91a6e7277d46550a8a872916501b1b8d3dfd748d42213e44dc1cfaf2
4
+ data.tar.gz: 67d9819ebfdecd34284e9cf4d5bf0d2e242771c9fe895969c807d4e88a964795
5
5
  SHA512:
6
- metadata.gz: b78f5bce44cf7a7305ce72790c321018f471e0f21a708ad0b08432aab2eda0e7588bcbe8447e4805bf124e466966db324c6852941d5173d2342bed4c97144819
7
- data.tar.gz: c999aaaf5ddc688482de45711f78a9d0392fdab2f42759c396f0114d0388aa61d2a9e9076f5d6d16d45e834e44969ff4212c606c29faf117d05163a9b61afaeb
6
+ metadata.gz: 770b2ccb38d26d5925dc616d80f7868afef7b9dc4cb7b3e2a1458285b04a9821686c75b73fb3b6631449eab88645ad5f1b451158dfff9c7e357a037a1db20f66
7
+ data.tar.gz: 5bc15c12cd1c62d18356e5f51e9feb9f6832326cf03c7fb01d42b97d74987efdd40cb8e0c84d7148ed43749f8e2489dbd360d7f27272d410314b3e0f8bcfb911
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # Changelog for Stealth v1.1.1
2
+
3
+ ## Bug Fixes
4
+
5
+ * [Server] Does not auto-return an HTTP 202. Leaves it up to the drivers again.
6
+
1
7
  # Changelog for Stealth v1.1.0
2
8
 
3
9
  ## Breaking Changes
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 conversational (voice & chat) bots. 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`.
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.0
1
+ 1.1.1
@@ -45,8 +45,6 @@ module Stealth
45
45
  )
46
46
 
47
47
  dispatcher.coordinate
48
-
49
- status 202
50
48
  end
51
49
 
52
50
  private
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.0
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-04 00:00:00.000000000 Z
12
+ date: 2018-12-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sinatra