docraptor 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.docker_env.list +2 -0
  3. data/.docker_mounts.list +4 -0
  4. data/.generator-revision +1 -1
  5. data/.gitlab-ci.yml +1 -1
  6. data/.openapi-generator/FILES +5 -0
  7. data/.openapi-generator/VERSION +1 -1
  8. data/.openapi-generator-ignore +0 -10
  9. data/.review/generated_files/README.md +6 -5
  10. data/.review/generated_files/docs/AsyncDoc.md +18 -0
  11. data/.review/generated_files/docs/Doc.md +50 -0
  12. data/.review/generated_files/docs/DocApi.md +503 -0
  13. data/.review/generated_files/docs/DocStatus.md +28 -0
  14. data/.review/generated_files/docs/PrinceOptions.md +82 -0
  15. data/.review/generated_files/spec/api/doc_api_spec.rb +112 -0
  16. data/.review/generated_files/spec/api_client_spec.rb +228 -0
  17. data/.review/generated_files/spec/configuration_spec.rb +42 -0
  18. data/.review/generated_files/spec/models/async_doc_spec.rb +34 -0
  19. data/.review/generated_files/spec/models/doc_spec.rb +138 -0
  20. data/.review/generated_files/spec/models/doc_status_spec.rb +64 -0
  21. data/.review/generated_files/spec/models/prince_options_spec.rb +234 -0
  22. data/.review/generated_files/spec/spec_helper.rb +111 -0
  23. data/.runtime-environments +3 -0
  24. data/.travis.yml +2 -5
  25. data/CHANGELOG.md +3 -0
  26. data/README.md +1 -1
  27. data/docraptor.gemspec +1 -1
  28. data/docraptor.yaml +281 -283
  29. data/gemfiles/Gemfile.3.1.lock +72 -0
  30. data/gemfiles/Gemfile.3.2.lock +72 -0
  31. data/gemfiles/Gemfile.3.3.lock +72 -0
  32. data/generator-config.json +1 -1
  33. data/lib/docraptor/api/doc_api.rb +33 -13
  34. data/lib/docraptor/api_client.rb +1 -1
  35. data/lib/docraptor/api_error.rb +2 -1
  36. data/lib/docraptor/configuration.rb +19 -3
  37. data/lib/docraptor/models/async_doc.rb +1 -1
  38. data/lib/docraptor/models/doc.rb +1 -6
  39. data/lib/docraptor/models/doc_status.rb +1 -1
  40. data/lib/docraptor/models/prince_options.rb +49 -10
  41. data/lib/docraptor/version.rb +2 -2
  42. data/lib/docraptor.rb +1 -1
  43. data/script/docker +21 -4
  44. data/script/generate_language +26 -4
  45. data/script/inside_container/test +52 -3
  46. data/script/post_generate_language +1 -3
  47. data/script/release +13 -0
  48. data/test/iframes_default.rb +40 -0
  49. data/test/iframes_false.rb +40 -0
  50. data/test/iframes_true.rb +40 -0
  51. data/test/prince_options.rb +45 -0
  52. data/test/xlsx.rb +6 -2
  53. metadata +32 -6
@@ -0,0 +1,64 @@
1
+ =begin
2
+ #DocRaptor
3
+
4
+ #A native client library for the DocRaptor HTML to PDF/XLS service.
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 6.6.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for DocRaptor::DocStatus
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe DocRaptor::DocStatus do
21
+ let(:instance) { DocRaptor::DocStatus.new }
22
+
23
+ describe 'test an instance of DocStatus' do
24
+ it 'should create an instance of DocStatus' do
25
+ expect(instance).to be_instance_of(DocRaptor::DocStatus)
26
+ end
27
+ end
28
+ describe 'test attribute "status"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "download_url"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "download_id"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "message"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "number_of_pages"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "validation_errors"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61
+ end
62
+ end
63
+
64
+ end
@@ -0,0 +1,234 @@
1
+ =begin
2
+ #DocRaptor
3
+
4
+ #A native client library for the DocRaptor HTML to PDF/XLS service.
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 6.6.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for DocRaptor::PrinceOptions
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe DocRaptor::PrinceOptions do
21
+ let(:instance) { DocRaptor::PrinceOptions.new }
22
+
23
+ describe 'test an instance of PrinceOptions' do
24
+ it 'should create an instance of PrinceOptions' do
25
+ expect(instance).to be_instance_of(DocRaptor::PrinceOptions)
26
+ end
27
+ end
28
+ describe 'test attribute "baseurl"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "no_xinclude"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "no_network"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "no_parallel_downloads"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "http_user"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "http_password"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "http_proxy"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "http_timeout"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "insecure"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "media"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "no_author_style"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
91
+ end
92
+ end
93
+
94
+ describe 'test attribute "no_default_style"' do
95
+ it 'should work' do
96
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
97
+ end
98
+ end
99
+
100
+ describe 'test attribute "no_embed_fonts"' do
101
+ it 'should work' do
102
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
103
+ end
104
+ end
105
+
106
+ describe 'test attribute "no_subset_fonts"' do
107
+ it 'should work' do
108
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
109
+ end
110
+ end
111
+
112
+ describe 'test attribute "no_compress"' do
113
+ it 'should work' do
114
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
115
+ end
116
+ end
117
+
118
+ describe 'test attribute "encrypt"' do
119
+ it 'should work' do
120
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
121
+ end
122
+ end
123
+
124
+ describe 'test attribute "key_bits"' do
125
+ it 'should work' do
126
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
127
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('Integer', [40, 128])
128
+ # validator.allowable_values.each do |value|
129
+ # expect { instance.key_bits = value }.not_to raise_error
130
+ # end
131
+ end
132
+ end
133
+
134
+ describe 'test attribute "user_password"' do
135
+ it 'should work' do
136
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
137
+ end
138
+ end
139
+
140
+ describe 'test attribute "owner_password"' do
141
+ it 'should work' do
142
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
143
+ end
144
+ end
145
+
146
+ describe 'test attribute "disallow_print"' do
147
+ it 'should work' do
148
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
149
+ end
150
+ end
151
+
152
+ describe 'test attribute "disallow_copy"' do
153
+ it 'should work' do
154
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
155
+ end
156
+ end
157
+
158
+ describe 'test attribute "disallow_annotate"' do
159
+ it 'should work' do
160
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
161
+ end
162
+ end
163
+
164
+ describe 'test attribute "disallow_modify"' do
165
+ it 'should work' do
166
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
167
+ end
168
+ end
169
+
170
+ describe 'test attribute "debug"' do
171
+ it 'should work' do
172
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
173
+ end
174
+ end
175
+
176
+ describe 'test attribute "input"' do
177
+ it 'should work' do
178
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
179
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["html", "xml", "auto"])
180
+ # validator.allowable_values.each do |value|
181
+ # expect { instance.input = value }.not_to raise_error
182
+ # end
183
+ end
184
+ end
185
+
186
+ describe 'test attribute "version"' do
187
+ it 'should work' do
188
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
189
+ end
190
+ end
191
+
192
+ describe 'test attribute "javascript"' do
193
+ it 'should work' do
194
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
195
+ end
196
+ end
197
+
198
+ describe 'test attribute "css_dpi"' do
199
+ it 'should work' do
200
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
201
+ end
202
+ end
203
+
204
+ describe 'test attribute "profile"' do
205
+ it 'should work' do
206
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
207
+ end
208
+ end
209
+
210
+ describe 'test attribute "pdf_title"' do
211
+ it 'should work' do
212
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
213
+ end
214
+ end
215
+
216
+ describe 'test attribute "iframes"' do
217
+ it 'should work' do
218
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
219
+ end
220
+ end
221
+
222
+ describe 'test attribute "page_margin"' do
223
+ it 'should work' do
224
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
225
+ end
226
+ end
227
+
228
+ describe 'test attribute "pdf_forms"' do
229
+ it 'should work' do
230
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
231
+ end
232
+ end
233
+
234
+ end
@@ -0,0 +1,111 @@
1
+ =begin
2
+ #DocRaptor
3
+
4
+ #A native client library for the DocRaptor HTML to PDF/XLS service.
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 6.6.0
10
+
11
+ =end
12
+
13
+ # load the gem
14
+ require 'docraptor'
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
@@ -8,3 +8,6 @@ ruby:2.5
8
8
  ruby:2.6
9
9
  ruby:2.7
10
10
  ruby:3.0
11
+ ruby:3.1
12
+ ruby:3.2
13
+ ruby:3.3-rc
data/.travis.yml CHANGED
@@ -1,14 +1,11 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  rvm:
4
- - 2.3
5
- - 2.4
6
- - 2.5
7
- - 2.6
8
4
  - 2.7
9
5
  - 3.0
6
+ - 3.1
10
7
  script:
11
8
  - bundle install --path vendor/bundle
12
9
  - bundle exec rspec
13
10
  - gem build docraptor.gemspec
14
- - gem install ./docraptor-3.0.0.gem
11
+ - gem install ./docraptor-3.1.0.gem
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ### 3.1.0 [July 19, 2023]
2
+ * Add new Prince API options for pdf_forms, iframes, and page_margin
3
+
1
4
  ### 3.0.0 [November 15, 2022]
2
5
  * Switch API host to more secure api.docraptor.com (dropping old TLS)
3
6
  * Remove support for rubies <2.5
data/README.md CHANGED
@@ -68,7 +68,7 @@ The majority of the code in this repo is generated using openapi-generator on [d
68
68
  - `lib/docraptor/version.rb`
69
69
  6. Update [CHANGELOG.md](CHANGELOG.md)
70
70
  7. Commit "Release version vX.Y.Z"
71
- 8. `rake release[<name of your git remote corresponding to DocRaptor/docraptor-ruby>]`
71
+ 8. `script/release`
72
72
  9. Verify package release at https://rubygems.org/gems/docraptor
73
73
  10. Refresh documentation on docraptor.com
74
74
 
data/docraptor.gemspec CHANGED
@@ -8,7 +8,7 @@
8
8
  The version of the OpenAPI document: 2.0.0
9
9
 
10
10
  Generated by: https://openapi-generator.tech
11
- OpenAPI Generator version: 6.1.0-SNAPSHOT
11
+ OpenAPI Generator version: 6.6.0
12
12
 
13
13
  =end
14
14