bot_platform 0.2.0 → 0.2.1
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/CHANGELOG.md +20 -0
- data/Gemfile.lock +1 -1
- data/README.md +9 -7
- data/bot_platform.gemspec +1 -1
- data/docs/channels.md +7 -1
- data/lib/bot_platform/version.rb +1 -1
- 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: b1d1a3dfbfb4e04d77e6cad466db31c57b4c9bb10e635d409c8941e3078e66b9
|
4
|
+
data.tar.gz: 136b7dcdca94b7378f12f9969fc2786547b751940b20bde83b8f69d8c24bc952
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cafcd63662f7b2b999c34be7cd4cb5764892b97d264d437fb0f1738bb42157278089537cc3fd97d0bd6e5f1de40d287c39e4c7c069c842165d99cbb07fda718f
|
7
|
+
data.tar.gz: ec9ad543b885dda685de3fe2219f7b4726f23cd5a7c8c30a3eac54e02d35b1522a5e7163adee6ec5ba2b2c1447e90bf83f1d859f6f750be60c4639507afc8ddd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
|
1
8
|
## [Unreleased]
|
2
9
|
|
10
|
+
## [0.2.1] - 2021-09-06
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
- CHANGELOG.md
|
14
|
+
|
15
|
+
## [0.2.0] - 2021-09-06
|
16
|
+
|
17
|
+
### Added
|
18
|
+
- CLI support
|
19
|
+
- Dialog support
|
20
|
+
- Echo bot sample
|
21
|
+
- Request name dialog sample
|
22
|
+
|
3
23
|
## [0.1.0] - 2021-09-05
|
4
24
|
|
5
25
|
- Initial release
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,15 +1,16 @@
|
|
1
1
|
##
|
2
|
-
This Project is still underconstruction
|
2
|
+
*This Project is still underconstruction.*
|
3
3
|
|
4
|
-
#
|
4
|
+
# Bot Platform (Ruby Version)
|
5
5
|
|
6
|
-
A ruby based Bot platform to let developers to focus on bot's business logic. You can connect your bot to channels such as slack, teams, lineworks, chatwork and etc
|
6
|
+
A ruby based Bot platform to let developers to focus on bot's business logic ONLY. You can connect your bot to channels such as slack, teams, lineworks, chatwork and etc within only a few steps of settings(without coding) to use the same bot's logic. check the [supported bot channels](https://github.com/lifevar/bot-platform/blob/main/docs/channels.md#supported).
|
7
7
|
|
8
|
-
We also provide CLI(
|
8
|
+
We also provide CLI(Command Line Interface) to accelerate the testing and demo processes.
|
9
9
|
|
10
10
|
You can use DemoKit(underconstruction) to support your bot conversations to customers.
|
11
11
|
|
12
|
-
|
12
|
+
|
13
|
+
We reference Microsoft's BotFramework now(great thanking to MS), but we'll change the platform to be more different and better in the furture. The big difference between this project and BotFramework is that you need not binding the bot to Azure or sth. else specified platform.
|
13
14
|
|
14
15
|
|
15
16
|
## Installation
|
@@ -30,11 +31,12 @@ Or install it yourself as:
|
|
30
31
|
|
31
32
|
## Usage
|
32
33
|
|
33
|
-
bin/cli samples/echo.rb
|
34
|
+
$ bin/cli samples/echo.rb
|
35
|
+
|
34
36
|
|
35
37
|
or
|
36
38
|
|
37
|
-
bin/cli samples/dialogs/dialog_simple.rb
|
39
|
+
$ bin/cli samples/dialogs/dialog_simple.rb
|
38
40
|
|
39
41
|
## Development
|
40
42
|
|
data/bot_platform.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
17
17
|
|
18
18
|
spec.metadata["homepage_uri"] = spec.homepage
|
19
19
|
spec.metadata["source_code_uri"] = "https://github.com/lifevar/bot-platform"
|
20
|
-
spec.metadata["changelog_uri"] = "https://github.com/lifevar
|
20
|
+
spec.metadata["changelog_uri"] = "https://github.com/lifevar/bot-platform/CHANGELOG.md"
|
21
21
|
|
22
22
|
# Specify which files should be added to the gem when it is released.
|
23
23
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
data/docs/channels.md
CHANGED
data/lib/bot_platform/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bot_platform
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ningfeng Yang
|
@@ -89,7 +89,7 @@ licenses: []
|
|
89
89
|
metadata:
|
90
90
|
homepage_uri: https://github.com/lifevar/bot-platform
|
91
91
|
source_code_uri: https://github.com/lifevar/bot-platform
|
92
|
-
changelog_uri: https://github.com/lifevar
|
92
|
+
changelog_uri: https://github.com/lifevar/bot-platform/CHANGELOG.md
|
93
93
|
post_install_message:
|
94
94
|
rdoc_options: []
|
95
95
|
require_paths:
|