cloudmersive-ocr-api-client 1.3.1 → 1.3.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 +4 -4
- data/README.md +12 -5
- data/docs/ImageOcrApi.md +6 -2
- data/docs/ImageToWordsWithLocationResult.md +1 -1
- data/docs/OcrPageResultWithLinesWithLocation.md +10 -0
- data/docs/OcrPageResultWithWordsWithLocation.md +10 -0
- data/docs/PdfOcrApi.md +122 -0
- data/docs/PdfToLinesWithLocationResult.md +9 -0
- data/docs/PdfToWordsWithLocationResult.md +9 -0
- data/lib/cloudmersive-ocr-api-client.rb +4 -0
- data/lib/cloudmersive-ocr-api-client/api/image_ocr_api.rb +6 -0
- data/lib/cloudmersive-ocr-api-client/api/pdf_ocr_api.rb +124 -0
- data/lib/cloudmersive-ocr-api-client/models/image_to_words_with_location_result.rb +1 -0
- data/lib/cloudmersive-ocr-api-client/models/ocr_page_result_with_lines_with_location.rb +210 -0
- data/lib/cloudmersive-ocr-api-client/models/ocr_page_result_with_words_with_location.rb +210 -0
- data/lib/cloudmersive-ocr-api-client/models/pdf_to_lines_with_location_result.rb +199 -0
- data/lib/cloudmersive-ocr-api-client/models/pdf_to_words_with_location_result.rb +199 -0
- data/lib/cloudmersive-ocr-api-client/version.rb +1 -1
- data/spec/api/image_ocr_api_spec.rb +2 -0
- data/spec/api/pdf_ocr_api_spec.rb +28 -0
- data/spec/models/ocr_page_result_with_lines_with_location_spec.rb +54 -0
- data/spec/models/ocr_page_result_with_words_with_location_spec.rb +54 -0
- data/spec/models/pdf_to_lines_with_location_result_spec.rb +48 -0
- data/spec/models/pdf_to_words_with_location_result_spec.rb +48 -0
- metadata +14 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloudmersive-ocr-api-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
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-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -207,9 +207,13 @@ files:
|
|
207
207
|
- "./docs/ImageToWordsWithLocationResult.md"
|
208
208
|
- "./docs/OcrLineElement.md"
|
209
209
|
- "./docs/OcrPageResult.md"
|
210
|
+
- "./docs/OcrPageResultWithLinesWithLocation.md"
|
211
|
+
- "./docs/OcrPageResultWithWordsWithLocation.md"
|
210
212
|
- "./docs/OcrWordElement.md"
|
211
213
|
- "./docs/PdfOcrApi.md"
|
214
|
+
- "./docs/PdfToLinesWithLocationResult.md"
|
212
215
|
- "./docs/PdfToTextResponse.md"
|
216
|
+
- "./docs/PdfToWordsWithLocationResult.md"
|
213
217
|
- "./docs/PreprocessingApi.md"
|
214
218
|
- "./git_push.sh"
|
215
219
|
- "./lib/cloudmersive-ocr-api-client.rb"
|
@@ -224,8 +228,12 @@ files:
|
|
224
228
|
- "./lib/cloudmersive-ocr-api-client/models/image_to_words_with_location_result.rb"
|
225
229
|
- "./lib/cloudmersive-ocr-api-client/models/ocr_line_element.rb"
|
226
230
|
- "./lib/cloudmersive-ocr-api-client/models/ocr_page_result.rb"
|
231
|
+
- "./lib/cloudmersive-ocr-api-client/models/ocr_page_result_with_lines_with_location.rb"
|
232
|
+
- "./lib/cloudmersive-ocr-api-client/models/ocr_page_result_with_words_with_location.rb"
|
227
233
|
- "./lib/cloudmersive-ocr-api-client/models/ocr_word_element.rb"
|
234
|
+
- "./lib/cloudmersive-ocr-api-client/models/pdf_to_lines_with_location_result.rb"
|
228
235
|
- "./lib/cloudmersive-ocr-api-client/models/pdf_to_text_response.rb"
|
236
|
+
- "./lib/cloudmersive-ocr-api-client/models/pdf_to_words_with_location_result.rb"
|
229
237
|
- "./lib/cloudmersive-ocr-api-client/version.rb"
|
230
238
|
- "./spec/api/image_ocr_api_spec.rb"
|
231
239
|
- "./spec/api/pdf_ocr_api_spec.rb"
|
@@ -237,8 +245,12 @@ files:
|
|
237
245
|
- "./spec/models/image_to_words_with_location_result_spec.rb"
|
238
246
|
- "./spec/models/ocr_line_element_spec.rb"
|
239
247
|
- "./spec/models/ocr_page_result_spec.rb"
|
248
|
+
- "./spec/models/ocr_page_result_with_lines_with_location_spec.rb"
|
249
|
+
- "./spec/models/ocr_page_result_with_words_with_location_spec.rb"
|
240
250
|
- "./spec/models/ocr_word_element_spec.rb"
|
251
|
+
- "./spec/models/pdf_to_lines_with_location_result_spec.rb"
|
241
252
|
- "./spec/models/pdf_to_text_response_spec.rb"
|
253
|
+
- "./spec/models/pdf_to_words_with_location_result_spec.rb"
|
242
254
|
- "./spec/spec_helper.rb"
|
243
255
|
homepage: https://www.cloudmersive.com/ocr-api
|
244
256
|
licenses:
|