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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6fba230d8df11a77a8a6d58fec72534f6826b8a80cec4b05485ad6284e804f98
4
- data.tar.gz: aa0f609ea22c05a929662ac20d45cb900ae4097ea8127d98c7d33deb5d8cb589
3
+ metadata.gz: b1d1a3dfbfb4e04d77e6cad466db31c57b4c9bb10e635d409c8941e3078e66b9
4
+ data.tar.gz: 136b7dcdca94b7378f12f9969fc2786547b751940b20bde83b8f69d8c24bc952
5
5
  SHA512:
6
- metadata.gz: 7d1449dd6e8a83af4868752a7c4a6dc638f0088ae950788b17af93f52a30e801b62f6bd3409e20d73ce3cf99bece4ca9a855c545f9702c33c17ad8fd5f28ecec
7
- data.tar.gz: 9aede2141487ad00d02acdcf06412f02489cf6de674d330924b0ce0379185bd8e8d6e81e08dea91f39f93d8ebcd81d568cb47f68c2ae1b698afde15a884c255b
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bot_platform (0.2.0)
4
+ bot_platform (0.2.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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
- # BotPlat form
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 with only a few steps while the bot's logic is the same. check the [supported bot channels](https://github.com/lifevar/bot-platform/blob/main/docs/channels.md#supported).
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(also as a channel) to accelerate the test and demo processes.
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
- We reference Microsoft's BotFramework now, but we'll change the platform to be better in furture.
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.com/bot-platform/CHANGELOG.md"
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
@@ -1,7 +1,13 @@
1
1
  ## Current Supported Channels
2
2
 
3
+ ### Pahse 1 (developing)
3
4
  - Console
5
+ - Line Works
6
+
7
+ ### Phase 2 (Oct. 2021)
4
8
  - Web
5
9
  - Slack
6
10
  - Teams
7
- - Line Works
11
+ - Line
12
+ - WeChat
13
+ - ChatWork
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BotPlatform
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
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.0
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.com/bot-platform/CHANGELOG.md
92
+ changelog_uri: https://github.com/lifevar/bot-platform/CHANGELOG.md
93
93
  post_install_message:
94
94
  rdoc_options: []
95
95
  require_paths: