cloudmersive-ocr-api-client 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +7 -0
  3. data/README.md +150 -0
  4. data/Rakefile +8 -0
  5. data/cloudmersive-ocr-api-client.gemspec +45 -0
  6. data/docs/BusinessCardRecognitionResult.md +15 -0
  7. data/docs/FieldResult.md +9 -0
  8. data/docs/FormDefinitionTemplate.md +9 -0
  9. data/docs/FormFieldDefinition.md +25 -0
  10. data/docs/FormRecognitionResult.md +12 -0
  11. data/docs/FormTableColumnDefinition.md +13 -0
  12. data/docs/FormTableDefinition.md +11 -0
  13. data/docs/GetPageAngleResult.md +9 -0
  14. data/docs/ImageOcrApi.md +571 -0
  15. data/docs/ImageToLinesWithLocationResult.md +9 -0
  16. data/docs/ImageToTextResponse.md +9 -0
  17. data/docs/ImageToWordsWithLocationResult.md +9 -0
  18. data/docs/OcrLineElement.md +9 -0
  19. data/docs/OcrPageResult.md +10 -0
  20. data/docs/OcrPageResultWithLinesWithLocation.md +10 -0
  21. data/docs/OcrPageResultWithWordsWithLocation.md +10 -0
  22. data/docs/OcrPhotoTextElement.md +14 -0
  23. data/docs/OcrWordElement.md +18 -0
  24. data/docs/PdfOcrApi.md +191 -0
  25. data/docs/PdfToLinesWithLocationResult.md +9 -0
  26. data/docs/PdfToTextResponse.md +9 -0
  27. data/docs/PdfToWordsWithLocationResult.md +9 -0
  28. data/docs/PhotoToWordsWithLocationResult.md +10 -0
  29. data/docs/Point.md +9 -0
  30. data/docs/PreprocessingApi.md +338 -0
  31. data/docs/ReceiptLineItem.md +9 -0
  32. data/docs/ReceiptRecognitionResult.md +16 -0
  33. data/docs/ReceiptsApi.md +63 -0
  34. data/docs/TableCellResult.md +9 -0
  35. data/docs/TableResult.md +9 -0
  36. data/docs/TableRowResult.md +8 -0
  37. data/git_push.sh +55 -0
  38. data/lib/cloudmersive-ocr-api-client.rb +70 -0
  39. data/lib/cloudmersive-ocr-api-client/api/image_ocr_api.rb +596 -0
  40. data/lib/cloudmersive-ocr-api-client/api/pdf_ocr_api.rb +207 -0
  41. data/lib/cloudmersive-ocr-api-client/api/preprocessing_api.rb +353 -0
  42. data/lib/cloudmersive-ocr-api-client/api/receipts_api.rb +78 -0
  43. data/lib/cloudmersive-ocr-api-client/api_client.rb +391 -0
  44. data/lib/cloudmersive-ocr-api-client/api_error.rb +38 -0
  45. data/lib/cloudmersive-ocr-api-client/configuration.rb +209 -0
  46. data/lib/cloudmersive-ocr-api-client/models/business_card_recognition_result.rb +256 -0
  47. data/lib/cloudmersive-ocr-api-client/models/field_result.rb +198 -0
  48. data/lib/cloudmersive-ocr-api-client/models/form_definition_template.rb +200 -0
  49. data/lib/cloudmersive-ocr-api-client/models/form_field_definition.rb +358 -0
  50. data/lib/cloudmersive-ocr-api-client/models/form_recognition_result.rb +232 -0
  51. data/lib/cloudmersive-ocr-api-client/models/form_table_column_definition.rb +236 -0
  52. data/lib/cloudmersive-ocr-api-client/models/form_table_definition.rb +218 -0
  53. data/lib/cloudmersive-ocr-api-client/models/get_page_angle_result.rb +196 -0
  54. data/lib/cloudmersive-ocr-api-client/models/image_to_lines_with_location_result.rb +198 -0
  55. data/lib/cloudmersive-ocr-api-client/models/image_to_text_response.rb +196 -0
  56. data/lib/cloudmersive-ocr-api-client/models/image_to_words_with_location_result.rb +198 -0
  57. data/lib/cloudmersive-ocr-api-client/models/ocr_line_element.rb +198 -0
  58. data/lib/cloudmersive-ocr-api-client/models/ocr_page_result.rb +205 -0
  59. data/lib/cloudmersive-ocr-api-client/models/ocr_page_result_with_lines_with_location.rb +208 -0
  60. data/lib/cloudmersive-ocr-api-client/models/ocr_page_result_with_words_with_location.rb +208 -0
  61. data/lib/cloudmersive-ocr-api-client/models/ocr_photo_text_element.rb +248 -0
  62. data/lib/cloudmersive-ocr-api-client/models/ocr_word_element.rb +286 -0
  63. data/lib/cloudmersive-ocr-api-client/models/pdf_to_lines_with_location_result.rb +198 -0
  64. data/lib/cloudmersive-ocr-api-client/models/pdf_to_text_response.rb +198 -0
  65. data/lib/cloudmersive-ocr-api-client/models/pdf_to_words_with_location_result.rb +198 -0
  66. data/lib/cloudmersive-ocr-api-client/models/photo_to_words_with_location_result.rb +223 -0
  67. data/lib/cloudmersive-ocr-api-client/models/point.rb +196 -0
  68. data/lib/cloudmersive-ocr-api-client/models/receipt_line_item.rb +196 -0
  69. data/lib/cloudmersive-ocr-api-client/models/receipt_recognition_result.rb +268 -0
  70. data/lib/cloudmersive-ocr-api-client/models/table_cell_result.rb +198 -0
  71. data/lib/cloudmersive-ocr-api-client/models/table_result.rb +198 -0
  72. data/lib/cloudmersive-ocr-api-client/models/table_row_result.rb +188 -0
  73. data/lib/cloudmersive-ocr-api-client/version.rb +15 -0
  74. data/spec/api/image_ocr_api_spec.rb +169 -0
  75. data/spec/api/pdf_ocr_api_spec.rb +77 -0
  76. data/spec/api/preprocessing_api_spec.rb +107 -0
  77. data/spec/api/receipts_api_spec.rb +47 -0
  78. data/spec/api_client_spec.rb +243 -0
  79. data/spec/configuration_spec.rb +42 -0
  80. data/spec/models/business_card_recognition_result_spec.rb +83 -0
  81. data/spec/models/field_result_spec.rb +47 -0
  82. data/spec/models/form_definition_template_spec.rb +47 -0
  83. data/spec/models/form_field_definition_spec.rb +143 -0
  84. data/spec/models/form_recognition_result_spec.rb +65 -0
  85. data/spec/models/form_table_column_definition_spec.rb +71 -0
  86. data/spec/models/form_table_definition_spec.rb +59 -0
  87. data/spec/models/get_page_angle_result_spec.rb +47 -0
  88. data/spec/models/image_to_lines_with_location_result_spec.rb +47 -0
  89. data/spec/models/image_to_text_response_spec.rb +47 -0
  90. data/spec/models/image_to_words_with_location_result_spec.rb +47 -0
  91. data/spec/models/ocr_line_element_spec.rb +47 -0
  92. data/spec/models/ocr_page_result_spec.rb +53 -0
  93. data/spec/models/ocr_page_result_with_lines_with_location_spec.rb +53 -0
  94. data/spec/models/ocr_page_result_with_words_with_location_spec.rb +53 -0
  95. data/spec/models/ocr_photo_text_element_spec.rb +77 -0
  96. data/spec/models/ocr_word_element_spec.rb +101 -0
  97. data/spec/models/pdf_to_lines_with_location_result_spec.rb +47 -0
  98. data/spec/models/pdf_to_text_response_spec.rb +47 -0
  99. data/spec/models/pdf_to_words_with_location_result_spec.rb +47 -0
  100. data/spec/models/photo_to_words_with_location_result_spec.rb +53 -0
  101. data/spec/models/point_spec.rb +47 -0
  102. data/spec/models/receipt_line_item_spec.rb +47 -0
  103. data/spec/models/receipt_recognition_result_spec.rb +89 -0
  104. data/spec/models/table_cell_result_spec.rb +47 -0
  105. data/spec/models/table_result_spec.rb +47 -0
  106. data/spec/models/table_row_result_spec.rb +41 -0
  107. data/spec/spec_helper.rb +111 -0
  108. metadata +109 -3
@@ -0,0 +1,89 @@
1
+ =begin
2
+ #ocrapi
3
+
4
+ #The powerful Optical Character Recognition (OCR) APIs let you convert scanned images of pages into recognized text.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveOcrApiClient::ReceiptRecognitionResult
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'ReceiptRecognitionResult' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveOcrApiClient::ReceiptRecognitionResult.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ReceiptRecognitionResult' do
31
+ it 'should create an instance of ReceiptRecognitionResult' do
32
+ expect(@instance).to be_instance_of(CloudmersiveOcrApiClient::ReceiptRecognitionResult)
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 "timestamp"' 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 "business_name"' 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
+ describe 'test attribute "business_website"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "address_string"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "phone_number"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "receipt_items"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "receipt_sub_total"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "receipt_total"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #ocrapi
3
+
4
+ #The powerful Optical Character Recognition (OCR) APIs let you convert scanned images of pages into recognized text.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveOcrApiClient::TableCellResult
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'TableCellResult' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveOcrApiClient::TableCellResult.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TableCellResult' do
31
+ it 'should create an instance of TableCellResult' do
32
+ expect(@instance).to be_instance_of(CloudmersiveOcrApiClient::TableCellResult)
33
+ end
34
+ end
35
+ describe 'test attribute "column_id"' 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 "cell_values"' 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
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #ocrapi
3
+
4
+ #The powerful Optical Character Recognition (OCR) APIs let you convert scanned images of pages into recognized text.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveOcrApiClient::TableResult
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'TableResult' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveOcrApiClient::TableResult.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TableResult' do
31
+ it 'should create an instance of TableResult' do
32
+ expect(@instance).to be_instance_of(CloudmersiveOcrApiClient::TableResult)
33
+ end
34
+ end
35
+ describe 'test attribute "table_definition"' 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 "table_rows_result"' 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
+ end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #ocrapi
3
+
4
+ #The powerful Optical Character Recognition (OCR) APIs let you convert scanned images of pages into recognized text.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveOcrApiClient::TableRowResult
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'TableRowResult' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveOcrApiClient::TableRowResult.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TableRowResult' do
31
+ it 'should create an instance of TableRowResult' do
32
+ expect(@instance).to be_instance_of(CloudmersiveOcrApiClient::TableRowResult)
33
+ end
34
+ end
35
+ describe 'test attribute "table_row_cells_result"' 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
@@ -0,0 +1,111 @@
1
+ =begin
2
+ #ocrapi
3
+
4
+ #The powerful Optical Character Recognition (OCR) APIs let you convert scanned images of pages into recognized text.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ # load the gem
14
+ require 'cloudmersive-ocr-api-client'
15
+
16
+ # The following was generated by the `rspec --init` command. Conventionally, all
17
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
18
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
19
+ # this file to always be loaded, without a need to explicitly require it in any
20
+ # files.
21
+ #
22
+ # Given that it is always loaded, you are encouraged to keep this file as
23
+ # light-weight as possible. Requiring heavyweight dependencies from this file
24
+ # will add to the boot time of your test suite on EVERY test run, even for an
25
+ # individual file that may not need all of that loaded. Instead, consider making
26
+ # a separate helper file that requires the additional dependencies and performs
27
+ # the additional setup, and require it from the spec files that actually need
28
+ # it.
29
+ #
30
+ # The `.rspec` file also contains a few flags that are not defaults but that
31
+ # users commonly want.
32
+ #
33
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
34
+ RSpec.configure do |config|
35
+ # rspec-expectations config goes here. You can use an alternate
36
+ # assertion/expectation library such as wrong or the stdlib/minitest
37
+ # assertions if you prefer.
38
+ config.expect_with :rspec do |expectations|
39
+ # This option will default to `true` in RSpec 4. It makes the `description`
40
+ # and `failure_message` of custom matchers include text for helper methods
41
+ # defined using `chain`, e.g.:
42
+ # be_bigger_than(2).and_smaller_than(4).description
43
+ # # => "be bigger than 2 and smaller than 4"
44
+ # ...rather than:
45
+ # # => "be bigger than 2"
46
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
47
+ end
48
+
49
+ # rspec-mocks config goes here. You can use an alternate test double
50
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
51
+ config.mock_with :rspec do |mocks|
52
+ # Prevents you from mocking or stubbing a method that does not exist on
53
+ # a real object. This is generally recommended, and will default to
54
+ # `true` in RSpec 4.
55
+ mocks.verify_partial_doubles = true
56
+ end
57
+
58
+ # The settings below are suggested to provide a good initial experience
59
+ # with RSpec, but feel free to customize to your heart's content.
60
+ =begin
61
+ # These two settings work together to allow you to limit a spec run
62
+ # to individual examples or groups you care about by tagging them with
63
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
64
+ # get run.
65
+ config.filter_run :focus
66
+ config.run_all_when_everything_filtered = true
67
+
68
+ # Allows RSpec to persist some state between runs in order to support
69
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
70
+ # you configure your source control system to ignore this file.
71
+ config.example_status_persistence_file_path = "spec/examples.txt"
72
+
73
+ # Limits the available syntax to the non-monkey patched syntax that is
74
+ # recommended. For more details, see:
75
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
76
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
77
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
78
+ config.disable_monkey_patching!
79
+
80
+ # This setting enables warnings. It's recommended, but in some cases may
81
+ # be too noisy due to issues in dependencies.
82
+ config.warnings = true
83
+
84
+ # Many RSpec users commonly either run the entire suite or an individual
85
+ # file, and it's useful to allow more verbose output when running an
86
+ # individual spec file.
87
+ if config.files_to_run.one?
88
+ # Use the documentation formatter for detailed output,
89
+ # unless a formatter has already been configured
90
+ # (e.g. via a command-line flag).
91
+ config.default_formatter = 'doc'
92
+ end
93
+
94
+ # Print the 10 slowest examples and example groups at the
95
+ # end of the spec run, to help surface which specs are running
96
+ # particularly slow.
97
+ config.profile_examples = 10
98
+
99
+ # Run specs in random order to surface order dependencies. If you find an
100
+ # order dependency and want to debug it, you can fix the order by providing
101
+ # the seed, which is printed after each run.
102
+ # --seed 1234
103
+ config.order = :random
104
+
105
+ # Seed global randomization in this process using the `--seed` CLI option.
106
+ # Setting this allows you to use `--seed` to deterministically reproduce
107
+ # test failures related to randomization by passing the same `--seed` value
108
+ # as the one that triggered the failure.
109
+ Kernel.srand config.seed
110
+ =end
111
+ end
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: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloudmersive
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-31 00:00:00.000000000 Z
11
+ date: 2020-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -196,7 +196,113 @@ email:
196
196
  executables: []
197
197
  extensions: []
198
198
  extra_rdoc_files: []
199
- files: []
199
+ files:
200
+ - "./Gemfile"
201
+ - "./README.md"
202
+ - "./Rakefile"
203
+ - "./cloudmersive-ocr-api-client.gemspec"
204
+ - "./docs/BusinessCardRecognitionResult.md"
205
+ - "./docs/FieldResult.md"
206
+ - "./docs/FormDefinitionTemplate.md"
207
+ - "./docs/FormFieldDefinition.md"
208
+ - "./docs/FormRecognitionResult.md"
209
+ - "./docs/FormTableColumnDefinition.md"
210
+ - "./docs/FormTableDefinition.md"
211
+ - "./docs/GetPageAngleResult.md"
212
+ - "./docs/ImageOcrApi.md"
213
+ - "./docs/ImageToLinesWithLocationResult.md"
214
+ - "./docs/ImageToTextResponse.md"
215
+ - "./docs/ImageToWordsWithLocationResult.md"
216
+ - "./docs/OcrLineElement.md"
217
+ - "./docs/OcrPageResult.md"
218
+ - "./docs/OcrPageResultWithLinesWithLocation.md"
219
+ - "./docs/OcrPageResultWithWordsWithLocation.md"
220
+ - "./docs/OcrPhotoTextElement.md"
221
+ - "./docs/OcrWordElement.md"
222
+ - "./docs/PdfOcrApi.md"
223
+ - "./docs/PdfToLinesWithLocationResult.md"
224
+ - "./docs/PdfToTextResponse.md"
225
+ - "./docs/PdfToWordsWithLocationResult.md"
226
+ - "./docs/PhotoToWordsWithLocationResult.md"
227
+ - "./docs/Point.md"
228
+ - "./docs/PreprocessingApi.md"
229
+ - "./docs/ReceiptLineItem.md"
230
+ - "./docs/ReceiptRecognitionResult.md"
231
+ - "./docs/ReceiptsApi.md"
232
+ - "./docs/TableCellResult.md"
233
+ - "./docs/TableResult.md"
234
+ - "./docs/TableRowResult.md"
235
+ - "./git_push.sh"
236
+ - "./lib/cloudmersive-ocr-api-client.rb"
237
+ - "./lib/cloudmersive-ocr-api-client/api/image_ocr_api.rb"
238
+ - "./lib/cloudmersive-ocr-api-client/api/pdf_ocr_api.rb"
239
+ - "./lib/cloudmersive-ocr-api-client/api/preprocessing_api.rb"
240
+ - "./lib/cloudmersive-ocr-api-client/api/receipts_api.rb"
241
+ - "./lib/cloudmersive-ocr-api-client/api_client.rb"
242
+ - "./lib/cloudmersive-ocr-api-client/api_error.rb"
243
+ - "./lib/cloudmersive-ocr-api-client/configuration.rb"
244
+ - "./lib/cloudmersive-ocr-api-client/models/business_card_recognition_result.rb"
245
+ - "./lib/cloudmersive-ocr-api-client/models/field_result.rb"
246
+ - "./lib/cloudmersive-ocr-api-client/models/form_definition_template.rb"
247
+ - "./lib/cloudmersive-ocr-api-client/models/form_field_definition.rb"
248
+ - "./lib/cloudmersive-ocr-api-client/models/form_recognition_result.rb"
249
+ - "./lib/cloudmersive-ocr-api-client/models/form_table_column_definition.rb"
250
+ - "./lib/cloudmersive-ocr-api-client/models/form_table_definition.rb"
251
+ - "./lib/cloudmersive-ocr-api-client/models/get_page_angle_result.rb"
252
+ - "./lib/cloudmersive-ocr-api-client/models/image_to_lines_with_location_result.rb"
253
+ - "./lib/cloudmersive-ocr-api-client/models/image_to_text_response.rb"
254
+ - "./lib/cloudmersive-ocr-api-client/models/image_to_words_with_location_result.rb"
255
+ - "./lib/cloudmersive-ocr-api-client/models/ocr_line_element.rb"
256
+ - "./lib/cloudmersive-ocr-api-client/models/ocr_page_result.rb"
257
+ - "./lib/cloudmersive-ocr-api-client/models/ocr_page_result_with_lines_with_location.rb"
258
+ - "./lib/cloudmersive-ocr-api-client/models/ocr_page_result_with_words_with_location.rb"
259
+ - "./lib/cloudmersive-ocr-api-client/models/ocr_photo_text_element.rb"
260
+ - "./lib/cloudmersive-ocr-api-client/models/ocr_word_element.rb"
261
+ - "./lib/cloudmersive-ocr-api-client/models/pdf_to_lines_with_location_result.rb"
262
+ - "./lib/cloudmersive-ocr-api-client/models/pdf_to_text_response.rb"
263
+ - "./lib/cloudmersive-ocr-api-client/models/pdf_to_words_with_location_result.rb"
264
+ - "./lib/cloudmersive-ocr-api-client/models/photo_to_words_with_location_result.rb"
265
+ - "./lib/cloudmersive-ocr-api-client/models/point.rb"
266
+ - "./lib/cloudmersive-ocr-api-client/models/receipt_line_item.rb"
267
+ - "./lib/cloudmersive-ocr-api-client/models/receipt_recognition_result.rb"
268
+ - "./lib/cloudmersive-ocr-api-client/models/table_cell_result.rb"
269
+ - "./lib/cloudmersive-ocr-api-client/models/table_result.rb"
270
+ - "./lib/cloudmersive-ocr-api-client/models/table_row_result.rb"
271
+ - "./lib/cloudmersive-ocr-api-client/version.rb"
272
+ - "./spec/api/image_ocr_api_spec.rb"
273
+ - "./spec/api/pdf_ocr_api_spec.rb"
274
+ - "./spec/api/preprocessing_api_spec.rb"
275
+ - "./spec/api/receipts_api_spec.rb"
276
+ - "./spec/api_client_spec.rb"
277
+ - "./spec/configuration_spec.rb"
278
+ - "./spec/models/business_card_recognition_result_spec.rb"
279
+ - "./spec/models/field_result_spec.rb"
280
+ - "./spec/models/form_definition_template_spec.rb"
281
+ - "./spec/models/form_field_definition_spec.rb"
282
+ - "./spec/models/form_recognition_result_spec.rb"
283
+ - "./spec/models/form_table_column_definition_spec.rb"
284
+ - "./spec/models/form_table_definition_spec.rb"
285
+ - "./spec/models/get_page_angle_result_spec.rb"
286
+ - "./spec/models/image_to_lines_with_location_result_spec.rb"
287
+ - "./spec/models/image_to_text_response_spec.rb"
288
+ - "./spec/models/image_to_words_with_location_result_spec.rb"
289
+ - "./spec/models/ocr_line_element_spec.rb"
290
+ - "./spec/models/ocr_page_result_spec.rb"
291
+ - "./spec/models/ocr_page_result_with_lines_with_location_spec.rb"
292
+ - "./spec/models/ocr_page_result_with_words_with_location_spec.rb"
293
+ - "./spec/models/ocr_photo_text_element_spec.rb"
294
+ - "./spec/models/ocr_word_element_spec.rb"
295
+ - "./spec/models/pdf_to_lines_with_location_result_spec.rb"
296
+ - "./spec/models/pdf_to_text_response_spec.rb"
297
+ - "./spec/models/pdf_to_words_with_location_result_spec.rb"
298
+ - "./spec/models/photo_to_words_with_location_result_spec.rb"
299
+ - "./spec/models/point_spec.rb"
300
+ - "./spec/models/receipt_line_item_spec.rb"
301
+ - "./spec/models/receipt_recognition_result_spec.rb"
302
+ - "./spec/models/table_cell_result_spec.rb"
303
+ - "./spec/models/table_result_spec.rb"
304
+ - "./spec/models/table_row_result_spec.rb"
305
+ - "./spec/spec_helper.rb"
200
306
  homepage: https://www.cloudmersive.com/ocr-api
201
307
  licenses:
202
308
  - Apache 2.0