bot_platform 0.2.2 → 0.2.3

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: 926dd47daebc1b2bceee83bcdbd4d4ae99788dd60bc0f40c69a943b19a5fc6cd
4
- data.tar.gz: c9816481304d99c2c4ab70a1b8f23f064726e6336786115060f64ac69596b44f
3
+ metadata.gz: d96e8445f9a9c0076abb76466b1d303585f1c013604c04cce1455a5d008eeabd
4
+ data.tar.gz: 755fb77055dd2f6a325ece4f24b4e9892f9500b947586f16c81c8cc22139bc94
5
5
  SHA512:
6
- metadata.gz: 0a91f869a675cfa861175000a7299674e5965cd163efbec0b37e43d493ee2722228d351905c39d0227f3c08a67936c742046194e9228b40b66d71e9b7035632d
7
- data.tar.gz: 0cded64f8cb9b76f0a66f31e3bb3a78bd7796e32a447e7f4de5643b7a48b82e1e068d5d42dfe28c39f0d0dd35c961badb08f7ea32e72f08b99f8ad98b5a8af17
6
+ metadata.gz: 85b765ba89d4e1b353d9b69619672cf9f9438d6ac035013beb6446b9cd23cab91d1e7cff70f320ef9f2b216c0a11bc20a0d989022d74323d88c3f5e47ac66306
7
+ data.tar.gz: 54ab28dbb708871b12ce01db343e3c42bf7a458d1f0b8c5a7cd629a138ae1da79eb2574aae2db5934492a9579f3ec470ceaf04dd86734d264a1359264f5ff03c
data/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.2-0.2.3] - 2021-09-06
11
+
12
+ ### Added
13
+ - MIT license
14
+
10
15
  ## [0.2.1] - 2021-09-06
11
16
 
12
17
  ### Fixed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bot_platform (0.2.2)
4
+ bot_platform (0.2.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/bot_platform.gemspec CHANGED
@@ -5,11 +5,12 @@ require_relative "lib/bot_platform/version"
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "bot_platform"
7
7
  spec.version = BotPlatform::VERSION
8
+ spec.licenses = ['MIT']
8
9
  spec.authors = ["Ningfeng Yang"]
9
10
  spec.email = ["nf.yang@lifevar.com"]
10
11
 
11
12
  spec.summary = "A ruby-based bot platform"
12
- spec.description = "simply write bot codes"
13
+ spec.description = "One bot, multiple channels supported"
13
14
  spec.homepage = "https://github.com/lifevar/bot-platform"
14
15
  spec.required_ruby_version = ">= 3.0.2"
15
16
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BotPlatform
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.3"
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.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ningfeng Yang
@@ -10,7 +10,7 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2021-09-05 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: simply write bot codes
13
+ description: One bot, multiple channels supported
14
14
  email:
15
15
  - nf.yang@lifevar.com
16
16
  executables:
@@ -85,7 +85,8 @@ files:
85
85
  - samples/dialogs/dialog_simple.rb
86
86
  - samples/echo.rb
87
87
  homepage: https://github.com/lifevar/bot-platform
88
- licenses: []
88
+ licenses:
89
+ - MIT
89
90
  metadata:
90
91
  homepage_uri: https://github.com/lifevar/bot-platform
91
92
  source_code_uri: https://github.com/lifevar/bot-platform