stealth-aws-comprehend 0.9.2 → 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b0f868d7846dd9a3fbbd235990f4f832539d3e5e5f1cdb309555b0761dfd066
4
- data.tar.gz: 3c61b01412d638d22ae2ceaefb6475428382ac0aefe3fdbbbc257ba16a17ebe1
3
+ metadata.gz: 73fc38437744d186ede7469c81217454d378a125629cf23265f2642b2a1e0f85
4
+ data.tar.gz: 04456a8ac5c693b617a9720b8edb3d2ff77e75358369711a175d2e86c8c26a2a
5
5
  SHA512:
6
- metadata.gz: '09482f6a9014e4cbf0b70bf12b07c32d42da0216f5e25442fc969685430f577329588ff63e87a1c9519e487e63dafc8fd3c88c9b42bc15b78dd8d59c652d153c'
7
- data.tar.gz: 056a88186df269dbb3c97acd8cd019fd50e20f941ca66b6b65e263264effbbc4e35b0e6cd51bcda00ae8e82bef07ad4ed9005d84844f8299b807016685593169
6
+ metadata.gz: d2fa6cf19b886889b29d4895c723ce046c9cb2e5fc2cd753988ac7d7609ec30e29f0ac435c31a8e735605945577a98a9c8e83d801675d41301f72c38775511a5
7
+ data.tar.gz: a176bc4a58122241976bff3920a56dd74a1bc1baf92e7116c9cde7223b2b9dfedacf8a36a36826971a9b758db22cad4f4b2de1751580da4d8b1ddbe964fb08b7
data/Gemfile CHANGED
@@ -1,4 +1,3 @@
1
1
  gemspec
2
2
 
3
3
  source 'https://rubygems.org'
4
- ruby '2.5.1'
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stealth-aws-comprehend (0.9.1)
4
+ stealth-aws-comprehend (0.9.3)
5
5
  aws-sdk-comprehend (~> 1.0)
6
6
  stealth (< 2.0)
7
7
 
@@ -34,29 +34,29 @@ GEM
34
34
  tzinfo (~> 1.1)
35
35
  arel (9.0.0)
36
36
  aws-eventstream (1.0.1)
37
- aws-partitions (1.105.0)
38
- aws-sdk-comprehend (1.6.0)
37
+ aws-partitions (1.107.0)
38
+ aws-sdk-comprehend (1.8.0)
39
39
  aws-sdk-core (~> 3, >= 3.26.0)
40
40
  aws-sigv4 (~> 1.0)
41
- aws-sdk-core (3.30.0)
41
+ aws-sdk-core (3.36.0)
42
42
  aws-eventstream (~> 1.0)
43
43
  aws-partitions (~> 1.0)
44
44
  aws-sigv4 (~> 1.0)
45
45
  jmespath (~> 1.0)
46
46
  aws-sigv4 (1.0.3)
47
47
  builder (3.2.3)
48
- concurrent-ruby (1.0.5)
48
+ concurrent-ruby (1.1.2)
49
49
  connection_pool (2.2.2)
50
50
  crass (1.0.4)
51
51
  diff-lcs (1.3)
52
52
  erubi (1.7.1)
53
- i18n (1.1.0)
53
+ i18n (1.1.1)
54
54
  concurrent-ruby (~> 1.0)
55
55
  jmespath (1.4.0)
56
- loofah (2.2.2)
56
+ loofah (2.2.3)
57
57
  crass (~> 1.0.2)
58
58
  nokogiri (>= 1.5.9)
59
- method_source (0.9.0)
59
+ method_source (0.9.1)
60
60
  mini_portile2 (2.3.0)
61
61
  minitest (5.11.3)
62
62
  multi_json (1.13.1)
@@ -64,7 +64,7 @@ GEM
64
64
  nokogiri (1.8.5)
65
65
  mini_portile2 (~> 2.3.0)
66
66
  puma (3.12.0)
67
- rack (2.0.5)
67
+ rack (2.0.6)
68
68
  rack-protection (2.0.4)
69
69
  rack
70
70
  rack-test (1.1.0)
@@ -81,7 +81,7 @@ GEM
81
81
  rake (>= 0.8.7)
82
82
  thor (>= 0.19.0, < 2.0)
83
83
  rake (12.3.1)
84
- redis (4.0.2)
84
+ redis (4.0.3)
85
85
  rspec (3.8.0)
86
86
  rspec-core (~> 3.8.0)
87
87
  rspec-expectations (~> 3.8.0)
@@ -126,8 +126,5 @@ DEPENDENCIES
126
126
  rspec (= 3.8.0)
127
127
  stealth-aws-comprehend!
128
128
 
129
- RUBY VERSION
130
- ruby 2.5.1p57
131
-
132
129
  BUNDLED WITH
133
- 1.16.1
130
+ 1.16.3
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  This gem provides NLP via the [AWS Comprehend](https://aws.amazon.com/comprehend/) service. It integrates with the [Stealth](https://github.com/hellostealth/stealth) Controller to provide NLP against `current_message`.
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/stealth-aws-comprehend.svg)](https://badge.fury.io/rb/stealth-aws-comprehend)
6
+
5
7
  ## Setup
6
8
 
7
9
  To use AWS Comprehend, set the `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables to your AWS account credentials. You may also want to optionally set your preferred AWS region by setting the environment variable `AWS_REGION`. That's the only setup required!
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'stealth-aws-comprehend'
3
- s.version = '0.9.2'
3
+ s.version = '0.9.3'
4
4
  s.summary = "Stealth AWS Comprehend"
5
5
  s.description = "Built-in NLP for Stealth bots via AWS Comprehend."
6
6
  s.authors = ["Mauricio Gomes"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stealth-aws-comprehend
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mauricio Gomes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-15 00:00:00.000000000 Z
11
+ date: 2018-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: stealth
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  version: '0'
89
89
  requirements: []
90
90
  rubyforge_project:
91
- rubygems_version: 2.7.6
91
+ rubygems_version: 2.7.7
92
92
  signing_key:
93
93
  specification_version: 4
94
94
  summary: Stealth AWS Comprehend