wordhop 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af96cecf1ffde299d7e6fe0707f081b097007105
|
4
|
+
data.tar.gz: 1ec319673b789faa7faa5d97577d616df3fe1553
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 288aac394bba77997c9c7a505de576e92d7daa9501afeca3052f65c385ac26ee2c60162dbe1068a7d3cd56c4e3e1a85088cb5f49e3764203260ee5a3aaf8f0c0
|
7
|
+
data.tar.gz: 0a69a009d075748694aaad6d578d653c55b3753d069425f29a20e50e7f038752d4883104544479259fff59c8f2e005376cbe155ebf613b24b8202c97a9a4097c
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# [Wordhop](https://www.wordhop.io) - Monitor and Optimize Your Conversational Experience
|
2
|
-
## For Chatbots Built in
|
2
|
+
## For Chatbots Built in Ruby
|
3
3
|
|
4
|
-
With Wordhop you can sync up your
|
4
|
+
With Wordhop you can sync up your Ruby-based Chatbot to Slack, so you can retain your users without ever leaving Slack. Wordhop monitors your Chatbot for friction in your conversational experience and alerts you on Slack in real-time. Simply add Wordhop to Slack and then drop in a couple of lines of code into your Chatbot. Wordhop integrates in minutes, not days, and begins working immediately. From Slack, you can pause and take over your bot, then hand the conversation back to your bot. Actionable analytics also show you and your Slack team where you can optimize your conversational experience and measure results.
|
5
5
|
|
6
6
|
### What you can do with Wordhop:
|
7
7
|
* [See Key Features](https://developer.wordhop.io)
|
@@ -15,7 +15,7 @@ With Wordhop you can sync up your Python-based Chatbot to Slack, so you can reta
|
|
15
15
|
### Installation
|
16
16
|
|
17
17
|
```bash
|
18
|
-
$ gem install
|
18
|
+
$ gem install wordhop
|
19
19
|
```
|
20
20
|
|
21
21
|
|
@@ -40,7 +40,7 @@ When Messenger calls your receiving webhook, you'll need to log the data with Wo
|
|
40
40
|
__Note__: Wordhop can pause your bot so that it doesn't auto response while a human has taken over. The server response from your `hopIn` request will pass the `paused` state. Use that to stop your bot from responding to an incoming message. Here is an example:
|
41
41
|
|
42
42
|
```ruby
|
43
|
-
|
43
|
+
hopInResponse = Wordhop.hopIn(message.messaging)
|
44
44
|
if hopInResponse['paused'] != true
|
45
45
|
# proceed to process incoming message
|
46
46
|
...
|
@@ -92,6 +92,7 @@ if text == 'help'
|
|
92
92
|
# send a Wordhop alert to your slack channel
|
93
93
|
# that the user could use assistance
|
94
94
|
Wordhop.assistanceRequested(message.messaging)
|
95
|
+
...
|
95
96
|
```
|
96
97
|
|
97
98
|
Go back to Slack and wait for alerts. That's it!
|