bibo 0.2.0 → 0.3.0

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
  SHA1:
3
- metadata.gz: 5d6ac7c590b53089f7ba6282b76de69d3c7e715f
4
- data.tar.gz: e9fa4818938fb4fa0852d39bb6570106484e8491
3
+ metadata.gz: 21f16ad0372c52024fc8f4c323b8d82230c7356f
4
+ data.tar.gz: 016f70062fd0d0fdad7f17f4d906b40e25509844
5
5
  SHA512:
6
- metadata.gz: 639f8164a3eec1e39d4e944df0e2aef16ff1654ef208bd4570373a8c4247266b6b6e121112836a2878d72a62d3ab284c81d5993c2b7da691bda298a975623d4a
7
- data.tar.gz: 9d3af3797e862948779a4f3bcd00d3133e3fe40ef814c04a2d2970606c8ecfc3ffe7c7c5694150aa79d15444b4899c45d779b09cded37e523c2f7c3687d833b3
6
+ metadata.gz: 2c71359c8321678db47d3ee76de421626a095d299191936b9d7b43caaec392c79d7ece1dc0642fd91d2e7c18f9acd92241384fb92fb3d33e01672481f17b2599
7
+ data.tar.gz: 7a6383a5ecfeedab2bdc40ef64b9e85187c8629f2d718cca544d9808cb9c053f8316729dc3eda189763e2e57eebce54b94947e78e0090cedc9cb0d3364fcebc8
data/Gemfile.lock CHANGED
@@ -1,18 +1,32 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bibo (0.1.0)
4
+ bibo (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  ast (2.3.0)
10
+ diff-lcs (1.3)
10
11
  parallel (1.12.1)
11
12
  parser (2.4.0.2)
12
13
  ast (~> 2.3)
13
14
  powerpack (0.1.1)
14
15
  rainbow (3.0.0)
15
16
  rake (10.5.0)
17
+ rspec (3.7.0)
18
+ rspec-core (~> 3.7.0)
19
+ rspec-expectations (~> 3.7.0)
20
+ rspec-mocks (~> 3.7.0)
21
+ rspec-core (3.7.1)
22
+ rspec-support (~> 3.7.0)
23
+ rspec-expectations (3.7.0)
24
+ diff-lcs (>= 1.2.0, < 2.0)
25
+ rspec-support (~> 3.7.0)
26
+ rspec-mocks (3.7.0)
27
+ diff-lcs (>= 1.2.0, < 2.0)
28
+ rspec-support (~> 3.7.0)
29
+ rspec-support (3.7.0)
16
30
  rubocop (0.52.1)
17
31
  parallel (~> 1.10)
18
32
  parser (>= 2.4.0.2, < 3.0)
@@ -30,6 +44,7 @@ DEPENDENCIES
30
44
  bibo!
31
45
  bundler (~> 1.16)
32
46
  rake (~> 10.0)
47
+ rspec (~> 3.7)
33
48
  rubocop (~> 0.52.1)
34
49
 
35
50
  BUNDLED WITH
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  # Bibo
2
+ [![Gem Version](https://badge.fury.io/rb/bibo.svg)](https://badge.fury.io/rb/bibo) [![CI](https://travis-ci.org/haanhduclinh/bibo.svg?branch=master)](https://travis-ci.org/haanhduclinh/bibo)
2
3
 
3
4
  Welcome to Bibo. This gem purpose matching response for chatbot from text file.
4
5
 
data/bibo.gemspec CHANGED
@@ -26,5 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.add_development_dependency "bundler", "~> 1.16"
27
27
  spec.add_development_dependency "rake", "~> 10.0"
28
28
  spec.add_development_dependency "rubocop", "~> 0.52.1"
29
+ spec.add_development_dependency "rspec", "~> 3.7"
30
+
29
31
  spec.required_ruby_version = '>= 2.1'
30
32
  end
data/lib/bibo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Bibo
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bibo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - HuanNV
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2018-01-02 00:00:00.000000000 Z
12
+ date: 2018-01-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -53,6 +53,20 @@ dependencies:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
55
  version: 0.52.1
56
+ - !ruby/object:Gem::Dependency
57
+ name: rspec
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '3.7'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '3.7'
56
70
  description: Input your data to create amazing talk
57
71
  email:
58
72
  - huanvan.uet@gmail.com
@@ -98,3 +112,4 @@ signing_key:
98
112
  specification_version: 4
99
113
  summary: Random responses from available data
100
114
  test_files: []
115
+ has_rdoc: