cloudmersive-nlp-api-client 1.2.9 → 2.0.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 +4 -4
- data/README.md +38 -35
- data/cloudmersive-nlp-api-client.gemspec +3 -3
- data/docs/CheckSentenceRequest.md +8 -0
- data/docs/CheckSentenceResponse.md +9 -0
- data/docs/CheckWordRequest.md +8 -0
- data/docs/{CorrectJsonResponse.md → CheckWordResponse.md} +1 -1
- data/docs/{CorrectWordInSentenceJsonResponse.md → CorrectWordInSentence.md} +1 -1
- data/docs/Entity.md +9 -0
- data/docs/{ExtractEntitiesStringApi.md → ExtractEntitiesApi.md} +10 -10
- data/docs/ExtractEntitiesRequest.md +8 -0
- data/docs/ExtractEntitiesResponse.md +9 -0
- data/docs/GetWordsRequest.md +8 -0
- data/docs/{GetWordsJsonResponse.md → GetWordsResponse.md} +1 -1
- data/docs/LanguageDetectionApi.md +7 -7
- data/docs/LanguageDetectionRequest.md +8 -0
- data/docs/{ParseStringApi.md → ParseApi.md} +10 -10
- data/docs/ParseRequest.md +8 -0
- data/docs/ParseResponse.md +8 -0
- data/docs/{SpellCheckApi.md → PosTaggerApi.md} +73 -73
- data/docs/SegmentationApi.md +118 -0
- data/docs/SentenceSegmentationRequest.md +8 -0
- data/docs/SentenceSegmentationResponse.md +10 -0
- data/docs/SpellcheckApi.md +118 -0
- data/lib/cloudmersive-nlp-api-client.rb +23 -15
- data/lib/cloudmersive-nlp-api-client/api/{extract_entities_string_api.rb → extract_entities_api.rb} +14 -14
- data/lib/cloudmersive-nlp-api-client/api/language_detection_api.rb +15 -15
- data/lib/cloudmersive-nlp-api-client/api/{parse_string_api.rb → parse_api.rb} +14 -14
- data/lib/cloudmersive-nlp-api-client/api/pos_tagger_api.rb +353 -0
- data/lib/cloudmersive-nlp-api-client/api/segmentation_api.rb +133 -0
- data/lib/cloudmersive-nlp-api-client/api/spellcheck_api.rb +133 -0
- data/lib/cloudmersive-nlp-api-client/api_client.rb +3 -3
- data/lib/cloudmersive-nlp-api-client/api_error.rb +3 -3
- data/lib/cloudmersive-nlp-api-client/configuration.rb +3 -3
- data/lib/cloudmersive-nlp-api-client/models/check_sentence_request.rb +189 -0
- data/lib/cloudmersive-nlp-api-client/models/{check_sentence_json_response.rb → check_sentence_response.rb} +5 -5
- data/lib/cloudmersive-nlp-api-client/models/{check_json_response.rb → check_word_request.rb} +12 -13
- data/lib/cloudmersive-nlp-api-client/models/{correct_json_response.rb → check_word_response.rb} +4 -4
- data/lib/cloudmersive-nlp-api-client/models/{correct_word_in_sentence_json_response.rb → correct_word_in_sentence.rb} +4 -4
- data/lib/cloudmersive-nlp-api-client/models/entity.rb +197 -0
- data/lib/cloudmersive-nlp-api-client/models/extract_entities_request.rb +189 -0
- data/lib/cloudmersive-nlp-api-client/models/extract_entities_response.rb +200 -0
- data/lib/cloudmersive-nlp-api-client/models/get_words_request.rb +188 -0
- data/lib/cloudmersive-nlp-api-client/models/{get_words_json_response.rb → get_words_response.rb} +4 -4
- data/lib/cloudmersive-nlp-api-client/models/language_detection_request.rb +189 -0
- data/lib/cloudmersive-nlp-api-client/models/language_detection_response.rb +3 -3
- data/lib/cloudmersive-nlp-api-client/models/parse_request.rb +189 -0
- data/lib/cloudmersive-nlp-api-client/models/parse_response.rb +189 -0
- data/lib/cloudmersive-nlp-api-client/models/pos_request.rb +3 -3
- data/lib/cloudmersive-nlp-api-client/models/pos_response.rb +3 -3
- data/lib/cloudmersive-nlp-api-client/models/pos_sentence.rb +3 -3
- data/lib/cloudmersive-nlp-api-client/models/pos_tagged_word.rb +3 -3
- data/lib/cloudmersive-nlp-api-client/models/sentence_segmentation_request.rb +188 -0
- data/lib/cloudmersive-nlp-api-client/models/sentence_segmentation_response.rb +208 -0
- data/lib/cloudmersive-nlp-api-client/models/word_position.rb +3 -3
- data/lib/cloudmersive-nlp-api-client/version.rb +4 -4
- data/spec/api/{extract_entities_string_api_spec.rb → extract_entities_api_spec.rb} +12 -12
- data/spec/api/language_detection_api_spec.rb +6 -6
- data/spec/api/{parse_string_api_spec.rb → parse_api_spec.rb} +12 -12
- data/spec/api/pos_tagger_api_spec.rb +107 -0
- data/spec/api/segmentation_api_spec.rb +59 -0
- data/spec/api/spellcheck_api_spec.rb +59 -0
- data/spec/api_client_spec.rb +3 -3
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/check_sentence_request_spec.rb +42 -0
- data/spec/models/{check_sentence_json_response_spec.rb → check_sentence_response_spec.rb} +9 -9
- data/spec/models/{check_json_response_spec.rb → check_word_request_spec.rb} +10 -10
- data/spec/models/{correct_json_response_spec.rb → check_word_response_spec.rb} +9 -9
- data/spec/models/{correct_word_in_sentence_json_response_spec.rb → correct_word_in_sentence_spec.rb} +9 -9
- data/spec/models/entity_spec.rb +48 -0
- data/spec/models/extract_entities_request_spec.rb +42 -0
- data/spec/models/extract_entities_response_spec.rb +48 -0
- data/spec/models/get_words_request_spec.rb +42 -0
- data/spec/models/{get_words_json_response_spec.rb → get_words_response_spec.rb} +9 -9
- data/spec/models/language_detection_request_spec.rb +42 -0
- data/spec/models/language_detection_response_spec.rb +3 -3
- data/spec/models/parse_request_spec.rb +42 -0
- data/spec/models/parse_response_spec.rb +42 -0
- data/spec/models/pos_request_spec.rb +3 -3
- data/spec/models/pos_response_spec.rb +3 -3
- data/spec/models/pos_sentence_spec.rb +3 -3
- data/spec/models/pos_tagged_word_spec.rb +3 -3
- data/spec/models/sentence_segmentation_request_spec.rb +42 -0
- data/spec/models/sentence_segmentation_response_spec.rb +54 -0
- data/spec/models/word_position_spec.rb +3 -3
- data/spec/spec_helper.rb +3 -3
- metadata +75 -52
- data/docs/CheckJsonResponse.md +0 -8
- data/docs/CheckSentenceJsonResponse.md +0 -9
- data/docs/PosTaggerJsonApi.md +0 -63
- data/docs/PosTaggerStringApi.md +0 -63
- data/docs/SentencesApi.md +0 -63
- data/docs/WordsApi.md +0 -448
- data/lib/cloudmersive-nlp-api-client/api/pos_tagger_json_api.rb +0 -78
- data/lib/cloudmersive-nlp-api-client/api/pos_tagger_string_api.rb +0 -78
- data/lib/cloudmersive-nlp-api-client/api/sentences_api.rb +0 -78
- data/lib/cloudmersive-nlp-api-client/api/spell_check_api.rb +0 -353
- data/lib/cloudmersive-nlp-api-client/api/words_api.rb +0 -463
- data/spec/api/pos_tagger_json_api_spec.rb +0 -47
- data/spec/api/pos_tagger_string_api_spec.rb +0 -47
- data/spec/api/sentences_api_spec.rb +0 -47
- data/spec/api/spell_check_api_spec.rb +0 -107
- data/spec/api/words_api_spec.rb +0 -131
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#nlpapiv2
|
|
3
3
|
|
|
4
|
-
#The powerful Natural Language Processing APIs let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
5
|
|
|
6
6
|
OpenAPI spec version: v1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version:
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#nlpapiv2
|
|
3
|
+
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: v1
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for CloudmersiveNlpApiClient::ParseRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'ParseRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveNlpApiClient::ParseRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of ParseRequest' do
|
|
31
|
+
it 'should create an instance of ParseRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveNlpApiClient::ParseRequest)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "input_string"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
42
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#nlpapiv2
|
|
3
|
+
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: v1
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for CloudmersiveNlpApiClient::ParseResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'ParseResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveNlpApiClient::ParseResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of ParseResponse' do
|
|
31
|
+
it 'should create an instance of ParseResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveNlpApiClient::ParseResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "parse_tree"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
42
|
+
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#nlpapiv2
|
|
3
3
|
|
|
4
|
-
#The powerful Natural Language Processing APIs let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
5
|
|
|
6
6
|
OpenAPI spec version: v1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version:
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#nlpapiv2
|
|
3
3
|
|
|
4
|
-
#The powerful Natural Language Processing APIs let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
5
|
|
|
6
6
|
OpenAPI spec version: v1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version:
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#nlpapiv2
|
|
3
3
|
|
|
4
|
-
#The powerful Natural Language Processing APIs let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
5
|
|
|
6
6
|
OpenAPI spec version: v1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version:
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#nlpapiv2
|
|
3
3
|
|
|
4
|
-
#The powerful Natural Language Processing APIs let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
5
|
|
|
6
6
|
OpenAPI spec version: v1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version:
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#nlpapiv2
|
|
3
|
+
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: v1
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for CloudmersiveNlpApiClient::SentenceSegmentationRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'SentenceSegmentationRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveNlpApiClient::SentenceSegmentationRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of SentenceSegmentationRequest' do
|
|
31
|
+
it 'should create an instance of SentenceSegmentationRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveNlpApiClient::SentenceSegmentationRequest)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "input_string"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
42
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#nlpapiv2
|
|
3
|
+
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: v1
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for CloudmersiveNlpApiClient::SentenceSegmentationResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'SentenceSegmentationResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveNlpApiClient::SentenceSegmentationResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of SentenceSegmentationResponse' do
|
|
31
|
+
it 'should create an instance of SentenceSegmentationResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveNlpApiClient::SentenceSegmentationResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "successful"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "sentences"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
describe 'test attribute "sentence_count"' do
|
|
48
|
+
it 'should work' do
|
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
end
|
|
54
|
+
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#nlpapiv2
|
|
3
3
|
|
|
4
|
-
#The powerful Natural Language Processing APIs let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
5
|
|
|
6
6
|
OpenAPI spec version: v1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version:
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#
|
|
2
|
+
#nlpapiv2
|
|
3
3
|
|
|
4
|
-
#The powerful Natural Language Processing APIs let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
4
|
+
#The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text.
|
|
5
5
|
|
|
6
6
|
OpenAPI spec version: v1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version:
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloudmersive-nlp-api-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cloudmersive
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-12-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -34,42 +34,42 @@ dependencies:
|
|
|
34
34
|
name: json
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - "~>"
|
|
38
|
-
- !ruby/object:Gem::Version
|
|
39
|
-
version: '2.1'
|
|
40
37
|
- - ">="
|
|
41
38
|
- !ruby/object:Gem::Version
|
|
42
39
|
version: 2.1.0
|
|
40
|
+
- - "~>"
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '2.1'
|
|
43
43
|
type: :runtime
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
|
-
- - "~>"
|
|
48
|
-
- !ruby/object:Gem::Version
|
|
49
|
-
version: '2.1'
|
|
50
47
|
- - ">="
|
|
51
48
|
- !ruby/object:Gem::Version
|
|
52
49
|
version: 2.1.0
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '2.1'
|
|
53
53
|
- !ruby/object:Gem::Dependency
|
|
54
54
|
name: rspec
|
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
|
56
56
|
requirements:
|
|
57
|
-
- - "~>"
|
|
58
|
-
- !ruby/object:Gem::Version
|
|
59
|
-
version: '3.6'
|
|
60
57
|
- - ">="
|
|
61
58
|
- !ruby/object:Gem::Version
|
|
62
59
|
version: 3.6.0
|
|
60
|
+
- - "~>"
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '3.6'
|
|
63
63
|
type: :development
|
|
64
64
|
prerelease: false
|
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
|
-
- - "~>"
|
|
68
|
-
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.6'
|
|
70
67
|
- - ">="
|
|
71
68
|
- !ruby/object:Gem::Version
|
|
72
69
|
version: 3.6.0
|
|
70
|
+
- - "~>"
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '3.6'
|
|
73
73
|
- !ruby/object:Gem::Dependency
|
|
74
74
|
name: vcr
|
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -203,70 +203,94 @@ files:
|
|
|
203
203
|
- "./README.md"
|
|
204
204
|
- "./Rakefile"
|
|
205
205
|
- "./cloudmersive-nlp-api-client.gemspec"
|
|
206
|
-
- "./docs/
|
|
207
|
-
- "./docs/
|
|
208
|
-
- "./docs/
|
|
209
|
-
- "./docs/
|
|
210
|
-
- "./docs/
|
|
211
|
-
- "./docs/
|
|
206
|
+
- "./docs/CheckSentenceRequest.md"
|
|
207
|
+
- "./docs/CheckSentenceResponse.md"
|
|
208
|
+
- "./docs/CheckWordRequest.md"
|
|
209
|
+
- "./docs/CheckWordResponse.md"
|
|
210
|
+
- "./docs/CorrectWordInSentence.md"
|
|
211
|
+
- "./docs/Entity.md"
|
|
212
|
+
- "./docs/ExtractEntitiesApi.md"
|
|
213
|
+
- "./docs/ExtractEntitiesRequest.md"
|
|
214
|
+
- "./docs/ExtractEntitiesResponse.md"
|
|
215
|
+
- "./docs/GetWordsRequest.md"
|
|
216
|
+
- "./docs/GetWordsResponse.md"
|
|
212
217
|
- "./docs/LanguageDetectionApi.md"
|
|
218
|
+
- "./docs/LanguageDetectionRequest.md"
|
|
213
219
|
- "./docs/LanguageDetectionResponse.md"
|
|
214
|
-
- "./docs/
|
|
220
|
+
- "./docs/ParseApi.md"
|
|
221
|
+
- "./docs/ParseRequest.md"
|
|
222
|
+
- "./docs/ParseResponse.md"
|
|
215
223
|
- "./docs/PosRequest.md"
|
|
216
224
|
- "./docs/PosResponse.md"
|
|
217
225
|
- "./docs/PosSentence.md"
|
|
218
226
|
- "./docs/PosTaggedWord.md"
|
|
219
|
-
- "./docs/
|
|
220
|
-
- "./docs/
|
|
221
|
-
- "./docs/
|
|
222
|
-
- "./docs/
|
|
227
|
+
- "./docs/PosTaggerApi.md"
|
|
228
|
+
- "./docs/SegmentationApi.md"
|
|
229
|
+
- "./docs/SentenceSegmentationRequest.md"
|
|
230
|
+
- "./docs/SentenceSegmentationResponse.md"
|
|
231
|
+
- "./docs/SpellcheckApi.md"
|
|
223
232
|
- "./docs/WordPosition.md"
|
|
224
|
-
- "./docs/WordsApi.md"
|
|
225
233
|
- "./git_push.sh"
|
|
226
234
|
- "./lib/cloudmersive-nlp-api-client.rb"
|
|
227
|
-
- "./lib/cloudmersive-nlp-api-client/api/
|
|
235
|
+
- "./lib/cloudmersive-nlp-api-client/api/extract_entities_api.rb"
|
|
228
236
|
- "./lib/cloudmersive-nlp-api-client/api/language_detection_api.rb"
|
|
229
|
-
- "./lib/cloudmersive-nlp-api-client/api/
|
|
230
|
-
- "./lib/cloudmersive-nlp-api-client/api/
|
|
231
|
-
- "./lib/cloudmersive-nlp-api-client/api/
|
|
232
|
-
- "./lib/cloudmersive-nlp-api-client/api/
|
|
233
|
-
- "./lib/cloudmersive-nlp-api-client/api/spell_check_api.rb"
|
|
234
|
-
- "./lib/cloudmersive-nlp-api-client/api/words_api.rb"
|
|
237
|
+
- "./lib/cloudmersive-nlp-api-client/api/parse_api.rb"
|
|
238
|
+
- "./lib/cloudmersive-nlp-api-client/api/pos_tagger_api.rb"
|
|
239
|
+
- "./lib/cloudmersive-nlp-api-client/api/segmentation_api.rb"
|
|
240
|
+
- "./lib/cloudmersive-nlp-api-client/api/spellcheck_api.rb"
|
|
235
241
|
- "./lib/cloudmersive-nlp-api-client/api_client.rb"
|
|
236
242
|
- "./lib/cloudmersive-nlp-api-client/api_error.rb"
|
|
237
243
|
- "./lib/cloudmersive-nlp-api-client/configuration.rb"
|
|
238
|
-
- "./lib/cloudmersive-nlp-api-client/models/
|
|
239
|
-
- "./lib/cloudmersive-nlp-api-client/models/
|
|
240
|
-
- "./lib/cloudmersive-nlp-api-client/models/
|
|
241
|
-
- "./lib/cloudmersive-nlp-api-client/models/
|
|
242
|
-
- "./lib/cloudmersive-nlp-api-client/models/
|
|
244
|
+
- "./lib/cloudmersive-nlp-api-client/models/check_sentence_request.rb"
|
|
245
|
+
- "./lib/cloudmersive-nlp-api-client/models/check_sentence_response.rb"
|
|
246
|
+
- "./lib/cloudmersive-nlp-api-client/models/check_word_request.rb"
|
|
247
|
+
- "./lib/cloudmersive-nlp-api-client/models/check_word_response.rb"
|
|
248
|
+
- "./lib/cloudmersive-nlp-api-client/models/correct_word_in_sentence.rb"
|
|
249
|
+
- "./lib/cloudmersive-nlp-api-client/models/entity.rb"
|
|
250
|
+
- "./lib/cloudmersive-nlp-api-client/models/extract_entities_request.rb"
|
|
251
|
+
- "./lib/cloudmersive-nlp-api-client/models/extract_entities_response.rb"
|
|
252
|
+
- "./lib/cloudmersive-nlp-api-client/models/get_words_request.rb"
|
|
253
|
+
- "./lib/cloudmersive-nlp-api-client/models/get_words_response.rb"
|
|
254
|
+
- "./lib/cloudmersive-nlp-api-client/models/language_detection_request.rb"
|
|
243
255
|
- "./lib/cloudmersive-nlp-api-client/models/language_detection_response.rb"
|
|
256
|
+
- "./lib/cloudmersive-nlp-api-client/models/parse_request.rb"
|
|
257
|
+
- "./lib/cloudmersive-nlp-api-client/models/parse_response.rb"
|
|
244
258
|
- "./lib/cloudmersive-nlp-api-client/models/pos_request.rb"
|
|
245
259
|
- "./lib/cloudmersive-nlp-api-client/models/pos_response.rb"
|
|
246
260
|
- "./lib/cloudmersive-nlp-api-client/models/pos_sentence.rb"
|
|
247
261
|
- "./lib/cloudmersive-nlp-api-client/models/pos_tagged_word.rb"
|
|
262
|
+
- "./lib/cloudmersive-nlp-api-client/models/sentence_segmentation_request.rb"
|
|
263
|
+
- "./lib/cloudmersive-nlp-api-client/models/sentence_segmentation_response.rb"
|
|
248
264
|
- "./lib/cloudmersive-nlp-api-client/models/word_position.rb"
|
|
249
265
|
- "./lib/cloudmersive-nlp-api-client/version.rb"
|
|
250
|
-
- "./spec/api/
|
|
266
|
+
- "./spec/api/extract_entities_api_spec.rb"
|
|
251
267
|
- "./spec/api/language_detection_api_spec.rb"
|
|
252
|
-
- "./spec/api/
|
|
253
|
-
- "./spec/api/
|
|
254
|
-
- "./spec/api/
|
|
255
|
-
- "./spec/api/
|
|
256
|
-
- "./spec/api/spell_check_api_spec.rb"
|
|
257
|
-
- "./spec/api/words_api_spec.rb"
|
|
268
|
+
- "./spec/api/parse_api_spec.rb"
|
|
269
|
+
- "./spec/api/pos_tagger_api_spec.rb"
|
|
270
|
+
- "./spec/api/segmentation_api_spec.rb"
|
|
271
|
+
- "./spec/api/spellcheck_api_spec.rb"
|
|
258
272
|
- "./spec/api_client_spec.rb"
|
|
259
273
|
- "./spec/configuration_spec.rb"
|
|
260
|
-
- "./spec/models/
|
|
261
|
-
- "./spec/models/
|
|
262
|
-
- "./spec/models/
|
|
263
|
-
- "./spec/models/
|
|
264
|
-
- "./spec/models/
|
|
274
|
+
- "./spec/models/check_sentence_request_spec.rb"
|
|
275
|
+
- "./spec/models/check_sentence_response_spec.rb"
|
|
276
|
+
- "./spec/models/check_word_request_spec.rb"
|
|
277
|
+
- "./spec/models/check_word_response_spec.rb"
|
|
278
|
+
- "./spec/models/correct_word_in_sentence_spec.rb"
|
|
279
|
+
- "./spec/models/entity_spec.rb"
|
|
280
|
+
- "./spec/models/extract_entities_request_spec.rb"
|
|
281
|
+
- "./spec/models/extract_entities_response_spec.rb"
|
|
282
|
+
- "./spec/models/get_words_request_spec.rb"
|
|
283
|
+
- "./spec/models/get_words_response_spec.rb"
|
|
284
|
+
- "./spec/models/language_detection_request_spec.rb"
|
|
265
285
|
- "./spec/models/language_detection_response_spec.rb"
|
|
286
|
+
- "./spec/models/parse_request_spec.rb"
|
|
287
|
+
- "./spec/models/parse_response_spec.rb"
|
|
266
288
|
- "./spec/models/pos_request_spec.rb"
|
|
267
289
|
- "./spec/models/pos_response_spec.rb"
|
|
268
290
|
- "./spec/models/pos_sentence_spec.rb"
|
|
269
291
|
- "./spec/models/pos_tagged_word_spec.rb"
|
|
292
|
+
- "./spec/models/sentence_segmentation_request_spec.rb"
|
|
293
|
+
- "./spec/models/sentence_segmentation_response_spec.rb"
|
|
270
294
|
- "./spec/models/word_position_spec.rb"
|
|
271
295
|
- "./spec/spec_helper.rb"
|
|
272
296
|
homepage: https://www.cloudmersive.com/nlp-api
|
|
@@ -288,8 +312,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
288
312
|
- !ruby/object:Gem::Version
|
|
289
313
|
version: '0'
|
|
290
314
|
requirements: []
|
|
291
|
-
|
|
292
|
-
rubygems_version: 2.7.6
|
|
315
|
+
rubygems_version: 3.0.3
|
|
293
316
|
signing_key:
|
|
294
317
|
specification_version: 4
|
|
295
318
|
summary: The most powerful and cost-effective NLP AI APIs, continuously updated.
|