nlu_adapter 0.1.1 → 0.1.2

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: 87e9296aec7759999ae9054e1779e86c7d898d5e9e023b898850573375dfa94a
4
- data.tar.gz: 9d8ec87471a9c9bbefd642397f1c0b70bd9fc8d79e13933a54365f936b595357
3
+ metadata.gz: 4833a2510ae848ce4e45ece07476dc4d0a6601b8f9ca951dc1c3e08e723f0d08
4
+ data.tar.gz: 3d6f981287bc3c2aaece9044404b1095a4f09784c6bf4370112d494aec4c40c3
5
5
  SHA512:
6
- metadata.gz: c3de33ce91f4a2459b840412ef606fa0b1bf1356c55b43b1f58c66ec51a303ed8deac5bb7b19602185b296681eb545717bc90f618b9cbb39c0b245414eef3d50
7
- data.tar.gz: 18931d79ebbf6edbab6c4ae223f42688e4deb701edc0b3db75d2a2b4e6cf26fcee8961cf30feb7765d34306a3d8b4a17ea958b04ed065d15e525545f50270ae0
6
+ metadata.gz: 86a985870ee3db4355df44ec4e7b13a8572585aa8af646774229b0a3771353b0c996de5efbec75b44e599dd97276ee7cb1a8c7903ec2832c1f802489451502ca
7
+ data.tar.gz: d7ff110b0c12613882648e666bf3147fe935657ba42fa313c67a207f33f290070758b699a5a5b6c7020dc436683902c0ebc1e7bd434b892beed7c37d25ffdc37
@@ -1,3 +1,11 @@
1
+ 0.1.2 (31/Dec/2018)
2
+ ---
3
+ * fixed lib path error
4
+
5
+ 0.1.1 (27/Dec/2018)
6
+ ---
7
+ * Updated documenation
8
+
1
9
  0.1.0 (27/Dec/2018)
2
10
  ---
3
11
  * Initial release
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nlu_adapter (0.1.1)
4
+ nlu_adapter (0.1.2)
5
5
  aws-sdk-lex (= 1.9)
6
6
  aws-sdk-lexmodelbuildingservice (= 1.12)
7
7
  google-cloud-dialogflow (= 0.2.3)
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Girish Nair
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # NluAdapter
2
2
  An adapter to various NLU web services
3
3
 
4
+ [![Gem Version](https://badge.fury.io/rb/nlu_adapter.svg)](https://badge.fury.io/rb/nlu_adapter)
5
+
4
6
  ## Installation
5
7
 
6
8
  Add this line to your application's Gemfile:
@@ -41,4 +43,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
41
43
 
42
44
  ## Code of Conduct
43
45
 
44
- Everyone interacting in the NluAdapter project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/technopreneurG/nlu_adapter/blob/master/CODE_OF_CONDUCT.md).
46
+ Everyone interacting in the NluAdapter project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/technopreneurG/nlu_adapter_ruby/blob/master/CODE_OF_CONDUCT.md).
@@ -1,11 +1,11 @@
1
1
  require "nlu_adapter/version"
2
2
 
3
3
  module NluAdapter
4
- autoload :NluAdapterIntent, './lib/nlu_adapter/intent'
5
- autoload :NluAdapterIntentCollection, './lib/nlu_adapter/intent_collection'
4
+ autoload :NluAdapterIntent, 'nlu_adapter/intent'
5
+ autoload :NluAdapterIntentCollection, 'nlu_adapter/intent_collection'
6
6
  module Adapters
7
- autoload :Lex, './lib/nlu_adapter/lex'
8
- autoload :Dialogflow, './lib/nlu_adapter/dialogflow'
7
+ autoload :Lex, 'nlu_adapter/lex'
8
+ autoload :Dialogflow, 'nlu_adapter/dialogflow'
9
9
  end
10
10
 
11
11
  def self.new(name, options = {})
@@ -1,3 +1,3 @@
1
1
  module NluAdapter
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nlu_adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Girish
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-12-27 00:00:00.000000000 Z
11
+ date: 2018-12-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -108,6 +108,7 @@ files:
108
108
  - Dockerfile
109
109
  - Gemfile
110
110
  - Gemfile.lock
111
+ - LICENSE
111
112
  - README.md
112
113
  - Rakefile
113
114
  - bin/console