docspring 1.4.1 → 3.0.0

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.
Files changed (2976) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +9 -0
  3. data/Gemfile +2 -2
  4. data/Gemfile.lock +72 -58
  5. data/README.md +48 -43
  6. data/docs/AddFieldsData.md +13 -3
  7. data/docs/BatchGeneratePdfs201Response.md +26 -0
  8. data/docs/CombinePdfsData.md +23 -8
  9. data/docs/CombinedSubmission.md +39 -13
  10. data/docs/CombinedSubmissionAction.md +23 -8
  11. data/docs/CombinedSubmissionData.md +21 -7
  12. data/docs/CopyTemplateOptions.md +20 -0
  13. data/docs/CreateCombinedSubmissionResponse.md +17 -5
  14. data/docs/CreateCustomFileData.md +13 -3
  15. data/docs/CreateCustomFileResponse.md +17 -5
  16. data/docs/CreateFolderData.md +13 -3
  17. data/docs/CreateHtmlSubmissionData.md +34 -0
  18. data/docs/CreateHtmlTemplate.md +18 -0
  19. data/docs/CreatePdfSubmissionData.md +32 -0
  20. data/docs/CreatePdfTemplate.md +18 -0
  21. data/docs/CreateSubmissionDataRequestData.md +21 -15
  22. data/docs/CreateSubmissionDataRequestEventRequest.md +20 -0
  23. data/docs/CreateSubmissionDataRequestEventResponse.md +22 -0
  24. data/docs/CreateSubmissionDataRequestResponse.md +22 -0
  25. data/docs/CreateSubmissionDataRequestTokenResponse.md +17 -5
  26. data/docs/CreateSubmissionResponse.md +17 -5
  27. data/docs/CustomFile.md +15 -4
  28. data/docs/ErrorResponse.md +20 -0
  29. data/docs/Folder.md +19 -6
  30. data/docs/JsonSchema.md +34 -0
  31. data/docs/ListSubmissionsResponse.md +17 -5
  32. data/docs/MoveFolderData.md +13 -3
  33. data/docs/MoveTemplateData.md +13 -3
  34. data/docs/MultipleErrorsResponse.md +20 -0
  35. data/docs/PDFApi.md +1490 -534
  36. data/docs/RenameFolderData.md +13 -3
  37. data/docs/Submission.md +59 -21
  38. data/docs/SubmissionAction.md +23 -8
  39. data/docs/SubmissionBatch.md +27 -11
  40. data/docs/SubmissionBatchData.md +17 -6
  41. data/docs/SubmissionBatchWithSubmissions.md +34 -0
  42. data/docs/SubmissionDataRequest.md +53 -22
  43. data/docs/SubmissionDataRequestEvent.md +30 -0
  44. data/docs/SubmissionDataRequestShow.md +60 -0
  45. data/docs/SubmissionDataRequestToken.md +24 -0
  46. data/docs/SubmissionPreview.md +58 -0
  47. data/docs/SuccessErrorResponse.md +20 -0
  48. data/docs/SuccessMultipleErrorsResponse.md +20 -0
  49. data/docs/Template.md +103 -22
  50. data/docs/TemplateAddFieldsResponse.md +22 -0
  51. data/docs/TemplatePreview.md +88 -0
  52. data/docs/UpdateHtmlTemplate.md +18 -0
  53. data/docs/UpdateSubmissionDataRequestData.md +19 -15
  54. data/docs/UploadPresignResponse.md +24 -0
  55. data/docspring.gemspec +10 -17
  56. data/git_push.sh +11 -9
  57. data/lib/docspring/api/pdf_api.rb +1276 -597
  58. data/lib/docspring/api_client.rb +107 -119
  59. data/lib/docspring/api_error.rb +24 -4
  60. data/lib/docspring/configuration.rb +115 -36
  61. data/lib/docspring/models/add_fields_data.rb +61 -28
  62. data/lib/docspring/models/batch_generate_pdfs201_response.rb +309 -0
  63. data/lib/docspring/models/combine_pdfs_data.rb +67 -34
  64. data/lib/docspring/models/combined_submission.rb +199 -75
  65. data/lib/docspring/models/combined_submission_action.rb +108 -68
  66. data/lib/docspring/models/combined_submission_data.rb +65 -32
  67. data/lib/docspring/models/copy_template_options.rb +230 -0
  68. data/lib/docspring/models/create_combined_submission_response.rb +89 -44
  69. data/lib/docspring/models/create_custom_file_data.rb +60 -27
  70. data/lib/docspring/models/create_custom_file_response.rb +89 -44
  71. data/lib/docspring/models/create_folder_data.rb +61 -28
  72. data/lib/docspring/models/create_html_submission_data.rb +286 -0
  73. data/lib/docspring/models/create_html_template.rb +221 -0
  74. data/lib/docspring/models/create_pdf_submission_data.rb +286 -0
  75. data/lib/docspring/models/create_pdf_template.rb +221 -0
  76. data/lib/docspring/models/create_submission_data_request_data.rb +87 -128
  77. data/lib/docspring/models/create_submission_data_request_event_request.rb +277 -0
  78. data/lib/docspring/models/create_submission_data_request_event_response.rb +282 -0
  79. data/lib/docspring/models/create_submission_data_request_response.rb +282 -0
  80. data/lib/docspring/models/create_submission_data_request_token_response.rb +90 -45
  81. data/lib/docspring/models/create_submission_response.rb +90 -45
  82. data/lib/docspring/models/custom_file.rb +65 -28
  83. data/lib/docspring/models/error_response.rb +271 -0
  84. data/lib/docspring/models/folder.rb +91 -48
  85. data/lib/docspring/models/json_schema.rb +288 -0
  86. data/lib/docspring/models/list_submissions_response.rb +89 -41
  87. data/lib/docspring/models/move_folder_data.rb +58 -27
  88. data/lib/docspring/models/move_template_data.rb +60 -27
  89. data/lib/docspring/models/multiple_errors_response.rb +273 -0
  90. data/lib/docspring/models/rename_folder_data.rb +60 -27
  91. data/lib/docspring/models/submission.rb +272 -102
  92. data/lib/docspring/models/submission_action.rb +108 -68
  93. data/lib/docspring/models/submission_batch.rb +148 -80
  94. data/lib/docspring/models/submission_batch_data.rb +65 -41
  95. data/lib/docspring/models/submission_batch_with_submissions.rb +370 -0
  96. data/lib/docspring/models/submission_data_request.rb +172 -78
  97. data/lib/docspring/models/submission_data_request_event.rb +343 -0
  98. data/lib/docspring/models/submission_data_request_show.rb +545 -0
  99. data/lib/docspring/models/submission_data_request_token.rb +257 -0
  100. data/lib/docspring/models/submission_preview.rb +521 -0
  101. data/lib/docspring/models/success_error_response.rb +264 -0
  102. data/lib/docspring/models/success_multiple_errors_response.rb +266 -0
  103. data/lib/docspring/models/template.rb +643 -128
  104. data/lib/docspring/models/template_add_fields_response.rb +277 -0
  105. data/lib/docspring/models/template_preview.rb +757 -0
  106. data/lib/docspring/models/update_html_template.rb +221 -0
  107. data/lib/docspring/models/update_submission_data_request_data.rb +64 -126
  108. data/lib/docspring/models/upload_presign_response.rb +296 -0
  109. data/lib/docspring/version.rb +5 -5
  110. data/lib/docspring.rb +27 -33
  111. data/spec/api/pdf_api_spec.rb +487 -0
  112. data/spec/models/add_fields_data_spec.rb +10 -15
  113. data/spec/models/batch_generate_pdfs201_response_spec.rb +64 -0
  114. data/spec/models/combine_pdfs_data_spec.rb +15 -20
  115. data/spec/models/combined_submission_action_spec.rb +22 -27
  116. data/spec/models/combined_submission_data_spec.rb +14 -19
  117. data/spec/models/combined_submission_spec.rb +50 -37
  118. data/spec/models/copy_template_options_spec.rb +42 -0
  119. data/spec/models/create_combined_submission_response_spec.rb +19 -24
  120. data/spec/models/create_custom_file_data_spec.rb +10 -15
  121. data/spec/models/create_custom_file_response_spec.rb +19 -24
  122. data/spec/models/create_folder_data_spec.rb +10 -15
  123. data/spec/models/create_html_submission_data_spec.rb +84 -0
  124. data/spec/models/create_html_template_spec.rb +36 -0
  125. data/spec/models/create_pdf_submission_data_spec.rb +78 -0
  126. data/spec/models/create_pdf_template_spec.rb +36 -0
  127. data/spec/models/create_submission_data_request_data_spec.rb +20 -73
  128. data/spec/models/create_submission_data_request_event_request_spec.rb +50 -0
  129. data/spec/models/create_submission_data_request_event_response_spec.rb +52 -0
  130. data/spec/models/create_submission_data_request_response_spec.rb +52 -0
  131. data/spec/models/create_submission_data_request_token_response_spec.rb +17 -22
  132. data/spec/models/create_submission_response_spec.rb +19 -24
  133. data/spec/models/custom_file_spec.rb +11 -16
  134. data/spec/models/error_response_spec.rb +46 -0
  135. data/spec/models/folder_spec.rb +17 -22
  136. data/spec/models/json_schema_spec.rb +84 -0
  137. data/spec/models/list_submissions_response_spec.rb +15 -20
  138. data/spec/models/move_folder_data_spec.rb +10 -15
  139. data/spec/models/move_template_data_spec.rb +10 -15
  140. data/spec/models/multiple_errors_response_spec.rb +46 -0
  141. data/spec/models/rename_folder_data_spec.rb +10 -15
  142. data/spec/models/submission_action_spec.rb +22 -27
  143. data/spec/models/submission_batch_data_spec.rb +12 -23
  144. data/spec/models/submission_batch_spec.rb +28 -39
  145. data/spec/models/submission_batch_with_submissions_spec.rb +88 -0
  146. data/spec/models/submission_data_request_event_spec.rb +80 -0
  147. data/spec/models/submission_data_request_show_spec.rb +174 -0
  148. data/spec/models/submission_data_request_spec.rb +40 -39
  149. data/spec/models/submission_data_request_token_spec.rb +54 -0
  150. data/spec/models/submission_preview_spec.rb +160 -0
  151. data/spec/models/submission_spec.rb +72 -43
  152. data/spec/models/success_error_response_spec.rb +46 -0
  153. data/spec/models/success_multiple_errors_response_spec.rb +46 -0
  154. data/spec/models/template_add_fields_response_spec.rb +52 -0
  155. data/spec/models/template_preview_spec.rb +254 -0
  156. data/spec/models/template_spec.rb +207 -52
  157. data/spec/models/update_html_template_spec.rb +36 -0
  158. data/spec/models/update_submission_data_request_data_spec.rb +13 -76
  159. data/spec/models/upload_presign_response_spec.rb +58 -0
  160. data/spec/spec_helper.rb +4 -10
  161. data/vendor/bundle/ruby/3.3.0/bin/bundle-audit +29 -0
  162. data/vendor/bundle/ruby/3.3.0/bin/bundler-audit +29 -0
  163. data/vendor/bundle/ruby/3.3.0/bin/byebug +29 -0
  164. data/vendor/bundle/ruby/3.3.0/bin/coderay +29 -0
  165. data/vendor/bundle/ruby/3.3.0/bin/htmldiff +29 -0
  166. data/vendor/bundle/ruby/3.3.0/bin/ldiff +29 -0
  167. data/vendor/bundle/ruby/3.3.0/bin/pry +29 -0
  168. data/vendor/bundle/ruby/3.3.0/bin/racc +29 -0
  169. data/vendor/bundle/ruby/3.3.0/bin/rake +29 -0
  170. data/vendor/bundle/ruby/3.3.0/bin/rspec +29 -0
  171. data/vendor/bundle/ruby/3.3.0/bin/rubocop +29 -0
  172. data/vendor/bundle/ruby/3.3.0/bin/ruby-parse +29 -0
  173. data/vendor/bundle/ruby/3.3.0/bin/ruby-rewrite +29 -0
  174. data/vendor/bundle/ruby/3.3.0/bin/thor +29 -0
  175. data/vendor/bundle/ruby/3.3.0/cache/addressable-2.8.7.gem +0 -0
  176. data/vendor/bundle/ruby/3.3.0/cache/ast-2.4.2.gem +0 -0
  177. data/vendor/bundle/ruby/3.3.0/cache/bigdecimal-3.1.9.gem +0 -0
  178. data/vendor/bundle/ruby/3.3.0/cache/bundler-audit-0.9.2.gem +0 -0
  179. data/vendor/bundle/ruby/3.3.0/cache/byebug-11.1.3.gem +0 -0
  180. data/vendor/bundle/ruby/3.3.0/cache/coderay-1.1.3.gem +0 -0
  181. data/vendor/bundle/ruby/3.3.0/cache/crack-1.0.0.gem +0 -0
  182. data/vendor/bundle/ruby/3.3.0/cache/date-3.4.1.gem +0 -0
  183. data/vendor/bundle/ruby/3.3.0/cache/diff-lcs-1.6.0.gem +0 -0
  184. data/vendor/bundle/ruby/3.3.0/cache/ethon-0.16.0.gem +0 -0
  185. data/vendor/bundle/ruby/3.3.0/cache/ffi-1.17.1-arm64-darwin.gem +0 -0
  186. data/vendor/bundle/ruby/3.3.0/cache/hashdiff-1.1.2.gem +0 -0
  187. data/vendor/bundle/ruby/3.3.0/cache/jaro_winkler-1.5.6.gem +0 -0
  188. data/vendor/bundle/ruby/3.3.0/cache/json-2.10.1.gem +0 -0
  189. data/vendor/bundle/ruby/3.3.0/cache/method_source-1.1.0.gem +0 -0
  190. data/vendor/bundle/ruby/3.3.0/cache/parallel-1.26.3.gem +0 -0
  191. data/vendor/bundle/ruby/3.3.0/cache/parser-3.3.7.1.gem +0 -0
  192. data/vendor/bundle/ruby/3.3.0/cache/pry-0.14.2.gem +0 -0
  193. data/vendor/bundle/ruby/3.3.0/cache/pry-byebug-3.10.1.gem +0 -0
  194. data/vendor/bundle/ruby/3.3.0/cache/psych-5.2.3.gem +0 -0
  195. data/vendor/bundle/ruby/3.3.0/cache/public_suffix-6.0.1.gem +0 -0
  196. data/vendor/bundle/ruby/3.3.0/cache/racc-1.8.1.gem +0 -0
  197. data/vendor/bundle/ruby/3.3.0/cache/rainbow-3.1.1.gem +0 -0
  198. data/vendor/bundle/ruby/3.3.0/cache/rake-13.0.6.gem +0 -0
  199. data/vendor/bundle/ruby/3.3.0/cache/rexml-3.4.0.gem +0 -0
  200. data/vendor/bundle/ruby/3.3.0/cache/rspec-3.13.0.gem +0 -0
  201. data/vendor/bundle/ruby/3.3.0/cache/rspec-core-3.13.3.gem +0 -0
  202. data/vendor/bundle/ruby/3.3.0/cache/rspec-expectations-3.13.3.gem +0 -0
  203. data/vendor/bundle/ruby/3.3.0/cache/rspec-mocks-3.13.2.gem +0 -0
  204. data/vendor/bundle/ruby/3.3.0/cache/rspec-support-3.13.2.gem +0 -0
  205. data/vendor/bundle/ruby/3.3.0/cache/rubocop-0.66.0.gem +0 -0
  206. data/vendor/bundle/ruby/3.3.0/cache/ruby-progressbar-1.13.0.gem +0 -0
  207. data/vendor/bundle/ruby/3.3.0/cache/stringio-3.1.3.gem +0 -0
  208. data/vendor/bundle/ruby/3.3.0/cache/stringio-3.1.4.gem +0 -0
  209. data/vendor/bundle/ruby/3.3.0/cache/stringio-3.1.5.gem +0 -0
  210. data/vendor/bundle/ruby/3.3.0/cache/thor-1.3.2.gem +0 -0
  211. data/vendor/bundle/ruby/3.3.0/cache/typhoeus-1.4.1.gem +0 -0
  212. data/vendor/bundle/ruby/3.3.0/cache/unicode-display_width-1.5.0.gem +0 -0
  213. data/vendor/bundle/ruby/3.3.0/cache/vcr-3.0.3.gem +0 -0
  214. data/vendor/bundle/ruby/3.3.0/cache/webmock-1.24.6.gem +0 -0
  215. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/bigdecimal-3.1.9/bigdecimal.bundle +0 -0
  216. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/bigdecimal-3.1.9/gem.build_complete +0 -0
  217. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/bigdecimal-3.1.9/gem_make.out +42 -0
  218. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/bigdecimal-3.1.9/mkmf.log +674 -0
  219. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/byebug-11.1.3/byebug/byebug.bundle +0 -0
  220. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/byebug-11.1.3/gem.build_complete +0 -0
  221. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/byebug-11.1.3/gem_make.out +22 -0
  222. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/date-3.4.1/date_core.bundle +0 -0
  223. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/date-3.4.1/gem.build_complete +0 -0
  224. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/date-3.4.1/gem_make.out +24 -0
  225. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/date-3.4.1/mkmf.log +88 -0
  226. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/jaro_winkler-1.5.6/gem.build_complete +0 -0
  227. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/jaro_winkler-1.5.6/gem_make.out +21 -0
  228. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/jaro_winkler-1.5.6/jaro_winkler/jaro_winkler_ext.bundle +0 -0
  229. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.10.1/gem.build_complete +0 -0
  230. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.10.1/gem_make.out +24 -0
  231. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.10.1/json/ext/generator.bundle +0 -0
  232. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.10.1/json/ext/parser.bundle +0 -0
  233. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.10.1/mkmf.log +177 -0
  234. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/psych-5.2.3/gem.build_complete +0 -0
  235. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/psych-5.2.3/gem_make.out +32 -0
  236. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/psych-5.2.3/mkmf.log +101 -0
  237. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/psych-5.2.3/psych.bundle +0 -0
  238. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/racc-1.8.1/gem.build_complete +0 -0
  239. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/racc-1.8.1/gem_make.out +18 -0
  240. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/racc-1.8.1/racc/cparse.bundle +0 -0
  241. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/stringio-3.1.3/gem.build_complete +0 -0
  242. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/stringio-3.1.3/gem_make.out +18 -0
  243. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/stringio-3.1.3/stringio.bundle +0 -0
  244. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/stringio-3.1.4/gem.build_complete +0 -0
  245. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/stringio-3.1.4/gem_make.out +18 -0
  246. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/stringio-3.1.4/stringio.bundle +0 -0
  247. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/stringio-3.1.5/gem.build_complete +0 -0
  248. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/stringio-3.1.5/gem_make.out +18 -0
  249. data/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/stringio-3.1.5/stringio.bundle +0 -0
  250. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/CHANGELOG.md +301 -0
  251. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/Gemfile +31 -0
  252. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/LICENSE.txt +202 -0
  253. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/README.md +121 -0
  254. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/Rakefile +37 -0
  255. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/addressable.gemspec +28 -0
  256. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/data/unicode.data +0 -0
  257. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/lib/addressable/idna/native.rb +66 -0
  258. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/lib/addressable/idna/pure.rb +505 -0
  259. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/lib/addressable/idna.rb +26 -0
  260. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/lib/addressable/template.rb +1029 -0
  261. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/lib/addressable/uri.rb +2602 -0
  262. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/lib/addressable/version.rb +31 -0
  263. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/lib/addressable.rb +4 -0
  264. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/spec/addressable/idna_spec.rb +302 -0
  265. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/spec/addressable/net_http_compat_spec.rb +29 -0
  266. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/spec/addressable/security_spec.rb +58 -0
  267. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/spec/addressable/template_spec.rb +1264 -0
  268. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/spec/addressable/uri_spec.rb +6840 -0
  269. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/spec/spec_helper.rb +33 -0
  270. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/tasks/clobber.rake +4 -0
  271. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/tasks/gem.rake +95 -0
  272. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/tasks/git.rake +47 -0
  273. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/tasks/metrics.rake +24 -0
  274. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/tasks/profile.rake +72 -0
  275. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/tasks/rspec.rake +23 -0
  276. data/vendor/bundle/ruby/3.3.0/gems/addressable-2.8.7/tasks/yard.rake +29 -0
  277. data/vendor/bundle/ruby/3.3.0/gems/ast-2.4.2/LICENSE.MIT +20 -0
  278. data/vendor/bundle/ruby/3.3.0/gems/ast-2.4.2/README.YARD.md +12 -0
  279. data/vendor/bundle/ruby/3.3.0/gems/ast-2.4.2/lib/ast/node.rb +268 -0
  280. data/vendor/bundle/ruby/3.3.0/gems/ast-2.4.2/lib/ast/processor/mixin.rb +288 -0
  281. data/vendor/bundle/ruby/3.3.0/gems/ast-2.4.2/lib/ast/processor.rb +12 -0
  282. data/vendor/bundle/ruby/3.3.0/gems/ast-2.4.2/lib/ast/sexp.rb +30 -0
  283. data/vendor/bundle/ruby/3.3.0/gems/ast-2.4.2/lib/ast.rb +17 -0
  284. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/LICENSE +56 -0
  285. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/bigdecimal.gemspec +57 -0
  286. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/Makefile +271 -0
  287. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/bigdecimal.c +7790 -0
  288. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/bigdecimal.h +313 -0
  289. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/bits.h +141 -0
  290. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/extconf.rb +64 -0
  291. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/feature.h +68 -0
  292. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/missing/dtoa.c +3462 -0
  293. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/missing.c +28 -0
  294. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/missing.h +196 -0
  295. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/ext/bigdecimal/static_assert.h +54 -0
  296. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/lib/bigdecimal/jacobian.rb +90 -0
  297. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/lib/bigdecimal/ludcmp.rb +89 -0
  298. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/lib/bigdecimal/math.rb +232 -0
  299. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/lib/bigdecimal/newton.rb +80 -0
  300. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/lib/bigdecimal/util.rb +185 -0
  301. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/lib/bigdecimal.bundle +0 -0
  302. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/lib/bigdecimal.rb +5 -0
  303. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/sample/linear.rb +74 -0
  304. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/sample/nlsolve.rb +40 -0
  305. data/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.9/sample/pi.rb +21 -0
  306. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/.document +3 -0
  307. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/.github/FUNDING.yml +3 -0
  308. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/.github/ISSUE_TEMPLATE/bug-report.md +46 -0
  309. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/.github/ISSUE_TEMPLATE/feature-request.md +14 -0
  310. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/.github/workflows/ruby.yml +42 -0
  311. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/.gitignore +11 -0
  312. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/.rspec +1 -0
  313. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/.rubocop.yml +87 -0
  314. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/.yardopts +1 -0
  315. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/COPYING.txt +674 -0
  316. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/ChangeLog.md +275 -0
  317. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/Gemfile +18 -0
  318. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/README.md +266 -0
  319. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/Rakefile +44 -0
  320. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/bin/bundle-audit +10 -0
  321. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/bin/bundler-audit +3 -0
  322. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/bundler-audit.gemspec +58 -0
  323. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/gemspec.yml +21 -0
  324. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/advisory.rb +229 -0
  325. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/cli/formats/json.rb +65 -0
  326. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/cli/formats/junit.rb +127 -0
  327. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/cli/formats/text.rb +122 -0
  328. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/cli/formats.rb +148 -0
  329. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/cli/thor_ext/shell/basic/say_error.rb +33 -0
  330. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/cli.rb +185 -0
  331. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/configuration.rb +108 -0
  332. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/database.rb +385 -0
  333. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/report.rb +149 -0
  334. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/results/insecure_source.rb +78 -0
  335. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/results/result.rb +21 -0
  336. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/results/unpatched_gem.rb +98 -0
  337. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/results.rb +19 -0
  338. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/scanner.rb +295 -0
  339. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/task.rb +114 -0
  340. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit/version.rb +23 -0
  341. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/lib/bundler/audit.rb +19 -0
  342. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/advisory_spec.rb +373 -0
  343. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/audit_spec.rb +8 -0
  344. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/bundle/insecure_sources/Gemfile +4 -0
  345. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/bundle/insecure_sources/Gemfile.lock +151 -0
  346. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/bundle/secure/Gemfile +4 -0
  347. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/bundle/secure/Gemfile.lock +123 -0
  348. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/bundle/unpatched_gems/Gemfile +3 -0
  349. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/bundle/unpatched_gems/Gemfile.lock +31 -0
  350. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/bundle/unpatched_gems_with_dot_configuration/.bundler-audit.yml +3 -0
  351. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/bundle/unpatched_gems_with_dot_configuration/Gemfile +3 -0
  352. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/bundle/unpatched_gems_with_dot_configuration/Gemfile.lock +31 -0
  353. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/cli/formats/json_spec.rb +114 -0
  354. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/cli/formats/junit_spec.rb +284 -0
  355. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/cli/formats/text_spec.rb +273 -0
  356. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/cli/formats_spec.rb +86 -0
  357. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/cli_spec.rb +164 -0
  358. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/configuration_spec.rb +78 -0
  359. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/database_spec.rb +385 -0
  360. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/fixtures/advisory/CVE-2020-1234.yml +21 -0
  361. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/fixtures/advisory/not_a_hash.yml +2 -0
  362. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/fixtures/config/bad/empty.yml +0 -0
  363. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/fixtures/config/bad/ignore_contains_a_non_string.yml +4 -0
  364. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/fixtures/config/bad/ignore_is_not_an_array.yml +3 -0
  365. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/fixtures/config/valid.yml +4 -0
  366. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/fixtures/lib/bundler/audit/cli/formats/bad.rb +17 -0
  367. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/fixtures/lib/bundler/audit/cli/formats/good.rb +17 -0
  368. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/integration_spec.rb +31 -0
  369. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/report_spec.rb +98 -0
  370. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/results/insecure_source_spec.rb +47 -0
  371. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/results/result_spec.rb +10 -0
  372. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/results/unpatched_gem_spec.rb +123 -0
  373. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/scanner_spec.rb +130 -0
  374. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/spec_helper.rb +67 -0
  375. data/vendor/bundle/ruby/3.3.0/gems/bundler-audit-0.9.2/spec/task_spec.rb +141 -0
  376. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/CHANGELOG.md +934 -0
  377. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/CONTRIBUTING.md +58 -0
  378. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/GUIDE.md +1806 -0
  379. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/LICENSE +23 -0
  380. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/README.md +199 -0
  381. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/exe/byebug +6 -0
  382. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug/Makefile +270 -0
  383. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug/breakpoint.c +517 -0
  384. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug/byebug.c +900 -0
  385. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug/byebug.h +145 -0
  386. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug/context.c +686 -0
  387. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug/extconf.rb +12 -0
  388. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug/locker.c +96 -0
  389. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug/threads.c +230 -0
  390. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/attacher.rb +48 -0
  391. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/breakpoint.rb +111 -0
  392. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/byebug.bundle +0 -0
  393. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/command.rb +111 -0
  394. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/command_list.rb +34 -0
  395. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/break.rb +112 -0
  396. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/catch.rb +78 -0
  397. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/condition.rb +55 -0
  398. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/continue.rb +68 -0
  399. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/debug.rb +38 -0
  400. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/delete.rb +55 -0
  401. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/disable/breakpoints.rb +42 -0
  402. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/disable/display.rb +43 -0
  403. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/disable.rb +33 -0
  404. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/display.rb +66 -0
  405. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/down.rb +45 -0
  406. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/edit.rb +69 -0
  407. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/enable/breakpoints.rb +42 -0
  408. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/enable/display.rb +43 -0
  409. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/enable.rb +33 -0
  410. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/finish.rb +57 -0
  411. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/frame.rb +57 -0
  412. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/help.rb +64 -0
  413. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/history.rb +39 -0
  414. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/breakpoints.rb +65 -0
  415. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/display.rb +49 -0
  416. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/file.rb +80 -0
  417. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/line.rb +35 -0
  418. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/program.rb +49 -0
  419. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info.rb +37 -0
  420. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/interrupt.rb +34 -0
  421. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/irb.rb +50 -0
  422. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/kill.rb +45 -0
  423. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/list.rb +159 -0
  424. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/method.rb +53 -0
  425. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/next.rb +40 -0
  426. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/pry.rb +41 -0
  427. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/quit.rb +42 -0
  428. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/restart.rb +64 -0
  429. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/save.rb +72 -0
  430. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/set.rb +79 -0
  431. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/show.rb +45 -0
  432. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/skip.rb +85 -0
  433. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/source.rb +40 -0
  434. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/step.rb +40 -0
  435. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/current.rb +37 -0
  436. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/list.rb +43 -0
  437. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/resume.rb +45 -0
  438. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/stop.rb +43 -0
  439. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/switch.rb +46 -0
  440. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread.rb +34 -0
  441. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/tracevar.rb +54 -0
  442. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/undisplay.rb +51 -0
  443. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/untracevar.rb +36 -0
  444. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/up.rb +45 -0
  445. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/all.rb +41 -0
  446. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/args.rb +39 -0
  447. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/const.rb +49 -0
  448. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/global.rb +37 -0
  449. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/instance.rb +39 -0
  450. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/local.rb +39 -0
  451. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var.rb +37 -0
  452. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/where.rb +53 -0
  453. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/commands.rb +40 -0
  454. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/context.rb +157 -0
  455. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/core.rb +115 -0
  456. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/errors.rb +29 -0
  457. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/frame.rb +185 -0
  458. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/bin.rb +47 -0
  459. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/eval.rb +126 -0
  460. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/file.rb +63 -0
  461. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/frame.rb +75 -0
  462. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/parse.rb +75 -0
  463. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/path.rb +40 -0
  464. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/reflection.rb +19 -0
  465. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/string.rb +33 -0
  466. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/thread.rb +67 -0
  467. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/toggle.rb +62 -0
  468. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/var.rb +54 -0
  469. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/history.rb +130 -0
  470. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/interface.rb +146 -0
  471. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/interfaces/local_interface.rb +63 -0
  472. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/interfaces/remote_interface.rb +50 -0
  473. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/interfaces/script_interface.rb +33 -0
  474. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/interfaces/test_interface.rb +67 -0
  475. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/option_setter.rb +95 -0
  476. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/printers/base.rb +68 -0
  477. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/printers/plain.rb +44 -0
  478. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/printers/texts/base.yml +115 -0
  479. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/printers/texts/plain.yml +33 -0
  480. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/processors/command_processor.rb +173 -0
  481. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/processors/control_processor.rb +24 -0
  482. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/processors/post_mortem_processor.rb +18 -0
  483. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/processors/script_processor.rb +49 -0
  484. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/remote/client.rb +57 -0
  485. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/remote/server.rb +47 -0
  486. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/remote.rb +85 -0
  487. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/runner.rb +198 -0
  488. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/setting.rb +79 -0
  489. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/autoirb.rb +29 -0
  490. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/autolist.rb +29 -0
  491. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/autopry.rb +29 -0
  492. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/autosave.rb +17 -0
  493. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/basename.rb +16 -0
  494. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/callstyle.rb +20 -0
  495. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/fullpath.rb +16 -0
  496. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/histfile.rb +20 -0
  497. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/histsize.rb +20 -0
  498. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/linetrace.rb +22 -0
  499. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/listsize.rb +21 -0
  500. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/post_mortem.rb +27 -0
  501. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/savefile.rb +20 -0
  502. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/stack_on_error.rb +15 -0
  503. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/width.rb +20 -0
  504. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/source_file_formatter.rb +71 -0
  505. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/subcommands.rb +54 -0
  506. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/version.rb +8 -0
  507. data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug.rb +3 -0
  508. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/MIT-LICENSE +22 -0
  509. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/README_INDEX.rdoc +123 -0
  510. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/bin/coderay +215 -0
  511. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/duo.rb +81 -0
  512. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/_map.rb +17 -0
  513. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/comment_filter.rb +25 -0
  514. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/count.rb +39 -0
  515. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/debug.rb +49 -0
  516. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/debug_lint.rb +63 -0
  517. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/div.rb +23 -0
  518. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/encoder.rb +190 -0
  519. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/filter.rb +58 -0
  520. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/html/css.rb +65 -0
  521. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/html/numbering.rb +108 -0
  522. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/html/output.rb +164 -0
  523. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/html.rb +333 -0
  524. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/json.rb +83 -0
  525. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/lines_of_code.rb +45 -0
  526. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/lint.rb +59 -0
  527. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/null.rb +18 -0
  528. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/page.rb +24 -0
  529. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/span.rb +23 -0
  530. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/statistic.rb +95 -0
  531. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/terminal.rb +195 -0
  532. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/text.rb +46 -0
  533. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/token_kind_filter.rb +111 -0
  534. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/xml.rb +72 -0
  535. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/yaml.rb +50 -0
  536. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders.rb +18 -0
  537. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/for_redcloth.rb +95 -0
  538. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/file_type.rb +151 -0
  539. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/plugin.rb +55 -0
  540. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/plugin_host.rb +221 -0
  541. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb +72 -0
  542. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/_map.rb +24 -0
  543. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/c.rb +189 -0
  544. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/clojure.rb +217 -0
  545. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/cpp.rb +217 -0
  546. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/css.rb +196 -0
  547. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/debug.rb +75 -0
  548. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/delphi.rb +144 -0
  549. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/diff.rb +221 -0
  550. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/erb.rb +81 -0
  551. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/go.rb +208 -0
  552. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/groovy.rb +268 -0
  553. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/haml.rb +168 -0
  554. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/html.rb +275 -0
  555. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/java/builtin_types.rb +421 -0
  556. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/java.rb +174 -0
  557. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/java_script.rb +236 -0
  558. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/json.rb +98 -0
  559. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/lua.rb +280 -0
  560. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/php.rb +527 -0
  561. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/python.rb +287 -0
  562. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/raydebug.rb +75 -0
  563. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/ruby/patterns.rb +178 -0
  564. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/ruby/string_state.rb +79 -0
  565. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/ruby.rb +477 -0
  566. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/sass.rb +232 -0
  567. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/scanner.rb +337 -0
  568. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/sql.rb +169 -0
  569. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/taskpaper.rb +36 -0
  570. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/text.rb +26 -0
  571. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/xml.rb +17 -0
  572. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/yaml.rb +140 -0
  573. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners.rb +27 -0
  574. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/styles/_map.rb +7 -0
  575. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/styles/alpha.rb +153 -0
  576. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/styles/style.rb +18 -0
  577. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/styles.rb +15 -0
  578. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/token_kinds.rb +85 -0
  579. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/tokens.rb +164 -0
  580. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/tokens_proxy.rb +55 -0
  581. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/version.rb +3 -0
  582. data/vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay.rb +284 -0
  583. data/vendor/bundle/ruby/3.3.0/gems/crack-1.0.0/History +52 -0
  584. data/vendor/bundle/ruby/3.3.0/gems/crack-1.0.0/LICENSE +20 -0
  585. data/vendor/bundle/ruby/3.3.0/gems/crack-1.0.0/README.md +43 -0
  586. data/vendor/bundle/ruby/3.3.0/gems/crack-1.0.0/lib/crack/json.rb +113 -0
  587. data/vendor/bundle/ruby/3.3.0/gems/crack-1.0.0/lib/crack/util.rb +17 -0
  588. data/vendor/bundle/ruby/3.3.0/gems/crack-1.0.0/lib/crack/version.rb +3 -0
  589. data/vendor/bundle/ruby/3.3.0/gems/crack-1.0.0/lib/crack/xml.rb +238 -0
  590. data/vendor/bundle/ruby/3.3.0/gems/crack-1.0.0/lib/crack.rb +8 -0
  591. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/README.md +102 -0
  592. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/Makefile +270 -0
  593. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/date_core.c +10064 -0
  594. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/date_parse.c +3086 -0
  595. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/date_strftime.c +638 -0
  596. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/date_strptime.c +703 -0
  597. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/date_tmx.h +56 -0
  598. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/extconf.rb +13 -0
  599. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/prereq.mk +19 -0
  600. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/zonetab.h +1564 -0
  601. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/ext/date/zonetab.list +330 -0
  602. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/lib/date.rb +70 -0
  603. data/vendor/bundle/ruby/3.3.0/gems/date-3.4.1/lib/date_core.bundle +0 -0
  604. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/.rspec +1 -0
  605. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/CHANGELOG.md +491 -0
  606. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/CODE_OF_CONDUCT.md +128 -0
  607. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/CONTRIBUTORS.md +48 -0
  608. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/Contributing.md +74 -0
  609. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/LICENCE.md +41 -0
  610. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/Manifest.txt +62 -0
  611. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/README.md +92 -0
  612. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/Rakefile +98 -0
  613. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/SECURITY.md +41 -0
  614. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/bin/htmldiff +35 -0
  615. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/bin/ldiff +9 -0
  616. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/docs/COPYING.txt +339 -0
  617. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/docs/artistic.txt +127 -0
  618. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/array.rb +7 -0
  619. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/backports.rb +9 -0
  620. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/block.rb +37 -0
  621. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/callbacks.rb +327 -0
  622. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/change.rb +174 -0
  623. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/htmldiff.rb +160 -0
  624. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/hunk.rb +379 -0
  625. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/internals.rb +308 -0
  626. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/ldiff.rb +183 -0
  627. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs/string.rb +5 -0
  628. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff/lcs.rb +742 -0
  629. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/lib/diff-lcs.rb +3 -0
  630. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/change_spec.rb +89 -0
  631. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/diff_spec.rb +51 -0
  632. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/aX +1 -0
  633. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/bXaX +1 -0
  634. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ds1.csv +50 -0
  635. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ds2.csv +51 -0
  636. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff +4 -0
  637. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff-c +7 -0
  638. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff-e +3 -0
  639. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff-f +3 -0
  640. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff-u +5 -0
  641. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef +4 -0
  642. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef-c +15 -0
  643. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef-e +3 -0
  644. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef-f +3 -0
  645. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef-u +9 -0
  646. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef2 +7 -0
  647. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef2-c +20 -0
  648. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef2-d +7 -0
  649. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef2-e +7 -0
  650. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef2-f +7 -0
  651. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/ldiff/output.diff.chef2-u +16 -0
  652. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/new-chef +4 -0
  653. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/new-chef2 +17 -0
  654. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/old-chef +4 -0
  655. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/fixtures/old-chef2 +14 -0
  656. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/hunk_spec.rb +83 -0
  657. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/issues_spec.rb +160 -0
  658. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/lcs_spec.rb +56 -0
  659. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/ldiff_spec.rb +100 -0
  660. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/patch_spec.rb +416 -0
  661. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/sdiff_spec.rb +216 -0
  662. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/spec_helper.rb +376 -0
  663. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/traverse_balanced_spec.rb +312 -0
  664. data/vendor/bundle/ruby/3.3.0/gems/diff-lcs-1.6.0/spec/traverse_sequences_spec.rb +137 -0
  665. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/.github/workflows/ruby.yml +41 -0
  666. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/.gitignore +8 -0
  667. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/.rspec +3 -0
  668. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/CHANGELOG.md +375 -0
  669. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/Gemfile +43 -0
  670. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/Guardfile +10 -0
  671. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/LICENSE +20 -0
  672. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/README.md +118 -0
  673. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/Rakefile +40 -0
  674. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/ethon.gemspec +26 -0
  675. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curl.rb +90 -0
  676. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/classes.rb +65 -0
  677. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/codes.rb +122 -0
  678. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/constants.rb +80 -0
  679. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/form_options.rb +37 -0
  680. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/functions.rb +58 -0
  681. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/infos.rb +151 -0
  682. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/messages.rb +19 -0
  683. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/options.rb +503 -0
  684. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/settings.rb +12 -0
  685. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/callbacks.rb +149 -0
  686. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/debug_info.rb +47 -0
  687. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/features.rb +31 -0
  688. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/form.rb +107 -0
  689. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/header.rb +61 -0
  690. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/actionable.rb +157 -0
  691. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/custom.rb +29 -0
  692. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/delete.rb +25 -0
  693. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/get.rb +24 -0
  694. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/head.rb +24 -0
  695. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/options.rb +24 -0
  696. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/patch.rb +24 -0
  697. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/post.rb +26 -0
  698. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/postable.rb +32 -0
  699. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/put.rb +27 -0
  700. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/putable.rb +25 -0
  701. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http.rb +68 -0
  702. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/informations.rb +116 -0
  703. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/mirror.rb +36 -0
  704. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/operations.rb +64 -0
  705. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/options.rb +50 -0
  706. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/params.rb +29 -0
  707. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/queryable.rb +154 -0
  708. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/response_callbacks.rb +136 -0
  709. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/util.rb +28 -0
  710. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy.rb +315 -0
  711. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/ethon_error.rb +9 -0
  712. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/global_init.rb +13 -0
  713. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/invalid_option.rb +13 -0
  714. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/invalid_value.rb +13 -0
  715. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_add.rb +12 -0
  716. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_fdset.rb +12 -0
  717. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_remove.rb +12 -0
  718. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_timeout.rb +13 -0
  719. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/select.rb +13 -0
  720. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors.rb +17 -0
  721. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/libc.rb +21 -0
  722. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/loggable.rb +59 -0
  723. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi/operations.rb +228 -0
  724. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi/options.rb +117 -0
  725. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi/stack.rb +49 -0
  726. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi.rb +126 -0
  727. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/version.rb +6 -0
  728. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon.rb +36 -0
  729. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/benchmarks.rb +104 -0
  730. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/memory_leaks.rb +114 -0
  731. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/perf_spec_helper.rb +37 -0
  732. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/support/memory_test_helpers.rb +76 -0
  733. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/support/os_memory_leak_tracker.rb +48 -0
  734. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/support/ruby_object_leak_tracker.rb +49 -0
  735. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/curl_spec.rb +38 -0
  736. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/callbacks_spec.rb +81 -0
  737. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb +54 -0
  738. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/features_spec.rb +24 -0
  739. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/form_spec.rb +104 -0
  740. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/header_spec.rb +79 -0
  741. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/custom_spec.rb +177 -0
  742. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/delete_spec.rb +21 -0
  743. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/get_spec.rb +126 -0
  744. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/head_spec.rb +80 -0
  745. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/options_spec.rb +51 -0
  746. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/patch_spec.rb +51 -0
  747. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/post_spec.rb +317 -0
  748. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/put_spec.rb +168 -0
  749. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http_spec.rb +64 -0
  750. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/informations_spec.rb +126 -0
  751. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/mirror_spec.rb +47 -0
  752. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/operations_spec.rb +271 -0
  753. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/options_spec.rb +193 -0
  754. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/queryable_spec.rb +235 -0
  755. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/response_callbacks_spec.rb +152 -0
  756. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/util_spec.rb +28 -0
  757. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy_spec.rb +203 -0
  758. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/libc_spec.rb +14 -0
  759. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/loggable_spec.rb +22 -0
  760. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi/operations_spec.rb +298 -0
  761. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi/options_spec.rb +182 -0
  762. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi/stack_spec.rb +80 -0
  763. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi_spec.rb +152 -0
  764. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/spec_helper.rb +28 -0
  765. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/support/localhost_server.rb +95 -0
  766. data/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/support/server.rb +115 -0
  767. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/CHANGELOG.md +465 -0
  768. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/COPYING +49 -0
  769. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/Gemfile +21 -0
  770. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/LICENSE +24 -0
  771. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/LICENSE.SPECS +22 -0
  772. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/README.md +137 -0
  773. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/Rakefile +206 -0
  774. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/ffi.gemspec +42 -0
  775. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/2.5/ffi_c.bundle +0 -0
  776. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/2.6/ffi_c.bundle +0 -0
  777. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/2.7/ffi_c.bundle +0 -0
  778. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/3.0/ffi_c.bundle +0 -0
  779. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/3.1/ffi_c.bundle +0 -0
  780. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/3.2/ffi_c.bundle +0 -0
  781. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/3.3/ffi_c.bundle +0 -0
  782. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/3.4/ffi_c.bundle +0 -0
  783. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/abstract_memory.rb +44 -0
  784. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/autopointer.rb +180 -0
  785. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/buffer.rb +4 -0
  786. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/callback.rb +4 -0
  787. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/compat.rb +43 -0
  788. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/data_converter.rb +67 -0
  789. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/dynamic_library.rb +118 -0
  790. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/enum.rb +302 -0
  791. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/errno.rb +43 -0
  792. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/ffi.rb +109 -0
  793. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/function.rb +71 -0
  794. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/io.rb +62 -0
  795. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/library.rb +576 -0
  796. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/library_path.rb +109 -0
  797. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/managedstruct.rb +84 -0
  798. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/memorypointer.rb +1 -0
  799. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  800. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  801. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
  802. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/aarch64-linux/types.conf +175 -0
  803. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  804. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  805. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  806. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  807. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/arm-linux/types.conf +132 -0
  808. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  809. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  810. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  811. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-darwin/types.conf +100 -0
  812. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  813. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  814. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-gnu/types.conf +107 -0
  815. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-linux/types.conf +103 -0
  816. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  817. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  818. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-solaris/types.conf +122 -0
  819. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/i386-windows/types.conf +52 -0
  820. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/ia64-linux/types.conf +104 -0
  821. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  822. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/mips-linux/types.conf +102 -0
  823. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/mips64-linux/types.conf +104 -0
  824. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  825. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  826. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  827. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  828. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  829. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  830. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  831. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  832. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/powerpc-linux/types.conf +130 -0
  833. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  834. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  835. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  836. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  837. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/s390-linux/types.conf +102 -0
  838. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/s390x-linux/types.conf +102 -0
  839. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/sparc-linux/types.conf +102 -0
  840. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  841. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/sparcv9-linux/types.conf +102 -0
  842. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  843. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  844. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  845. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  846. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
  847. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  848. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  849. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  850. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  851. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-linux/types.conf +132 -0
  852. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  853. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  854. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  855. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  856. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform/x86_64-windows/types.conf +52 -0
  857. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/platform.rb +187 -0
  858. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/pointer.rb +167 -0
  859. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/struct.rb +317 -0
  860. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/struct_by_reference.rb +72 -0
  861. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/struct_layout.rb +96 -0
  862. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/struct_layout_builder.rb +227 -0
  863. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/tools/const_generator.rb +232 -0
  864. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/tools/generator.rb +105 -0
  865. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/tools/generator_task.rb +32 -0
  866. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/tools/struct_generator.rb +195 -0
  867. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/tools/types_generator.rb +137 -0
  868. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/types.rb +222 -0
  869. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/union.rb +43 -0
  870. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/variadic.rb +80 -0
  871. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi/version.rb +3 -0
  872. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/lib/ffi.rb +27 -0
  873. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/rakelib/ffi_gem_helper.rb +65 -0
  874. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/samples/getlogin.rb +8 -0
  875. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/samples/getpid.rb +8 -0
  876. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/samples/gettimeofday.rb +18 -0
  877. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/samples/hello.rb +8 -0
  878. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/samples/hello_ractor.rb +11 -0
  879. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/samples/inotify.rb +60 -0
  880. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/samples/pty.rb +75 -0
  881. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/samples/qsort.rb +20 -0
  882. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/samples/qsort_ractor.rb +28 -0
  883. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/abstract_memory.rbs +165 -0
  884. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/auto_pointer.rbs +26 -0
  885. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/buffer.rbs +18 -0
  886. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/data_converter.rbs +10 -0
  887. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/dynamic_library.rbs +9 -0
  888. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/enum.rbs +38 -0
  889. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/function.rbs +39 -0
  890. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/library.rbs +42 -0
  891. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/native_type.rbs +86 -0
  892. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/pointer.rbs +42 -0
  893. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/struct.rbs +76 -0
  894. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/struct_by_reference.rbs +11 -0
  895. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/struct_by_value.rbs +7 -0
  896. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/struct_layout.rbs +9 -0
  897. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/struct_layout_builder.rbs +5 -0
  898. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi/type.rbs +39 -0
  899. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.1-arm64-darwin/sig/ffi.rbs +26 -0
  900. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/.github/workflows/ci.yml +28 -0
  901. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/.gitignore +15 -0
  902. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/.rspec +1 -0
  903. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/.rubocop.yml +42 -0
  904. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/.travis.yml +11 -0
  905. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/.yardopts +1 -0
  906. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/Gemfile +8 -0
  907. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/LICENSE +19 -0
  908. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/README.md +298 -0
  909. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/Rakefile +18 -0
  910. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/changelog.md +119 -0
  911. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/hashdiff.gemspec +39 -0
  912. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/lib/hashdiff/compare_hashes.rb +75 -0
  913. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/lib/hashdiff/diff.rb +182 -0
  914. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/lib/hashdiff/lcs.rb +66 -0
  915. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/lib/hashdiff/lcs_compare_arrays.rb +32 -0
  916. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/lib/hashdiff/linear_compare_array.rb +159 -0
  917. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/lib/hashdiff/patch.rb +88 -0
  918. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/lib/hashdiff/util.rb +155 -0
  919. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/lib/hashdiff/version.rb +5 -0
  920. data/vendor/bundle/ruby/3.3.0/gems/hashdiff-1.1.2/lib/hashdiff.rb +10 -0
  921. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/LICENSE.txt +22 -0
  922. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/Makefile +270 -0
  923. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/adj_matrix.c +97 -0
  924. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/adj_matrix.h +22 -0
  925. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/codepoints.c +61 -0
  926. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/codepoints.h +13 -0
  927. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/extconf.rb +5 -0
  928. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/jaro.c +121 -0
  929. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/jaro.h +17 -0
  930. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/jaro_winkler.c +77 -0
  931. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/lib/jaro_winkler/adjusting_table.rb +14 -0
  932. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/lib/jaro_winkler/jaro_winkler_ext.bundle +0 -0
  933. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/lib/jaro_winkler/jaro_winkler_pure.rb +135 -0
  934. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/lib/jaro_winkler/version.rb +5 -0
  935. data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/lib/jaro_winkler.rb +15 -0
  936. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/BSDL +22 -0
  937. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/CHANGES.md +584 -0
  938. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/COPYING +56 -0
  939. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/LEGAL +8 -0
  940. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/README.md +268 -0
  941. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/ext/json/ext/fbuffer/fbuffer.h +205 -0
  942. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/ext/json/ext/generator/Makefile +270 -0
  943. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/ext/json/ext/generator/extconf.rb +10 -0
  944. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/ext/json/ext/generator/generator.c +1822 -0
  945. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/ext/json/ext/parser/Makefile +270 -0
  946. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/ext/json/ext/parser/extconf.rb +12 -0
  947. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/ext/json/ext/parser/parser.c +1478 -0
  948. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/json.gemspec +63 -0
  949. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/bigdecimal.rb +58 -0
  950. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/complex.rb +51 -0
  951. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/core.rb +12 -0
  952. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/date.rb +54 -0
  953. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/date_time.rb +67 -0
  954. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/exception.rb +49 -0
  955. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/ostruct.rb +54 -0
  956. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/range.rb +54 -0
  957. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/rational.rb +49 -0
  958. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/regexp.rb +48 -0
  959. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/set.rb +48 -0
  960. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/struct.rb +52 -0
  961. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/symbol.rb +52 -0
  962. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/add/time.rb +52 -0
  963. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/common.rb +993 -0
  964. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/ext/generator/state.rb +106 -0
  965. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/ext/generator.bundle +0 -0
  966. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/ext/parser.bundle +0 -0
  967. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/ext.rb +45 -0
  968. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/generic_object.rb +75 -0
  969. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/truffle_ruby/generator.rb +690 -0
  970. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json/version.rb +5 -0
  971. data/vendor/bundle/ruby/3.3.0/gems/json-2.10.1/lib/json.rb +587 -0
  972. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/.gemtest +0 -0
  973. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/.yardopts +1 -0
  974. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/CHANGELOG.md +15 -0
  975. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/Gemfile +6 -0
  976. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/LICENSE +22 -0
  977. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/README.markdown +101 -0
  978. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/Rakefile +81 -0
  979. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/lib/method_source/code_helpers.rb +154 -0
  980. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/lib/method_source/source_location.rb +138 -0
  981. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/lib/method_source/version.rb +3 -0
  982. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/lib/method_source.rb +177 -0
  983. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/method_source.gemspec +19 -0
  984. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/spec/method_source/code_helpers_spec.rb +43 -0
  985. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/spec/method_source_spec.rb +157 -0
  986. data/vendor/bundle/ruby/3.3.0/gems/method_source-1.1.0/spec/spec_helper.rb +107 -0
  987. data/vendor/bundle/ruby/3.3.0/gems/parallel-1.26.3/MIT-LICENSE.txt +20 -0
  988. data/vendor/bundle/ruby/3.3.0/gems/parallel-1.26.3/lib/parallel/version.rb +4 -0
  989. data/vendor/bundle/ruby/3.3.0/gems/parallel-1.26.3/lib/parallel.rb +708 -0
  990. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/LICENSE.txt +26 -0
  991. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/bin/ruby-parse +7 -0
  992. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/bin/ruby-rewrite +7 -0
  993. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/gauntlet_parser.rb +123 -0
  994. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/all.rb +17 -0
  995. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ast/node.rb +40 -0
  996. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ast/processor.rb +293 -0
  997. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/base.rb +291 -0
  998. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/builders/default.rb +2338 -0
  999. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/clobbering_error.rb +13 -0
  1000. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/color.rb +32 -0
  1001. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/context.rb +51 -0
  1002. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/current.rb +137 -0
  1003. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/current_arg_stack.rb +46 -0
  1004. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/deprecation.rb +13 -0
  1005. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/diagnostic/engine.rb +104 -0
  1006. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/diagnostic.rb +163 -0
  1007. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/lexer/dedenter.rb +88 -0
  1008. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/lexer/explanation.rb +55 -0
  1009. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/lexer/literal.rb +284 -0
  1010. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/lexer/stack_state.rb +49 -0
  1011. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/lexer-F0.rb +12922 -0
  1012. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/lexer-F1.rb +14875 -0
  1013. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/lexer-strings.rb +5424 -0
  1014. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/macruby.rb +9634 -0
  1015. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/max_numparam_stack.rb +56 -0
  1016. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/messages.rb +125 -0
  1017. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/meta.rb +40 -0
  1018. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/rewriter.rb +105 -0
  1019. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby18.rb +9272 -0
  1020. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby19.rb +9558 -0
  1021. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby20.rb +10229 -0
  1022. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby21.rb +10203 -0
  1023. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby22.rb +10302 -0
  1024. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby23.rb +10322 -0
  1025. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby24.rb +10454 -0
  1026. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby25.rb +10374 -0
  1027. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby26.rb +10352 -0
  1028. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby27.rb +11947 -0
  1029. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby28.rb +8047 -0
  1030. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby30.rb +12243 -0
  1031. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby31.rb +12716 -0
  1032. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby32.rb +12704 -0
  1033. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby33.rb +12589 -0
  1034. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/ruby34.rb +12596 -0
  1035. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/rubymotion.rb +9515 -0
  1036. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/runner/ruby_parse.rb +157 -0
  1037. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/runner/ruby_rewrite.rb +101 -0
  1038. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/runner.rb +299 -0
  1039. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/buffer.rb +369 -0
  1040. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/comment/associator.rb +233 -0
  1041. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/comment.rb +134 -0
  1042. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/collection.rb +18 -0
  1043. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/condition.rb +21 -0
  1044. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/constant.rb +32 -0
  1045. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/definition.rb +23 -0
  1046. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/for.rb +19 -0
  1047. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/heredoc.rb +19 -0
  1048. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/index.rb +33 -0
  1049. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/keyword.rb +20 -0
  1050. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/method_definition.rb +25 -0
  1051. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/objc_kwarg.rb +19 -0
  1052. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/operator.rb +17 -0
  1053. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/rescue_body.rb +21 -0
  1054. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/send.rb +36 -0
  1055. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/ternary.rb +18 -0
  1056. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map/variable.rb +31 -0
  1057. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/map.rb +186 -0
  1058. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/range.rb +326 -0
  1059. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/rewriter/action.rb +44 -0
  1060. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/rewriter.rb +513 -0
  1061. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/tree_rewriter/action.rb +243 -0
  1062. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/source/tree_rewriter.rb +431 -0
  1063. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/static_environment.rb +134 -0
  1064. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/syntax_error.rb +21 -0
  1065. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/tree_rewriter.rb +133 -0
  1066. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/unknown_encoding_in_magic_comment_error.rb +15 -0
  1067. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/variables_stack.rb +36 -0
  1068. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser/version.rb +5 -0
  1069. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/lib/parser.rb +91 -0
  1070. data/vendor/bundle/ruby/3.3.0/gems/parser-3.3.7.1/parser.gemspec +43 -0
  1071. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/CHANGELOG.md +1141 -0
  1072. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/LICENSE +25 -0
  1073. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/README.md +466 -0
  1074. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/bin/pry +13 -0
  1075. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/basic_object.rb +10 -0
  1076. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/block_command.rb +22 -0
  1077. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/class_command.rb +194 -0
  1078. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/cli.rb +207 -0
  1079. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/code/code_file.rb +114 -0
  1080. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/code/code_range.rb +73 -0
  1081. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/code/loc.rb +105 -0
  1082. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/code.rb +357 -0
  1083. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/code_object.rb +197 -0
  1084. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/color_printer.rb +66 -0
  1085. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/command.rb +520 -0
  1086. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/command_set.rb +418 -0
  1087. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/command_state.rb +31 -0
  1088. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/amend_line.rb +103 -0
  1089. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/bang.rb +24 -0
  1090. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/bang_pry.rb +21 -0
  1091. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/abstract_formatter.rb +32 -0
  1092. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/exception_formatter.rb +90 -0
  1093. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb +77 -0
  1094. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/input_expression_formatter.rb +48 -0
  1095. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat.rb +70 -0
  1096. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cd.rb +46 -0
  1097. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/change_inspector.rb +34 -0
  1098. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/change_prompt.rb +51 -0
  1099. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/clear_screen.rb +20 -0
  1100. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/code_collector.rb +182 -0
  1101. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/disable_pry.rb +31 -0
  1102. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/easter_eggs.rb +101 -0
  1103. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/edit/exception_patcher.rb +29 -0
  1104. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/edit/file_and_line_locator.rb +47 -0
  1105. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/edit.rb +223 -0
  1106. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/exit.rb +47 -0
  1107. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/exit_all.rb +33 -0
  1108. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/exit_program.rb +27 -0
  1109. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/find_method.rb +199 -0
  1110. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/fix_indent.rb +23 -0
  1111. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/help.rb +171 -0
  1112. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/hist.rb +182 -0
  1113. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/import_set.rb +27 -0
  1114. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/jump_to.rb +33 -0
  1115. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/list_inspectors.rb +42 -0
  1116. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/constants.rb +75 -0
  1117. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb +55 -0
  1118. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/globals.rb +50 -0
  1119. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/grep.rb +23 -0
  1120. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/instance_vars.rb +40 -0
  1121. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/interrogatable.rb +24 -0
  1122. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/jruby_hacks.rb +55 -0
  1123. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/local_names.rb +37 -0
  1124. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/local_vars.rb +47 -0
  1125. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/ls_entity.rb +65 -0
  1126. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/methods.rb +55 -0
  1127. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/methods_helper.rb +50 -0
  1128. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/self_methods.rb +34 -0
  1129. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls.rb +135 -0
  1130. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/nesting.rb +29 -0
  1131. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/play.rb +113 -0
  1132. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/pry_backtrace.rb +30 -0
  1133. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/pry_version.rb +21 -0
  1134. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/raise_up.rb +38 -0
  1135. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/reload_code.rb +74 -0
  1136. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/reset.rb +22 -0
  1137. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ri.rb +75 -0
  1138. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/save_file.rb +63 -0
  1139. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/shell_command.rb +75 -0
  1140. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/shell_mode.rb +29 -0
  1141. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/show_doc.rb +93 -0
  1142. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/show_info.rb +234 -0
  1143. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/show_input.rb +22 -0
  1144. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/show_source.rb +118 -0
  1145. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/stat.rb +44 -0
  1146. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/switch_to.rb +29 -0
  1147. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/toggle_color.rb +28 -0
  1148. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/watch_expression/expression.rb +43 -0
  1149. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/watch_expression.rb +110 -0
  1150. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/whereami.rb +205 -0
  1151. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/wtf.rb +95 -0
  1152. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/config/attributable.rb +22 -0
  1153. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/config/lazy_value.rb +29 -0
  1154. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/config/memoized_value.rb +34 -0
  1155. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/config/value.rb +24 -0
  1156. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/config.rb +314 -0
  1157. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/control_d_handler.rb +28 -0
  1158. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/core_extensions.rb +144 -0
  1159. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/editor.rb +157 -0
  1160. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/env.rb +18 -0
  1161. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/exception_handler.rb +43 -0
  1162. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/exceptions.rb +73 -0
  1163. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/forwardable.rb +27 -0
  1164. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/helpers/base_helpers.rb +71 -0
  1165. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/helpers/command_helpers.rb +146 -0
  1166. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/helpers/documentation_helpers.rb +84 -0
  1167. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/helpers/options_helpers.rb +34 -0
  1168. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/helpers/platform.rb +55 -0
  1169. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/helpers/table.rb +121 -0
  1170. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/helpers/text.rb +118 -0
  1171. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/helpers.rb +8 -0
  1172. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/history.rb +153 -0
  1173. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/hooks.rb +180 -0
  1174. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/indent.rb +412 -0
  1175. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/input_completer.rb +283 -0
  1176. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/input_lock.rb +129 -0
  1177. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/inspector.rb +39 -0
  1178. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/last_exception.rb +61 -0
  1179. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/method/disowned.rb +67 -0
  1180. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/method/patcher.rb +131 -0
  1181. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/method/weird_method_locator.rb +222 -0
  1182. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/method.rb +600 -0
  1183. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/object_path.rb +91 -0
  1184. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/output.rb +136 -0
  1185. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/pager.rb +249 -0
  1186. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/prompt.rb +214 -0
  1187. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/pry_class.rb +396 -0
  1188. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/pry_instance.rb +701 -0
  1189. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/repl.rb +256 -0
  1190. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/repl_file_loader.rb +79 -0
  1191. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/ring.rb +89 -0
  1192. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/slop/LICENSE +20 -0
  1193. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/slop/commands.rb +190 -0
  1194. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/slop/option.rb +210 -0
  1195. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/slop.rb +672 -0
  1196. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/syntax_highlighter.rb +26 -0
  1197. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/system_command_handler.rb +17 -0
  1198. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/testable/evalable.rb +24 -0
  1199. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/testable/mockable.rb +22 -0
  1200. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/testable/pry_tester.rb +88 -0
  1201. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/testable/utility.rb +34 -0
  1202. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/testable/variables.rb +52 -0
  1203. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/testable.rb +68 -0
  1204. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/version.rb +5 -0
  1205. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/warning.rb +20 -0
  1206. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/wrapped_module/candidate.rb +139 -0
  1207. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/wrapped_module.rb +382 -0
  1208. data/vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry.rb +145 -0
  1209. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/CHANGELOG.md +230 -0
  1210. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/LICENSE +20 -0
  1211. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/README.md +189 -0
  1212. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/byebug/processors/pry_processor.rb +158 -0
  1213. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry/byebug/breakpoints.rb +167 -0
  1214. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/base.rb +29 -0
  1215. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/cli.rb +6 -0
  1216. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/backtrace.rb +31 -0
  1217. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/breakpoint.rb +137 -0
  1218. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/continue.rb +43 -0
  1219. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/down.rb +35 -0
  1220. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/exit_all.rb +18 -0
  1221. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/finish.rb +28 -0
  1222. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/frame.rb +35 -0
  1223. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/next.rb +39 -0
  1224. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/step.rb +34 -0
  1225. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/up.rb +35 -0
  1226. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands.rb +12 -0
  1227. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/control_d_handler.rb +9 -0
  1228. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/helpers/breakpoints.rb +82 -0
  1229. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/helpers/location.rb +24 -0
  1230. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/helpers/multiline.rb +23 -0
  1231. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/helpers/navigation.rb +19 -0
  1232. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/pry_ext.rb +20 -0
  1233. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/pry_remote_ext.rb +44 -0
  1234. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/version.rb +8 -0
  1235. data/vendor/bundle/ruby/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug.rb +4 -0
  1236. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/CONTRIBUTING.md +24 -0
  1237. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/LICENSE +21 -0
  1238. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/README.md +80 -0
  1239. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/Makefile +292 -0
  1240. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/depend +17 -0
  1241. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/extconf.rb +53 -0
  1242. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c +36 -0
  1243. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.h +17 -0
  1244. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych_emitter.c +589 -0
  1245. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych_emitter.h +8 -0
  1246. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych_parser.c +564 -0
  1247. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych_parser.h +6 -0
  1248. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych_to_ruby.c +38 -0
  1249. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych_to_ruby.h +8 -0
  1250. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych_yaml_tree.c +11 -0
  1251. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych_yaml_tree.h +8 -0
  1252. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/class_loader.rb +104 -0
  1253. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/coder.rb +95 -0
  1254. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/core_ext.rb +19 -0
  1255. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/exception.rb +28 -0
  1256. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/handler.rb +255 -0
  1257. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/handlers/document_stream.rb +23 -0
  1258. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/handlers/recorder.rb +40 -0
  1259. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/json/ruby_events.rb +20 -0
  1260. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/json/stream.rb +17 -0
  1261. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/json/tree_builder.rb +13 -0
  1262. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/json/yaml_events.rb +30 -0
  1263. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/nodes/alias.rb +21 -0
  1264. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/nodes/document.rb +63 -0
  1265. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/nodes/mapping.rb +59 -0
  1266. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/nodes/node.rb +75 -0
  1267. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/nodes/scalar.rb +70 -0
  1268. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/nodes/sequence.rb +84 -0
  1269. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/nodes/stream.rb +40 -0
  1270. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/nodes.rb +78 -0
  1271. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/omap.rb +5 -0
  1272. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/parser.rb +65 -0
  1273. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/scalar_scanner.rb +141 -0
  1274. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/set.rb +5 -0
  1275. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/stream.rb +38 -0
  1276. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/streaming.rb +28 -0
  1277. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/syntax_error.rb +22 -0
  1278. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/tree_builder.rb +137 -0
  1279. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/versions.rb +10 -0
  1280. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/visitors/depth_first.rb +27 -0
  1281. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/visitors/emitter.rb +52 -0
  1282. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/visitors/json_tree.rb +25 -0
  1283. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/visitors/to_ruby.rb +435 -0
  1284. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/visitors/visitor.rb +34 -0
  1285. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/visitors/yaml_tree.rb +583 -0
  1286. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/visitors.rb +7 -0
  1287. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych/y.rb +10 -0
  1288. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych.bundle +0 -0
  1289. data/vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/lib/psych.rb +763 -0
  1290. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/.yardopts +1 -0
  1291. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/CHANGELOG.md +491 -0
  1292. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/LICENSE.txt +22 -0
  1293. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/README.md +222 -0
  1294. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/SECURITY.md +24 -0
  1295. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/data/list.txt +15843 -0
  1296. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/lib/public_suffix/domain.rb +235 -0
  1297. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/lib/public_suffix/errors.rb +41 -0
  1298. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/lib/public_suffix/list.rb +247 -0
  1299. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/lib/public_suffix/rule.rb +350 -0
  1300. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/lib/public_suffix/version.rb +14 -0
  1301. data/vendor/bundle/ruby/3.3.0/gems/public_suffix-6.0.1/lib/public_suffix.rb +177 -0
  1302. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/BSDL +22 -0
  1303. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/COPYING +56 -0
  1304. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/ChangeLog +846 -0
  1305. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/README.ja.rdoc +58 -0
  1306. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/README.rdoc +60 -0
  1307. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/TODO +5 -0
  1308. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/bin/racc +320 -0
  1309. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/doc/en/grammar.en.rdoc +218 -0
  1310. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/doc/en/grammar2.en.rdoc +219 -0
  1311. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/doc/ja/command.ja.html +99 -0
  1312. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/doc/ja/debug.ja.rdoc +36 -0
  1313. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/doc/ja/grammar.ja.rdoc +348 -0
  1314. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/doc/ja/index.ja.html +10 -0
  1315. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/doc/ja/parser.ja.rdoc +125 -0
  1316. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/doc/ja/usage.ja.html +414 -0
  1317. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/ext/racc/cparse/Makefile +270 -0
  1318. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/ext/racc/cparse/cparse.c +840 -0
  1319. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/ext/racc/cparse/extconf.rb +8 -0
  1320. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/compat.rb +33 -0
  1321. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/cparse.bundle +0 -0
  1322. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/debugflags.rb +60 -0
  1323. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/exception.rb +16 -0
  1324. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/grammar.rb +1191 -0
  1325. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/grammarfileparser.rb +667 -0
  1326. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/info.rb +18 -0
  1327. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/iset.rb +92 -0
  1328. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/logfilegenerator.rb +212 -0
  1329. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/parser-text.rb +644 -0
  1330. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/parser.rb +630 -0
  1331. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/parserfilegenerator.rb +473 -0
  1332. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/sourcetext.rb +35 -0
  1333. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/state.rb +976 -0
  1334. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/statetransitiontable.rb +311 -0
  1335. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc/static.rb +5 -0
  1336. data/vendor/bundle/ruby/3.3.0/gems/racc-1.8.1/lib/racc.rb +6 -0
  1337. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/Changelog.md +101 -0
  1338. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/LICENSE +20 -0
  1339. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/README.markdown +227 -0
  1340. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/color.rb +150 -0
  1341. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/ext/string.rb +64 -0
  1342. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/global.rb +25 -0
  1343. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/null_presenter.rb +100 -0
  1344. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/presenter.rb +144 -0
  1345. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/refinement.rb +14 -0
  1346. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/string_utils.rb +22 -0
  1347. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/version.rb +5 -0
  1348. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/wrapper.rb +22 -0
  1349. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow/x11_color_names.rb +153 -0
  1350. data/vendor/bundle/ruby/3.3.0/gems/rainbow-3.1.1/lib/rainbow.rb +13 -0
  1351. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/History.rdoc +2403 -0
  1352. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/MIT-LICENSE +21 -0
  1353. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/README.rdoc +155 -0
  1354. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/command_line_usage.rdoc +158 -0
  1355. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/example/Rakefile1 +38 -0
  1356. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/example/Rakefile2 +35 -0
  1357. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/example/a.c +6 -0
  1358. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/example/b.c +6 -0
  1359. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/example/main.c +11 -0
  1360. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/glossary.rdoc +42 -0
  1361. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/jamis.rb +592 -0
  1362. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/proto_rake.rdoc +127 -0
  1363. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/rake.1 +156 -0
  1364. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/rakefile.rdoc +622 -0
  1365. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/doc/rational.rdoc +151 -0
  1366. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/exe/rake +27 -0
  1367. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/application.rb +831 -0
  1368. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/backtrace.rb +24 -0
  1369. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/clean.rb +78 -0
  1370. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/cloneable.rb +17 -0
  1371. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/cpu_counter.rb +107 -0
  1372. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/default_loader.rb +15 -0
  1373. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/dsl_definition.rb +195 -0
  1374. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/early_time.rb +22 -0
  1375. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/ext/core.rb +26 -0
  1376. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/ext/string.rb +176 -0
  1377. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/file_creation_task.rb +25 -0
  1378. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/file_list.rb +435 -0
  1379. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/file_task.rb +54 -0
  1380. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/file_utils.rb +134 -0
  1381. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/file_utils_ext.rb +134 -0
  1382. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/invocation_chain.rb +57 -0
  1383. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/invocation_exception_mixin.rb +17 -0
  1384. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/late_time.rb +18 -0
  1385. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/linked_list.rb +112 -0
  1386. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/loaders/makefile.rb +54 -0
  1387. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/multi_task.rb +14 -0
  1388. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/name_space.rb +38 -0
  1389. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/packagetask.rb +222 -0
  1390. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/phony.rb +16 -0
  1391. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/private_reader.rb +21 -0
  1392. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/promise.rb +100 -0
  1393. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/pseudo_status.rb +30 -0
  1394. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/rake_module.rb +67 -0
  1395. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/rake_test_loader.rb +27 -0
  1396. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/rule_recursion_overflow_error.rb +20 -0
  1397. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/scope.rb +43 -0
  1398. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/task.rb +434 -0
  1399. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/task_argument_error.rb +8 -0
  1400. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/task_arguments.rb +109 -0
  1401. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/task_manager.rb +331 -0
  1402. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/tasklib.rb +12 -0
  1403. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/testtask.rb +189 -0
  1404. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/thread_history_display.rb +49 -0
  1405. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/thread_pool.rb +163 -0
  1406. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/trace_output.rb +23 -0
  1407. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/version.rb +10 -0
  1408. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake/win32.rb +51 -0
  1409. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/lib/rake.rb +71 -0
  1410. data/vendor/bundle/ruby/3.3.0/gems/rake-13.0.6/rake.gemspec +100 -0
  1411. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/LICENSE.txt +22 -0
  1412. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/NEWS.md +675 -0
  1413. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/README.md +57 -0
  1414. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/context.rdoc +143 -0
  1415. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/rdoc/child.rdoc +87 -0
  1416. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/rdoc/document.rdoc +276 -0
  1417. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/rdoc/element.rdoc +602 -0
  1418. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/rdoc/node.rdoc +97 -0
  1419. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/rdoc/parent.rdoc +267 -0
  1420. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/tocs/child_toc.rdoc +12 -0
  1421. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/tocs/document_toc.rdoc +30 -0
  1422. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/tocs/element_toc.rdoc +55 -0
  1423. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/tocs/master_toc.rdoc +135 -0
  1424. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/tocs/node_toc.rdoc +16 -0
  1425. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tasks/tocs/parent_toc.rdoc +25 -0
  1426. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/doc/rexml/tutorial.rdoc +1358 -0
  1427. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/attlistdecl.rb +63 -0
  1428. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/attribute.rb +211 -0
  1429. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/cdata.rb +68 -0
  1430. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/child.rb +97 -0
  1431. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/comment.rb +80 -0
  1432. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/doctype.rb +311 -0
  1433. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/document.rb +455 -0
  1434. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/dtd/attlistdecl.rb +11 -0
  1435. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/dtd/dtd.rb +47 -0
  1436. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/dtd/elementdecl.rb +18 -0
  1437. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/dtd/entitydecl.rb +57 -0
  1438. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/dtd/notationdecl.rb +40 -0
  1439. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/element.rb +2584 -0
  1440. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/encoding.rb +51 -0
  1441. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/entity.rb +142 -0
  1442. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/formatters/default.rb +116 -0
  1443. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/formatters/pretty.rb +142 -0
  1444. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/formatters/transitive.rb +58 -0
  1445. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/functions.rb +446 -0
  1446. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/instruction.rb +79 -0
  1447. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/light/node.rb +188 -0
  1448. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/namespace.rb +63 -0
  1449. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/node.rb +80 -0
  1450. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/output.rb +30 -0
  1451. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parent.rb +166 -0
  1452. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parseexception.rb +53 -0
  1453. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parsers/baseparser.rb +866 -0
  1454. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parsers/lightparser.rb +59 -0
  1455. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parsers/pullparser.rb +213 -0
  1456. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parsers/sax2parser.rb +270 -0
  1457. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parsers/streamparser.rb +67 -0
  1458. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parsers/treeparser.rb +89 -0
  1459. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parsers/ultralightparser.rb +57 -0
  1460. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/parsers/xpathparser.rb +739 -0
  1461. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/quickpath.rb +266 -0
  1462. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/rexml.rb +39 -0
  1463. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/sax2listener.rb +98 -0
  1464. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/security.rb +28 -0
  1465. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/source.rb +369 -0
  1466. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/streamlistener.rb +93 -0
  1467. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/text.rb +423 -0
  1468. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/undefinednamespaceexception.rb +9 -0
  1469. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/validation/relaxng.rb +539 -0
  1470. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/validation/validation.rb +144 -0
  1471. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/validation/validationexception.rb +10 -0
  1472. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/xmldecl.rb +130 -0
  1473. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/xmltokens.rb +85 -0
  1474. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/xpath.rb +81 -0
  1475. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml/xpath_parser.rb +978 -0
  1476. data/vendor/bundle/ruby/3.3.0/gems/rexml-3.4.0/lib/rexml.rb +3 -0
  1477. data/vendor/bundle/ruby/3.3.0/gems/rspec-3.13.0/LICENSE.md +27 -0
  1478. data/vendor/bundle/ruby/3.3.0/gems/rspec-3.13.0/README.md +47 -0
  1479. data/vendor/bundle/ruby/3.3.0/gems/rspec-3.13.0/lib/rspec/version.rb +5 -0
  1480. data/vendor/bundle/ruby/3.3.0/gems/rspec-3.13.0/lib/rspec.rb +3 -0
  1481. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/.document +5 -0
  1482. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/.yardopts +8 -0
  1483. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/Changelog.md +2425 -0
  1484. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/LICENSE.md +26 -0
  1485. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/README.md +389 -0
  1486. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/exe/rspec +4 -0
  1487. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/autorun.rb +3 -0
  1488. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/backtrace_formatter.rb +65 -0
  1489. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/bisect/coordinator.rb +62 -0
  1490. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/bisect/example_minimizer.rb +173 -0
  1491. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/bisect/fork_runner.rb +140 -0
  1492. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/bisect/server.rb +61 -0
  1493. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/bisect/shell_command.rb +126 -0
  1494. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/bisect/shell_runner.rb +73 -0
  1495. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/bisect/utilities.rb +69 -0
  1496. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/configuration.rb +2419 -0
  1497. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/configuration_options.rb +240 -0
  1498. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/did_you_mean.rb +52 -0
  1499. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/drb.rb +120 -0
  1500. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/dsl.rb +98 -0
  1501. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/example.rb +666 -0
  1502. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/example_group.rb +905 -0
  1503. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/example_status_persister.rb +235 -0
  1504. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/filter_manager.rb +231 -0
  1505. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/flat_map.rb +20 -0
  1506. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
  1507. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/base_formatter.rb +70 -0
  1508. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
  1509. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
  1510. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
  1511. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/console_codes.rb +76 -0
  1512. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  1513. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
  1514. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/exception_presenter.rb +552 -0
  1515. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
  1516. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  1517. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/helpers.rb +118 -0
  1518. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/html_formatter.rb +153 -0
  1519. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/html_printer.rb +412 -0
  1520. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/html_snippet_extractor.rb +122 -0
  1521. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/json_formatter.rb +103 -0
  1522. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  1523. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/progress_formatter.rb +29 -0
  1524. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/protocol.rb +182 -0
  1525. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
  1526. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
  1527. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/formatters.rb +279 -0
  1528. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/hooks.rb +646 -0
  1529. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/invocations.rb +87 -0
  1530. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/memoized_helpers.rb +580 -0
  1531. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/metadata.rb +498 -0
  1532. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/metadata_filter.rb +255 -0
  1533. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  1534. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  1535. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  1536. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/mocking_adapters/null.rb +14 -0
  1537. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  1538. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  1539. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/notifications.rb +523 -0
  1540. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/option_parser.rb +325 -0
  1541. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/ordering.rb +208 -0
  1542. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/output_wrapper.rb +29 -0
  1543. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/pending.rb +157 -0
  1544. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/profiler.rb +34 -0
  1545. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/project_initializer/.rspec +1 -0
  1546. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/project_initializer/spec/spec_helper.rb +98 -0
  1547. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/project_initializer.rb +48 -0
  1548. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/rake_task.rb +190 -0
  1549. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/reporter.rb +266 -0
  1550. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/ruby_project.rb +53 -0
  1551. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/runner.rb +216 -0
  1552. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/sandbox.rb +37 -0
  1553. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/set.rb +54 -0
  1554. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/shared_context.rb +55 -0
  1555. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/shared_example_group.rb +271 -0
  1556. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/shell_escape.rb +49 -0
  1557. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  1558. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/version.rb +9 -0
  1559. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/warnings.rb +40 -0
  1560. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core/world.rb +287 -0
  1561. data/vendor/bundle/ruby/3.3.0/gems/rspec-core-3.13.3/lib/rspec/core.rb +212 -0
  1562. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/.document +5 -0
  1563. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/.yardopts +6 -0
  1564. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/Changelog.md +1352 -0
  1565. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/LICENSE.md +25 -0
  1566. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/README.md +326 -0
  1567. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations/block_snippet_extractor.rb +255 -0
  1568. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations/configuration.rb +235 -0
  1569. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations/expectation_target.rb +163 -0
  1570. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations/fail_with.rb +39 -0
  1571. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations/failure_aggregator.rb +236 -0
  1572. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations/handler.rb +181 -0
  1573. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations/minitest_integration.rb +58 -0
  1574. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations/syntax.rb +132 -0
  1575. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations/version.rb +8 -0
  1576. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/expectations.rb +82 -0
  1577. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/aliased_matcher.rb +116 -0
  1578. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/all.rb +86 -0
  1579. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/base_matcher.rb +225 -0
  1580. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/be.rb +191 -0
  1581. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/be_between.rb +77 -0
  1582. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
  1583. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
  1584. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/be_within.rb +72 -0
  1585. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/change.rb +452 -0
  1586. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/compound.rb +293 -0
  1587. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/contain_exactly.rb +312 -0
  1588. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/count_expectation.rb +171 -0
  1589. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/cover.rb +24 -0
  1590. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/eq.rb +44 -0
  1591. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/eql.rb +38 -0
  1592. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/equal.rb +81 -0
  1593. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/exist.rb +90 -0
  1594. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/has.rb +194 -0
  1595. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  1596. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/include.rb +218 -0
  1597. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/match.rb +108 -0
  1598. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/operators.rb +128 -0
  1599. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/output.rb +207 -0
  1600. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/raise_error.rb +275 -0
  1601. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/respond_to.rb +200 -0
  1602. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/satisfy.rb +62 -0
  1603. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  1604. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/throw_symbol.rb +138 -0
  1605. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in/yield.rb +375 -0
  1606. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/built_in.rb +53 -0
  1607. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/composable.rb +171 -0
  1608. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/dsl.rb +545 -0
  1609. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/english_phrasing.rb +60 -0
  1610. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/fail_matchers.rb +42 -0
  1611. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/generated_descriptions.rb +41 -0
  1612. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/matcher_delegator.rb +61 -0
  1613. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/matcher_protocol.rb +105 -0
  1614. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers/multi_matcher_diff.rb +82 -0
  1615. data/vendor/bundle/ruby/3.3.0/gems/rspec-expectations-3.13.3/lib/rspec/matchers.rb +1046 -0
  1616. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/.document +5 -0
  1617. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/.yardopts +6 -0
  1618. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/Changelog.md +1299 -0
  1619. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/LICENSE.md +25 -0
  1620. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/README.md +465 -0
  1621. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance/chain.rb +111 -0
  1622. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  1623. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
  1624. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
  1625. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  1626. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance/proxy.rb +125 -0
  1627. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance/recorder.rb +297 -0
  1628. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
  1629. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
  1630. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/any_instance.rb +11 -0
  1631. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/argument_list_matcher.rb +117 -0
  1632. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/argument_matchers.rb +366 -0
  1633. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/configuration.rb +212 -0
  1634. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/error_generator.rb +390 -0
  1635. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/example_methods.rb +434 -0
  1636. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/instance_method_stasher.rb +146 -0
  1637. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/marshal_extension.rb +41 -0
  1638. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  1639. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/matchers/have_received.rb +134 -0
  1640. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/matchers/receive.rb +134 -0
  1641. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
  1642. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
  1643. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/message_chain.rb +87 -0
  1644. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/message_expectation.rb +821 -0
  1645. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/method_double.rb +316 -0
  1646. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/method_reference.rb +214 -0
  1647. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/minitest_integration.rb +68 -0
  1648. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/mutate_const.rb +339 -0
  1649. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/object_reference.rb +149 -0
  1650. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/order_group.rb +81 -0
  1651. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/proxy.rb +517 -0
  1652. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/space.rb +238 -0
  1653. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/standalone.rb +3 -0
  1654. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/syntax.rb +325 -0
  1655. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/targets.rb +124 -0
  1656. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/test_double.rb +171 -0
  1657. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/verifying_double.rb +123 -0
  1658. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/verifying_message_expectation.rb +55 -0
  1659. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/verifying_proxy.rb +221 -0
  1660. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks/version.rb +9 -0
  1661. data/vendor/bundle/ruby/3.3.0/gems/rspec-mocks-3.13.2/lib/rspec/mocks.rb +133 -0
  1662. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/Changelog.md +408 -0
  1663. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/LICENSE.md +23 -0
  1664. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/README.md +40 -0
  1665. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/caller_filter.rb +85 -0
  1666. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/comparable_version.rb +48 -0
  1667. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/differ.rb +217 -0
  1668. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/directory_maker.rb +65 -0
  1669. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/encoded_string.rb +163 -0
  1670. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/fuzzy_matcher.rb +50 -0
  1671. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/hunk_generator.rb +49 -0
  1672. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/matcher_definition.rb +44 -0
  1673. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/method_signature_verifier.rb +442 -0
  1674. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/mutex.rb +75 -0
  1675. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/object_formatter.rb +277 -0
  1676. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/recursive_const_methods.rb +78 -0
  1677. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/reentrant_mutex.rb +80 -0
  1678. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/ruby_features.rb +221 -0
  1679. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/source/location.rb +23 -0
  1680. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/source/node.rb +112 -0
  1681. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/source/token.rb +96 -0
  1682. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/source.rb +87 -0
  1683. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/deprecation_helpers.rb +50 -0
  1684. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/diff_helpers.rb +33 -0
  1685. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/formatting_support.rb +11 -0
  1686. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/in_sub_process.rb +73 -0
  1687. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/library_wide_checks.rb +152 -0
  1688. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/shell_out.rb +113 -0
  1689. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/stderr_splitter.rb +77 -0
  1690. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/string_matcher.rb +47 -0
  1691. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/with_isolated_directory.rb +15 -0
  1692. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec/with_isolated_stderr.rb +15 -0
  1693. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/spec.rb +84 -0
  1694. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/version.rb +9 -0
  1695. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/warnings.rb +41 -0
  1696. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support/with_keywords_when_needed.rb +35 -0
  1697. data/vendor/bundle/ruby/3.3.0/gems/rspec-support-3.13.2/lib/rspec/support.rb +162 -0
  1698. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/LICENSE.txt +20 -0
  1699. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/README.md +221 -0
  1700. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/assets/logo.png +0 -0
  1701. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/assets/output.html.erb +261 -0
  1702. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/bin/console +9 -0
  1703. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/bin/setup +7 -0
  1704. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/config/default.yml +4408 -0
  1705. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/exe/rubocop +17 -0
  1706. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/builder.rb +75 -0
  1707. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/and_node.rb +29 -0
  1708. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/args_node.rb +29 -0
  1709. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/array_node.rb +57 -0
  1710. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/block_node.rb +115 -0
  1711. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/break_node.rb +17 -0
  1712. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/case_node.rb +56 -0
  1713. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/def_node.rb +71 -0
  1714. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/defined_node.rb +17 -0
  1715. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/ensure_node.rb +17 -0
  1716. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/for_node.rb +53 -0
  1717. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/hash_node.rb +109 -0
  1718. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/if_node.rb +175 -0
  1719. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/keyword_splat_node.rb +45 -0
  1720. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/basic_literal_node.rb +16 -0
  1721. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/binary_operator_node.rb +43 -0
  1722. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/collection_node.rb +15 -0
  1723. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/conditional_node.rb +45 -0
  1724. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/hash_element_node.rb +125 -0
  1725. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +251 -0
  1726. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +114 -0
  1727. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/modifier_node.rb +17 -0
  1728. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb +61 -0
  1729. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +35 -0
  1730. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/or_node.rb +29 -0
  1731. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/pair_node.rb +63 -0
  1732. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/range_node.rb +11 -0
  1733. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/regexp_node.rb +35 -0
  1734. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/resbody_node.rb +17 -0
  1735. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/retry_node.rb +17 -0
  1736. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/send_node.rb +13 -0
  1737. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/str_node.rb +16 -0
  1738. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/super_node.rb +21 -0
  1739. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/symbol_node.rb +12 -0
  1740. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/until_node.rb +35 -0
  1741. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/when_node.rb +53 -0
  1742. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/while_node.rb +35 -0
  1743. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/yield_node.rb +21 -0
  1744. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node.rb +642 -0
  1745. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/sexp.rb +16 -0
  1746. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/traversal.rb +183 -0
  1747. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cached_data.rb +58 -0
  1748. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cli.rb +307 -0
  1749. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/comment_config.rb +200 -0
  1750. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/config.rb +716 -0
  1751. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/config_loader.rb +214 -0
  1752. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/config_loader_resolver.rb +198 -0
  1753. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/config_store.rb +48 -0
  1754. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/autocorrect_logic.rb +33 -0
  1755. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/badge.rb +73 -0
  1756. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/bundler/duplicated_gem.rb +73 -0
  1757. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/bundler/gem_comment.rb +64 -0
  1758. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/bundler/insecure_protocol_source.rb +69 -0
  1759. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/bundler/ordered_gems.rb +73 -0
  1760. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/commissioner.rb +119 -0
  1761. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/cop.rb +244 -0
  1762. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/corrector.rb +172 -0
  1763. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/alignment_corrector.rb +120 -0
  1764. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/condition_corrector.rb +28 -0
  1765. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/each_to_for_corrector.rb +53 -0
  1766. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/empty_line_corrector.rb +26 -0
  1767. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/for_to_each_corrector.rb +73 -0
  1768. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
  1769. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/line_break_corrector.rb +61 -0
  1770. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +68 -0
  1771. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +44 -0
  1772. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/parentheses_corrector.rb +31 -0
  1773. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/percent_literal_corrector.rb +117 -0
  1774. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/punctuation_corrector.rb +29 -0
  1775. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/space_corrector.rb +49 -0
  1776. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/string_literal_corrector.rb +25 -0
  1777. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/correctors/unused_arg_corrector.rb +31 -0
  1778. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/force.rb +42 -0
  1779. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/gemspec/duplicated_assignment.rb +104 -0
  1780. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/gemspec/ordered_dependencies.rb +107 -0
  1781. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/gemspec/required_ruby_version.rb +85 -0
  1782. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/generator/configuration_injector.rb +61 -0
  1783. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/generator/require_file_injector.rb +78 -0
  1784. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/generator.rb +217 -0
  1785. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/ignored_node.rb +38 -0
  1786. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/internal_affairs/node_destructuring.rb +46 -0
  1787. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +44 -0
  1788. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +54 -0
  1789. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +61 -0
  1790. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +73 -0
  1791. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +52 -0
  1792. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/internal_affairs.rb +8 -0
  1793. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/access_modifier_indentation.rb +109 -0
  1794. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/align_array.rb +39 -0
  1795. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/align_hash.rb +315 -0
  1796. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/align_parameters.rb +94 -0
  1797. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/block_alignment.rb +244 -0
  1798. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/block_end_newline.rb +63 -0
  1799. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/case_indentation.rb +161 -0
  1800. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/class_structure.rb +340 -0
  1801. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +126 -0
  1802. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +203 -0
  1803. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/comment_indentation.rb +144 -0
  1804. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/condition_position.rb +56 -0
  1805. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/def_end_alignment.rb +74 -0
  1806. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/dot_position.rb +105 -0
  1807. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/else_alignment.rb +134 -0
  1808. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_comment.rb +160 -0
  1809. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +142 -0
  1810. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +64 -0
  1811. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_line_between_defs.rb +151 -0
  1812. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_lines.rb +76 -0
  1813. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +146 -0
  1814. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +99 -0
  1815. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +45 -0
  1816. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +39 -0
  1817. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +91 -0
  1818. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +136 -0
  1819. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +45 -0
  1820. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +63 -0
  1821. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/end_alignment.rb +189 -0
  1822. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/end_of_line.rb +87 -0
  1823. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/extra_spacing.rb +246 -0
  1824. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/first_array_element_line_break.rb +45 -0
  1825. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/first_hash_element_line_break.rb +37 -0
  1826. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/first_method_argument_line_break.rb +54 -0
  1827. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +46 -0
  1828. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/first_parameter_indentation.rb +244 -0
  1829. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/indent_array.rb +167 -0
  1830. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/indent_assignment.rb +46 -0
  1831. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/indent_hash.rb +184 -0
  1832. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/indent_heredoc.rb +294 -0
  1833. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/indentation_consistency.rb +201 -0
  1834. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/indentation_width.rb +364 -0
  1835. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/initial_indentation.rb +59 -0
  1836. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/leading_blank_lines.rb +53 -0
  1837. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/leading_comment_space.rb +60 -0
  1838. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +118 -0
  1839. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/multiline_assignment_layout.rb +95 -0
  1840. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/multiline_block_layout.rb +124 -0
  1841. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +122 -0
  1842. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +134 -0
  1843. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +222 -0
  1844. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +131 -0
  1845. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/multiline_operation_indentation.rb +114 -0
  1846. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +175 -0
  1847. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_after_colon.rb +47 -0
  1848. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_after_comma.rb +35 -0
  1849. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_after_method_name.rb +42 -0
  1850. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_after_not.rb +40 -0
  1851. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_after_semicolon.rb +32 -0
  1852. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_around_block_parameters.rb +165 -0
  1853. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +92 -0
  1854. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_around_keyword.rb +232 -0
  1855. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_around_operators.rb +163 -0
  1856. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_before_block_braces.rb +119 -0
  1857. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_before_comma.rb +31 -0
  1858. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_before_comment.rb +35 -0
  1859. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_before_first_arg.rb +67 -0
  1860. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_before_semicolon.rb +27 -0
  1861. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_in_lambda_literal.rb +94 -0
  1862. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +228 -0
  1863. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +53 -0
  1864. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_inside_block_braces.rb +229 -0
  1865. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +207 -0
  1866. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_inside_parens.rb +113 -0
  1867. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +65 -0
  1868. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_inside_range_literal.rb +63 -0
  1869. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +151 -0
  1870. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +81 -0
  1871. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/tab.rb +87 -0
  1872. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/trailing_blank_lines.rb +113 -0
  1873. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/layout/trailing_whitespace.rb +61 -0
  1874. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/ambiguous_block_association.rb +62 -0
  1875. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/ambiguous_operator.rb +55 -0
  1876. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +43 -0
  1877. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/assignment_in_condition.rb +84 -0
  1878. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/big_decimal_new.rb +44 -0
  1879. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/boolean_symbol.rb +38 -0
  1880. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/circular_argument_reference.rb +72 -0
  1881. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/debugger.rb +79 -0
  1882. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/deprecated_class_methods.rb +111 -0
  1883. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +81 -0
  1884. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/duplicate_case_condition.rb +53 -0
  1885. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/duplicate_methods.rb +241 -0
  1886. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/duplicated_key.rb +38 -0
  1887. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/each_with_object_argument.rb +42 -0
  1888. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/else_layout.rb +66 -0
  1889. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_ensure.rb +60 -0
  1890. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_expression.rb +42 -0
  1891. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb +36 -0
  1892. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_when.rb +38 -0
  1893. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/end_in_method.rb +40 -0
  1894. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/ensure_return.rb +46 -0
  1895. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/erb_new_arguments.rb +107 -0
  1896. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/flip_flop.rb +32 -0
  1897. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/float_out_of_range.rb +35 -0
  1898. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/format_parameter_mismatch.rb +190 -0
  1899. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/handle_exceptions.rb +56 -0
  1900. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/implicit_string_concatenation.rb +101 -0
  1901. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/ineffective_access_modifier.rb +127 -0
  1902. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/inherit_exception.rb +80 -0
  1903. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/interpolation_check.rb +40 -0
  1904. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/literal_as_condition.rb +138 -0
  1905. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/literal_in_interpolation.rb +82 -0
  1906. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/loop.rb +63 -0
  1907. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +84 -0
  1908. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/multiple_compare.rb +48 -0
  1909. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/nested_method_definition.rb +104 -0
  1910. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/nested_percent_literal.rb +51 -0
  1911. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/next_without_accumulator.rb +50 -0
  1912. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +85 -0
  1913. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/number_conversion.rb +59 -0
  1914. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/ordered_magic_comments.rb +86 -0
  1915. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +64 -0
  1916. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/percent_string_array.rb +73 -0
  1917. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/percent_symbol_array.rb +69 -0
  1918. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/rand_one.rb +45 -0
  1919. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/redundant_with_index.rb +82 -0
  1920. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/redundant_with_object.rb +83 -0
  1921. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/regexp_as_condition.rb +29 -0
  1922. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/require_parentheses.rb +66 -0
  1923. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/rescue_exception.rb +46 -0
  1924. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/rescue_type.rb +94 -0
  1925. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/return_in_void_context.rb +74 -0
  1926. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/safe_navigation_chain.rb +69 -0
  1927. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/safe_navigation_consistency.rb +94 -0
  1928. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +38 -0
  1929. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/script_permission.rb +70 -0
  1930. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/shadowed_argument.rb +182 -0
  1931. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/shadowed_exception.rb +178 -0
  1932. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +53 -0
  1933. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb +59 -0
  1934. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/syntax.rb +59 -0
  1935. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/to_json.rb +38 -0
  1936. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +62 -0
  1937. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/unified_integer.rb +43 -0
  1938. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/unneeded_cop_disable_directive.rb +263 -0
  1939. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/unneeded_cop_enable_directive.rb +116 -0
  1940. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/unneeded_require_statement.rb +50 -0
  1941. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/unneeded_splat_expansion.rb +167 -0
  1942. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/unreachable_code.rb +99 -0
  1943. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/unused_block_argument.rb +149 -0
  1944. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/unused_method_argument.rb +68 -0
  1945. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/uri_escape_unescape.rb +76 -0
  1946. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/uri_regexp.rb +73 -0
  1947. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/useless_access_modifier.rb +240 -0
  1948. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/useless_assignment.rb +133 -0
  1949. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/useless_comparison.rb +28 -0
  1950. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/useless_else_without_rescue.rb +46 -0
  1951. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/useless_setter_call.rb +165 -0
  1952. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/void.rb +170 -0
  1953. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/message_annotator.rb +119 -0
  1954. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/abc_size.rb +24 -0
  1955. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/block_length.rb +50 -0
  1956. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/block_nesting.rb +65 -0
  1957. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/class_length.rb +36 -0
  1958. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +32 -0
  1959. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/line_length.rb +204 -0
  1960. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/method_length.rb +36 -0
  1961. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/module_length.rb +36 -0
  1962. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/parameter_lists.rb +54 -0
  1963. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/perceived_complexity.rb +62 -0
  1964. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +67 -0
  1965. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/alignment.rb +74 -0
  1966. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/annotation_comment.rb +37 -0
  1967. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/array_hash_indentation.rb +85 -0
  1968. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/array_min_size.rb +59 -0
  1969. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/array_syntax.rb +17 -0
  1970. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/check_assignment.rb +44 -0
  1971. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/classish_length.rb +37 -0
  1972. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/code_length.rb +38 -0
  1973. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/configurable_enforced_style.rb +98 -0
  1974. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/configurable_formatting.rb +47 -0
  1975. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/configurable_max.rb +23 -0
  1976. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/configurable_naming.rb +16 -0
  1977. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/configurable_numbering.rb +17 -0
  1978. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/def_node.rb +33 -0
  1979. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/documentation_comment.rb +54 -0
  1980. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/duplication.rb +46 -0
  1981. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/empty_lines_around_body.rb +172 -0
  1982. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/empty_parameter.rb +24 -0
  1983. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/end_keyword_alignment.rb +67 -0
  1984. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/enforce_superclass.rb +30 -0
  1985. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/first_element_line_break.rb +46 -0
  1986. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/frozen_string_literal.rb +54 -0
  1987. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/hash_alignment.rb +143 -0
  1988. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/heredoc.rb +32 -0
  1989. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/ignored_methods.rb +19 -0
  1990. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/ignored_pattern.rb +29 -0
  1991. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/integer_node.rb +14 -0
  1992. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/match_range.rb +26 -0
  1993. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/method_complexity.rb +56 -0
  1994. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/method_preference.rb +31 -0
  1995. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/min_body_length.rb +21 -0
  1996. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +255 -0
  1997. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +141 -0
  1998. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/negative_conditional.rb +32 -0
  1999. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/nil_methods.rb +25 -0
  2000. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/on_normal_if_unless.rb +14 -0
  2001. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/ordered_gem_node.rb +56 -0
  2002. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/parentheses.rb +17 -0
  2003. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/parser_diagnostic.rb +37 -0
  2004. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/percent_array.rb +52 -0
  2005. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/percent_literal.rb +38 -0
  2006. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/preceding_following_alignment.rb +94 -0
  2007. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/preferred_delimiters.rb +53 -0
  2008. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/range_help.rb +117 -0
  2009. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/rescue_node.rb +23 -0
  2010. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/safe_assignment.rb +23 -0
  2011. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/safe_mode.rb +22 -0
  2012. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/space_after_punctuation.rb +55 -0
  2013. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/space_before_punctuation.rb +49 -0
  2014. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/statement_modifier.rb +68 -0
  2015. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/string_help.rb +35 -0
  2016. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/string_literals_help.rb +23 -0
  2017. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/surrounding_space.rb +144 -0
  2018. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/target_rails_version.rb +16 -0
  2019. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/target_ruby_version.rb +16 -0
  2020. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/too_many_lines.rb +39 -0
  2021. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/trailing_body.rb +26 -0
  2022. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/trailing_comma.rb +216 -0
  2023. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/uncommunicative_name.rb +106 -0
  2024. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/mixin/unused_argument.rb +33 -0
  2025. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/accessor_method_name.rb +55 -0
  2026. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/ascii_identifiers.rb +72 -0
  2027. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +43 -0
  2028. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/class_and_module_camel_case.rb +33 -0
  2029. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/constant_name.rb +81 -0
  2030. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/file_name.rb +205 -0
  2031. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +62 -0
  2032. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +55 -0
  2033. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +171 -0
  2034. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/method_name.rb +42 -0
  2035. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/predicate_name.rb +108 -0
  2036. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/uncommunicative_block_param_name.rb +49 -0
  2037. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/uncommunicative_method_param_name.rb +58 -0
  2038. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/variable_name.rb +51 -0
  2039. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/naming/variable_number.rb +61 -0
  2040. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/offense.rb +194 -0
  2041. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/caller.rb +69 -0
  2042. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/case_when_splat.rb +177 -0
  2043. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/casecmp.rb +108 -0
  2044. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/chain_array_allocation.rb +78 -0
  2045. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/compare_with_block.rb +122 -0
  2046. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/count.rb +102 -0
  2047. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/detect.rb +110 -0
  2048. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/double_start_end_with.rb +94 -0
  2049. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/end_with.rb +56 -0
  2050. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/fixed_size.rb +97 -0
  2051. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/flat_map.rb +78 -0
  2052. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/inefficient_hash_search.rb +99 -0
  2053. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/lstrip_rstrip.rb +46 -0
  2054. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/open_struct.rb +46 -0
  2055. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/range_include.rb +50 -0
  2056. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/redundant_block_call.rb +93 -0
  2057. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/redundant_match.rb +56 -0
  2058. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/redundant_merge.rb +183 -0
  2059. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/redundant_sort_by.rb +50 -0
  2060. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/regexp_match.rb +265 -0
  2061. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/reverse_each.rb +42 -0
  2062. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/sample.rb +145 -0
  2063. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/size.rb +77 -0
  2064. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/start_with.rb +59 -0
  2065. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/string_replacement.rb +173 -0
  2066. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/times_map.rb +71 -0
  2067. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/unfreeze_string.rb +50 -0
  2068. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/unneeded_sort.rb +165 -0
  2069. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/performance/uri_default_parser.rb +47 -0
  2070. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/action_filter.rb +117 -0
  2071. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/active_record_aliases.rb +48 -0
  2072. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/active_support_aliases.rb +69 -0
  2073. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/application_job.rb +40 -0
  2074. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/application_record.rb +40 -0
  2075. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/assert_not.rb +44 -0
  2076. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/belongs_to.rb +120 -0
  2077. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/blank.rb +158 -0
  2078. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/bulk_change_table.rb +289 -0
  2079. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/create_table_with_timestamps.rb +91 -0
  2080. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/date.rb +156 -0
  2081. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/delegate.rb +135 -0
  2082. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/delegate_allow_blank.rb +51 -0
  2083. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/dynamic_find_by.rb +91 -0
  2084. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/enum_uniqueness.rb +45 -0
  2085. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/environment_comparison.rb +66 -0
  2086. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/exit.rb +67 -0
  2087. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/file_path.rb +108 -0
  2088. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/find_by.rb +55 -0
  2089. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/find_each.rb +52 -0
  2090. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +25 -0
  2091. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/has_many_or_has_one_dependent.rb +106 -0
  2092. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/http_positional_arguments.rb +117 -0
  2093. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/http_status.rb +186 -0
  2094. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/ignored_skip_action_filter_option.rb +94 -0
  2095. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/inverse_of.rb +246 -0
  2096. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/lexically_scoped_action_filter.rb +149 -0
  2097. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/link_to_blank.rb +90 -0
  2098. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/not_null_column.rb +67 -0
  2099. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/output.rb +49 -0
  2100. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/output_safety.rb +99 -0
  2101. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/pluralization_grammar.rb +107 -0
  2102. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/presence.rb +124 -0
  2103. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/present.rb +149 -0
  2104. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/read_write_attribute.rb +74 -0
  2105. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/redundant_receiver_in_with_options.rb +135 -0
  2106. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/reflection_class_name.rb +38 -0
  2107. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/refute_methods.rb +76 -0
  2108. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/relative_date_constant.rb +93 -0
  2109. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/request_referer.rb +56 -0
  2110. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/reversible_migration.rb +286 -0
  2111. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/safe_navigation.rb +91 -0
  2112. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/save_bang.rb +316 -0
  2113. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/scope_args.rb +29 -0
  2114. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/skips_model_validations.rb +88 -0
  2115. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/time_zone.rb +231 -0
  2116. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/uniq_before_pluck.rb +105 -0
  2117. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/unknown_env.rb +63 -0
  2118. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/rails/validation.rb +106 -0
  2119. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/registry.rb +190 -0
  2120. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/security/eval.rb +31 -0
  2121. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/security/json_load.rb +46 -0
  2122. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/security/marshal_load.rb +39 -0
  2123. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/security/open.rb +71 -0
  2124. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/security/yaml_load.rb +37 -0
  2125. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/severity.rb +77 -0
  2126. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/access_modifier_declarations.rb +111 -0
  2127. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/alias.rb +141 -0
  2128. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/and_or.rb +146 -0
  2129. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/array_join.rb +39 -0
  2130. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/ascii_comments.rb +61 -0
  2131. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/attr.rb +62 -0
  2132. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/auto_resource_cleanup.rb +51 -0
  2133. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/bare_percent_literals.rb +78 -0
  2134. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/begin_block.rb +22 -0
  2135. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/block_comments.rb +62 -0
  2136. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/block_delimiters.rb +315 -0
  2137. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/braces_around_hash_parameters.rb +190 -0
  2138. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/case_equality.rb +30 -0
  2139. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/character_literal.rb +53 -0
  2140. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/class_and_module_children.rb +153 -0
  2141. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/class_check.rb +59 -0
  2142. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/class_methods.rb +68 -0
  2143. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/class_vars.rb +48 -0
  2144. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/collection_methods.rb +77 -0
  2145. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/colon_method_call.rb +48 -0
  2146. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/colon_method_definition.rb +37 -0
  2147. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/command_literal.rb +187 -0
  2148. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/comment_annotation.rb +97 -0
  2149. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/commented_keyword.rb +87 -0
  2150. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/conditional_assignment.rb +698 -0
  2151. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/constant_visibility.rb +66 -0
  2152. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/copyright.rb +95 -0
  2153. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/date_time.rb +77 -0
  2154. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/def_with_parentheses.rb +57 -0
  2155. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/dir.rb +48 -0
  2156. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/documentation.rb +101 -0
  2157. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/documentation_method.rb +81 -0
  2158. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/double_negation.rb +35 -0
  2159. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/each_for_simple_loop.rb +58 -0
  2160. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/each_with_object.rb +110 -0
  2161. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/empty_block_parameter.rb +48 -0
  2162. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/empty_case_condition.rb +107 -0
  2163. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/empty_else.rb +175 -0
  2164. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/empty_lambda_parameter.rb +45 -0
  2165. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/empty_literal.rb +123 -0
  2166. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/empty_method.rb +115 -0
  2167. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/encoding.rb +56 -0
  2168. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/end_block.rb +25 -0
  2169. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/eval_with_location.rb +148 -0
  2170. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/even_odd.rb +58 -0
  2171. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/expand_path_arguments.rb +194 -0
  2172. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/for.rb +88 -0
  2173. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/format_string.rb +123 -0
  2174. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/format_string_token.rb +170 -0
  2175. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/frozen_string_literal_comment.rb +180 -0
  2176. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/global_vars.rb +80 -0
  2177. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/guard_clause.rb +92 -0
  2178. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/hash_syntax.rb +214 -0
  2179. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/identical_conditional_branches.rb +130 -0
  2180. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/if_inside_else.rb +45 -0
  2181. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/if_unless_modifier.rb +91 -0
  2182. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +39 -0
  2183. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/if_with_semicolon.rb +30 -0
  2184. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/implicit_runtime_error.rb +32 -0
  2185. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/infinite_loop.rb +127 -0
  2186. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/inline_comment.rb +34 -0
  2187. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/inverse_methods.rb +167 -0
  2188. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/ip_addresses.rb +76 -0
  2189. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/lambda.rb +129 -0
  2190. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/lambda_call.rb +93 -0
  2191. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/line_end_concatenation.rb +121 -0
  2192. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +368 -0
  2193. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +77 -0
  2194. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_called_on_do_end_block.rb +46 -0
  2195. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_def_parentheses.rb +158 -0
  2196. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb +34 -0
  2197. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/min_max.rb +68 -0
  2198. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/missing_else.rb +180 -0
  2199. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/missing_respond_to_missing.rb +46 -0
  2200. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/mixin_grouping.rb +150 -0
  2201. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/mixin_usage.rb +80 -0
  2202. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/module_function.rb +105 -0
  2203. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/multiline_block_chain.rb +40 -0
  2204. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/multiline_if_modifier.rb +67 -0
  2205. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/multiline_if_then.rb +50 -0
  2206. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/multiline_memoization.rb +94 -0
  2207. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/multiline_method_signature.rb +61 -0
  2208. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/multiline_ternary_operator.rb +38 -0
  2209. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/multiple_comparison.rb +92 -0
  2210. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/mutable_constant.rb +174 -0
  2211. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/negated_if.rb +99 -0
  2212. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/negated_while.rb +48 -0
  2213. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/nested_modifier.rb +89 -0
  2214. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/nested_parenthesized_calls.rb +67 -0
  2215. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/nested_ternary_operator.rb +32 -0
  2216. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/next.rb +244 -0
  2217. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/nil_comparison.rb +75 -0
  2218. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/non_nil_check.rb +124 -0
  2219. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/not.rb +82 -0
  2220. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/numeric_literal_prefix.rb +124 -0
  2221. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/numeric_literals.rb +110 -0
  2222. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/numeric_predicate.rb +145 -0
  2223. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/one_line_conditional.rb +99 -0
  2224. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/option_hash.rb +55 -0
  2225. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/optional_arguments.rb +61 -0
  2226. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/or_assignment.rb +90 -0
  2227. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/parallel_assignment.rb +287 -0
  2228. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/parentheses_around_condition.rb +103 -0
  2229. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/percent_literal_delimiters.rb +127 -0
  2230. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/percent_q_literals.rb +73 -0
  2231. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/perl_backrefs.rb +38 -0
  2232. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/preferred_hash_methods.rb +75 -0
  2233. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/proc.rb +34 -0
  2234. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/raise_args.rb +145 -0
  2235. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/random_with_offset.rb +161 -0
  2236. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/redundant_begin.rb +91 -0
  2237. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/redundant_conditional.rb +97 -0
  2238. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/redundant_exception.rb +60 -0
  2239. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/redundant_freeze.rb +67 -0
  2240. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/redundant_parentheses.rb +222 -0
  2241. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/redundant_return.rb +169 -0
  2242. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/redundant_self.rb +154 -0
  2243. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/regexp_literal.rb +228 -0
  2244. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/rescue_modifier.rb +49 -0
  2245. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/rescue_standard_error.rb +124 -0
  2246. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/return_nil.rb +89 -0
  2247. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/safe_navigation.rb +253 -0
  2248. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/self_assignment.rb +97 -0
  2249. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/semicolon.rb +90 -0
  2250. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/send.rb +31 -0
  2251. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/signal_exception.rb +211 -0
  2252. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/single_line_block_params.rb +95 -0
  2253. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/single_line_methods.rb +76 -0
  2254. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/special_global_vars.rb +213 -0
  2255. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +86 -0
  2256. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/stderr_puts.rb +56 -0
  2257. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/string_hash_keys.rb +49 -0
  2258. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/string_literals.rb +129 -0
  2259. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/string_literals_in_interpolation.rb +49 -0
  2260. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/string_methods.rb +46 -0
  2261. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/struct_inheritance.rb +32 -0
  2262. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/symbol_array.rb +119 -0
  2263. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/symbol_literal.rb +32 -0
  2264. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/symbol_proc.rb +130 -0
  2265. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/ternary_parentheses.rb +194 -0
  2266. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/trailing_body_on_class.rb +43 -0
  2267. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +54 -0
  2268. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/trailing_body_on_module.rb +43 -0
  2269. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +92 -0
  2270. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +58 -0
  2271. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +56 -0
  2272. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/trailing_method_end_statement.rb +93 -0
  2273. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/trailing_underscore_variable.rb +161 -0
  2274. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/trivial_accessors.rb +191 -0
  2275. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/unless_else.rb +56 -0
  2276. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/unneeded_capital_w.rb +51 -0
  2277. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/unneeded_condition.rb +112 -0
  2278. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/unneeded_interpolation.rb +98 -0
  2279. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/unneeded_percent_q.rb +112 -0
  2280. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/unpack_first.rb +65 -0
  2281. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/variable_interpolation.rb +58 -0
  2282. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/when_then.rb +37 -0
  2283. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/while_until_do.rb +59 -0
  2284. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/while_until_modifier.rb +61 -0
  2285. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/word_array.rb +102 -0
  2286. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/yoda_condition.rb +140 -0
  2287. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/zero_length_predicate.rb +117 -0
  2288. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/team.rb +190 -0
  2289. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/util.rb +129 -0
  2290. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/variable_force/assignment.rb +96 -0
  2291. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/variable_force/branch.rb +322 -0
  2292. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/variable_force/branchable.rb +23 -0
  2293. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/variable_force/reference.rb +49 -0
  2294. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/variable_force/scope.rb +109 -0
  2295. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/variable_force/variable.rb +104 -0
  2296. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/variable_force/variable_table.rb +129 -0
  2297. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/variable_force.rb +464 -0
  2298. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/core_ext/string.rb +47 -0
  2299. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/error.rb +11 -0
  2300. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/file_finder.rb +47 -0
  2301. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/auto_gen_config_formatter.rb +16 -0
  2302. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/base_formatter.rb +123 -0
  2303. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/clang_style_formatter.rb +54 -0
  2304. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/colorizable.rb +41 -0
  2305. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/disabled_config_formatter.rb +219 -0
  2306. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/disabled_lines_formatter.rb +57 -0
  2307. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/emacs_style_formatter.rb +24 -0
  2308. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/file_list_formatter.rb +20 -0
  2309. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/formatter_set.rb +105 -0
  2310. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/fuubar_style_formatter.rb +80 -0
  2311. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/html_formatter.rb +141 -0
  2312. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/json_formatter.rb +80 -0
  2313. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/offense_count_formatter.rb +74 -0
  2314. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/progress_formatter.rb +63 -0
  2315. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/quiet_formatter.rb +13 -0
  2316. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/simple_text_formatter.rb +126 -0
  2317. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/tap_formatter.rb +71 -0
  2318. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/text_util.rb +20 -0
  2319. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/worst_offenders_formatter.rb +62 -0
  2320. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/magic_comment.rb +210 -0
  2321. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/name_similarity.rb +21 -0
  2322. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/node_pattern.rb +584 -0
  2323. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/options.rb +441 -0
  2324. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/path_util.rb +85 -0
  2325. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/platform.rb +11 -0
  2326. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/processed_source.rb +210 -0
  2327. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/rake_task.rb +79 -0
  2328. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/remote_config.rb +104 -0
  2329. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/result_cache.rb +191 -0
  2330. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/rspec/cop_helper.rb +95 -0
  2331. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/rspec/expect_offense.rb +237 -0
  2332. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/rspec/host_environment_simulation_helper.rb +28 -0
  2333. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/rspec/shared_contexts.rb +96 -0
  2334. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/rspec/shared_examples.rb +59 -0
  2335. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/rspec/support.rb +14 -0
  2336. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/runner.rb +353 -0
  2337. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/string_interpreter.rb +57 -0
  2338. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/string_util.rb +14 -0
  2339. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/target_finder.rb +187 -0
  2340. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/token.rb +114 -0
  2341. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/version.rb +21 -0
  2342. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/warning.rb +11 -0
  2343. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop/yaml_duplication_checker.rb +33 -0
  2344. data/vendor/bundle/ruby/3.3.0/gems/rubocop-0.66.0/lib/rubocop.rb +654 -0
  2345. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/LICENSE.txt +19 -0
  2346. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/README.md +131 -0
  2347. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/Rakefile +2 -0
  2348. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/base.rb +234 -0
  2349. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/calculators/length.rb +98 -0
  2350. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/bar.rb +102 -0
  2351. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/percentage.rb +27 -0
  2352. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/rate.rb +39 -0
  2353. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/time.rb +101 -0
  2354. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/title.rb +13 -0
  2355. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/errors/invalid_progress_error.rb +4 -0
  2356. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/format/formatter.rb +27 -0
  2357. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/format/molecule.rb +61 -0
  2358. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/format/string.rb +38 -0
  2359. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/output.rb +71 -0
  2360. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/outputs/non_tty.rb +47 -0
  2361. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/outputs/null.rb +33 -0
  2362. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/outputs/tty.rb +32 -0
  2363. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/progress.rb +108 -0
  2364. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/projector.rb +14 -0
  2365. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/projectors/smoothed_average.rb +71 -0
  2366. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/refinements/progress_enumerator.rb +28 -0
  2367. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/refinements.rb +1 -0
  2368. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/throttle.rb +25 -0
  2369. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/time.rb +30 -0
  2370. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/timer.rb +78 -0
  2371. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/version.rb +3 -0
  2372. data/vendor/bundle/ruby/3.3.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar.rb +12 -0
  2373. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/.document +5 -0
  2374. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/.rdoc_options +2 -0
  2375. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/COPYING +56 -0
  2376. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/LICENSE.txt +22 -0
  2377. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/NEWS.md +198 -0
  2378. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/README.md +45 -0
  2379. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/docs/io.rb +8 -0
  2380. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/ext/stringio/.document +1 -0
  2381. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/ext/stringio/Makefile +270 -0
  2382. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/ext/stringio/extconf.rb +7 -0
  2383. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/ext/stringio/stringio.c +2015 -0
  2384. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.3/lib/stringio.bundle +0 -0
  2385. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/.document +5 -0
  2386. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/.rdoc_options +2 -0
  2387. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/COPYING +56 -0
  2388. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/LICENSE.txt +22 -0
  2389. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/NEWS.md +210 -0
  2390. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/README.md +45 -0
  2391. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/docs/io.rb +8 -0
  2392. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/ext/stringio/.document +1 -0
  2393. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/ext/stringio/Makefile +270 -0
  2394. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/ext/stringio/extconf.rb +7 -0
  2395. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/ext/stringio/stringio.c +2016 -0
  2396. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.4/lib/stringio.bundle +0 -0
  2397. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/.document +5 -0
  2398. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/.rdoc_options +2 -0
  2399. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/COPYING +56 -0
  2400. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/LICENSE.txt +22 -0
  2401. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/NEWS.md +219 -0
  2402. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/README.md +45 -0
  2403. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/docs/io.rb +8 -0
  2404. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/ext/stringio/.document +1 -0
  2405. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/ext/stringio/Makefile +270 -0
  2406. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/ext/stringio/extconf.rb +7 -0
  2407. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/ext/stringio/stringio.c +2016 -0
  2408. data/vendor/bundle/ruby/3.3.0/gems/stringio-3.1.5/lib/stringio.bundle +0 -0
  2409. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/.document +5 -0
  2410. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/CONTRIBUTING.md +15 -0
  2411. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/LICENSE.md +20 -0
  2412. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/README.md +45 -0
  2413. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/bin/thor +6 -0
  2414. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/actions/create_file.rb +105 -0
  2415. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/actions/create_link.rb +61 -0
  2416. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/actions/directory.rb +108 -0
  2417. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/actions/empty_directory.rb +143 -0
  2418. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/actions/file_manipulation.rb +371 -0
  2419. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/actions/inject_into_file.rb +130 -0
  2420. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/actions.rb +340 -0
  2421. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/base.rb +825 -0
  2422. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/command.rb +151 -0
  2423. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/core_ext/hash_with_indifferent_access.rb +107 -0
  2424. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/error.rb +106 -0
  2425. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/group.rb +292 -0
  2426. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/invocation.rb +178 -0
  2427. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/line_editor/basic.rb +37 -0
  2428. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/line_editor/readline.rb +88 -0
  2429. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/line_editor.rb +17 -0
  2430. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/nested_context.rb +29 -0
  2431. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/parser/argument.rb +86 -0
  2432. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/parser/arguments.rb +195 -0
  2433. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/parser/option.rb +178 -0
  2434. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/parser/options.rb +294 -0
  2435. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/parser.rb +4 -0
  2436. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/rake_compat.rb +72 -0
  2437. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/runner.rb +335 -0
  2438. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/shell/basic.rb +388 -0
  2439. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/shell/color.rb +115 -0
  2440. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/shell/column_printer.rb +29 -0
  2441. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/shell/html.rb +84 -0
  2442. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/shell/lcs_diff.rb +49 -0
  2443. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/shell/table_printer.rb +118 -0
  2444. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/shell/terminal.rb +42 -0
  2445. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/shell/wrapped_printer.rb +38 -0
  2446. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/shell.rb +81 -0
  2447. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/util.rb +285 -0
  2448. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor/version.rb +3 -0
  2449. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/lib/thor.rb +674 -0
  2450. data/vendor/bundle/ruby/3.3.0/gems/thor-1.3.2/thor.gemspec +33 -0
  2451. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.github/workflows/ci.yml +30 -0
  2452. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.github/workflows/experimental.yml +33 -0
  2453. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.gitignore +8 -0
  2454. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.rspec +4 -0
  2455. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/CHANGELOG.md +410 -0
  2456. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/CONTRIBUTING.md +20 -0
  2457. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/Gemfile +36 -0
  2458. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/Guardfile +9 -0
  2459. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/LICENSE +22 -0
  2460. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/README.md +588 -0
  2461. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/Rakefile +38 -0
  2462. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/UPGRADE.md +55 -0
  2463. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/rack/typhoeus/middleware/params_decoder/helper.rb +76 -0
  2464. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/rack/typhoeus/middleware/params_decoder.rb +57 -0
  2465. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/rack/typhoeus.rb +1 -0
  2466. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/adapters/faraday.rb +180 -0
  2467. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/cache/dalli.rb +28 -0
  2468. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/cache/rails.rb +28 -0
  2469. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/cache/redis.rb +35 -0
  2470. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/config.rb +85 -0
  2471. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/easy_factory.rb +206 -0
  2472. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/errors/no_stub.rb +12 -0
  2473. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/errors/typhoeus_error.rb +8 -0
  2474. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/errors.rb +9 -0
  2475. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/expectation.rb +217 -0
  2476. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/addable.rb +23 -0
  2477. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/before.rb +31 -0
  2478. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/block_connection.rb +35 -0
  2479. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/cacheable.rb +15 -0
  2480. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/memoizable.rb +56 -0
  2481. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/queueable.rb +83 -0
  2482. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/runnable.rb +19 -0
  2483. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/stubbable.rb +28 -0
  2484. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra.rb +95 -0
  2485. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/pool.rb +70 -0
  2486. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/railtie.rb +12 -0
  2487. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/actions.rb +125 -0
  2488. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/before.rb +30 -0
  2489. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/block_connection.rb +52 -0
  2490. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/cacheable.rb +38 -0
  2491. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/callbacks.rb +151 -0
  2492. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/marshal.rb +22 -0
  2493. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/memoizable.rb +38 -0
  2494. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/operations.rb +40 -0
  2495. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/responseable.rb +29 -0
  2496. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/streamable.rb +34 -0
  2497. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/stubbable.rb +30 -0
  2498. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request.rb +223 -0
  2499. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/cacheable.rb +14 -0
  2500. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/header.rb +105 -0
  2501. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/informations.rb +305 -0
  2502. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/status.rb +106 -0
  2503. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response.rb +68 -0
  2504. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/version.rb +5 -0
  2505. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus.rb +143 -0
  2506. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/perf/profile.rb +14 -0
  2507. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/perf/vs_nethttp.rb +64 -0
  2508. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/rack/typhoeus/middleware/params_decoder/helper_spec.rb +156 -0
  2509. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/rack/typhoeus/middleware/params_decoder_spec.rb +31 -0
  2510. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/spec_helper.rb +29 -0
  2511. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/support/localhost_server.rb +94 -0
  2512. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/support/memory_cache.rb +15 -0
  2513. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/support/server.rb +116 -0
  2514. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/adapters/faraday_spec.rb +339 -0
  2515. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/cache/dalli_spec.rb +41 -0
  2516. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/cache/redis_spec.rb +41 -0
  2517. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/config_spec.rb +15 -0
  2518. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/easy_factory_spec.rb +143 -0
  2519. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/errors/no_stub_spec.rb +13 -0
  2520. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/expectation_spec.rb +280 -0
  2521. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/addable_spec.rb +22 -0
  2522. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/before_spec.rb +98 -0
  2523. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/block_connection_spec.rb +18 -0
  2524. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/cacheable_spec.rb +88 -0
  2525. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/memoizable_spec.rb +53 -0
  2526. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/queueable_spec.rb +98 -0
  2527. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/runnable_spec.rb +137 -0
  2528. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/stubbable_spec.rb +48 -0
  2529. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra_spec.rb +22 -0
  2530. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/pool_spec.rb +137 -0
  2531. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/actions_spec.rb +19 -0
  2532. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/before_spec.rb +93 -0
  2533. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/block_connection_spec.rb +75 -0
  2534. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/cacheable_spec.rb +94 -0
  2535. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/callbacks_spec.rb +91 -0
  2536. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/marshal_spec.rb +60 -0
  2537. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/memoizable_spec.rb +34 -0
  2538. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/operations_spec.rb +101 -0
  2539. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/responseable_spec.rb +13 -0
  2540. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/stubbable_spec.rb +45 -0
  2541. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request_spec.rb +256 -0
  2542. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response/header_spec.rb +147 -0
  2543. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response/informations_spec.rb +323 -0
  2544. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response/status_spec.rb +256 -0
  2545. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response_spec.rb +100 -0
  2546. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus_spec.rb +105 -0
  2547. data/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/typhoeus.gemspec +25 -0
  2548. data/vendor/bundle/ruby/3.3.0/gems/unicode-display_width-1.5.0/CHANGELOG.md +121 -0
  2549. data/vendor/bundle/ruby/3.3.0/gems/unicode-display_width-1.5.0/MIT-LICENSE.txt +22 -0
  2550. data/vendor/bundle/ruby/3.3.0/gems/unicode-display_width-1.5.0/README.md +124 -0
  2551. data/vendor/bundle/ruby/3.3.0/gems/unicode-display_width-1.5.0/data/display_width.marshal.gz +0 -0
  2552. data/vendor/bundle/ruby/3.3.0/gems/unicode-display_width-1.5.0/lib/unicode/display_width/constants.rb +8 -0
  2553. data/vendor/bundle/ruby/3.3.0/gems/unicode-display_width-1.5.0/lib/unicode/display_width/index.rb +12 -0
  2554. data/vendor/bundle/ruby/3.3.0/gems/unicode-display_width-1.5.0/lib/unicode/display_width/no_string_ext.rb +7 -0
  2555. data/vendor/bundle/ruby/3.3.0/gems/unicode-display_width-1.5.0/lib/unicode/display_width/string_ext.rb +17 -0
  2556. data/vendor/bundle/ruby/3.3.0/gems/unicode-display_width-1.5.0/lib/unicode/display_width.rb +51 -0
  2557. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/CHANGELOG.md +710 -0
  2558. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/CONTRIBUTING.md +26 -0
  2559. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/LICENSE.md +20 -0
  2560. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/README.md +339 -0
  2561. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/Upgrade.md +289 -0
  2562. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/about_these_examples.md +18 -0
  2563. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/allow_unused_http_interactions.feature +100 -0
  2564. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/automatic_re_recording.feature +72 -0
  2565. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/decompress.feature +74 -0
  2566. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/dynamic_erb.feature +100 -0
  2567. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/exclusive.feature +126 -0
  2568. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/format.feature +411 -0
  2569. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/freezing_time.feature +68 -0
  2570. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/naming.feature +28 -0
  2571. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/no_cassette.feature +152 -0
  2572. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/cassettes/update_content_length_header.feature +112 -0
  2573. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/allow_http_connections_when_no_cassette.feature +55 -0
  2574. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/cassette_library_dir.feature +31 -0
  2575. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/debug_logging.feature +58 -0
  2576. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/default_cassette_options.feature +100 -0
  2577. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/filter_sensitive_data.feature +153 -0
  2578. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/hook_into.feature +172 -0
  2579. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/ignore_request.feature +192 -0
  2580. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/preserve_exact_body_bytes.feature +108 -0
  2581. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/query_parser.feature +84 -0
  2582. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/configuration/uri_parser.feature +93 -0
  2583. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/getting_started.md +82 -0
  2584. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/hooks/after_http_request.feature +58 -0
  2585. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/hooks/around_http_request.feature +57 -0
  2586. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/hooks/before_http_request.feature +63 -0
  2587. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/hooks/before_playback.feature +184 -0
  2588. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/hooks/before_record.feature +172 -0
  2589. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/http_libraries/em_http_request.feature +250 -0
  2590. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/http_libraries/net_http.feature +179 -0
  2591. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/middleware/faraday.feature +56 -0
  2592. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/middleware/rack.feature +92 -0
  2593. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/record_modes/all.feature +82 -0
  2594. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/record_modes/new_episodes.feature +79 -0
  2595. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/record_modes/none.feature +72 -0
  2596. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/record_modes/once.feature +95 -0
  2597. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/README.md +30 -0
  2598. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/body.feature +91 -0
  2599. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/body_as_json.feature +90 -0
  2600. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/custom_matcher.feature +135 -0
  2601. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/headers.feature +85 -0
  2602. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/host.feature +95 -0
  2603. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/identical_request_sequence.feature +89 -0
  2604. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/method.feature +96 -0
  2605. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/path.feature +96 -0
  2606. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/playback_repeats.feature +98 -0
  2607. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/query.feature +97 -0
  2608. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/uri.feature +94 -0
  2609. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/request_matching/uri_without_param.feature +101 -0
  2610. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/step_definitions/cli_steps.rb +199 -0
  2611. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/support/env.rb +46 -0
  2612. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/support/http_lib_filters.rb +46 -0
  2613. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/test_frameworks/cucumber.feature +211 -0
  2614. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/test_frameworks/rspec_macro.feature +81 -0
  2615. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/test_frameworks/rspec_metadata.feature +150 -0
  2616. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/features/test_frameworks/test_unit.feature +49 -0
  2617. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/erb_renderer.rb +55 -0
  2618. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/http_interaction_list.rb +108 -0
  2619. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/migrator.rb +118 -0
  2620. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/persisters/file_system.rb +63 -0
  2621. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/persisters.rb +42 -0
  2622. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/serializers/compressed.rb +45 -0
  2623. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/serializers/json.rb +48 -0
  2624. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/serializers/psych.rb +48 -0
  2625. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/serializers/syck.rb +61 -0
  2626. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/serializers/yaml.rb +50 -0
  2627. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette/serializers.rb +59 -0
  2628. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/cassette.rb +298 -0
  2629. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/configuration.rb +576 -0
  2630. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/deprecations.rb +109 -0
  2631. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/errors.rb +315 -0
  2632. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/extensions/net_http_response.rb +36 -0
  2633. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/library_hooks/excon.rb +27 -0
  2634. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/library_hooks/fakeweb.rb +197 -0
  2635. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/library_hooks/faraday.rb +51 -0
  2636. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/library_hooks/typhoeus.rb +120 -0
  2637. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/library_hooks/typhoeus_0.4.rb +103 -0
  2638. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/library_hooks/webmock.rb +181 -0
  2639. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/library_hooks.rb +18 -0
  2640. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/linked_cassette.rb +72 -0
  2641. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/middleware/excon/legacy_methods.rb +33 -0
  2642. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/middleware/excon.rb +221 -0
  2643. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/middleware/faraday.rb +118 -0
  2644. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/middleware/rack.rb +79 -0
  2645. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/request_handler.rb +114 -0
  2646. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/request_ignorer.rb +43 -0
  2647. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/request_matcher_registry.rb +149 -0
  2648. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/structs.rb +578 -0
  2649. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/tasks/vcr.rake +9 -0
  2650. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/test_frameworks/cucumber.rb +98 -0
  2651. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/test_frameworks/rspec.rb +52 -0
  2652. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/util/hooks.rb +61 -0
  2653. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/util/internet_connection.rb +43 -0
  2654. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/util/logger.rb +59 -0
  2655. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/util/variable_args_block_caller.rb +13 -0
  2656. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/util/version_checker.rb +48 -0
  2657. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr/version.rb +34 -0
  2658. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/lib/vcr.rb +430 -0
  2659. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/acceptance/concurrency_spec.rb +51 -0
  2660. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/acceptance/threading_spec.rb +34 -0
  2661. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/fixtures/cassette_spec/1_x_cassette.yml +110 -0
  2662. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/fixtures/cassette_spec/empty.yml +0 -0
  2663. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/fixtures/cassette_spec/example.yml +111 -0
  2664. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/fixtures/cassette_spec/with_localhost_requests.yml +111 -0
  2665. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/fixtures/fake_example_responses.yml +110 -0
  2666. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/fixtures/match_requests_on.yml +187 -0
  2667. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/cassette/erb_renderer_spec.rb +53 -0
  2668. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/cassette/http_interaction_list_spec.rb +295 -0
  2669. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/cassette/migrator_spec.rb +196 -0
  2670. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/cassette/persisters/file_system_spec.rb +75 -0
  2671. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/cassette/persisters_spec.rb +39 -0
  2672. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/cassette/serializers_spec.rb +182 -0
  2673. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/cassette_spec.rb +618 -0
  2674. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/configuration_spec.rb +326 -0
  2675. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/deprecations_spec.rb +85 -0
  2676. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/errors_spec.rb +178 -0
  2677. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/extensions/net_http_response_spec.rb +86 -0
  2678. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/library_hooks/excon_spec.rb +104 -0
  2679. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/library_hooks/fakeweb_spec.rb +169 -0
  2680. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/library_hooks/faraday_spec.rb +68 -0
  2681. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/library_hooks/typhoeus_0.4_spec.rb +36 -0
  2682. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/library_hooks/typhoeus_spec.rb +162 -0
  2683. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/library_hooks/webmock_spec.rb +117 -0
  2684. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/library_hooks_spec.rb +51 -0
  2685. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/middleware/faraday_spec.rb +181 -0
  2686. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/middleware/rack_spec.rb +115 -0
  2687. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/request_ignorer_spec.rb +70 -0
  2688. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/request_matcher_registry_spec.rb +345 -0
  2689. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/structs_spec.rb +732 -0
  2690. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/test_frameworks/cucumber_spec.rb +107 -0
  2691. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/test_frameworks/rspec_spec.rb +94 -0
  2692. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/util/hooks_spec.rb +158 -0
  2693. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/util/internet_connection_spec.rb +37 -0
  2694. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/util/version_checker_spec.rb +31 -0
  2695. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr/version_spec.rb +27 -0
  2696. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/lib/vcr_spec.rb +354 -0
  2697. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/monkey_patches.rb +186 -0
  2698. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/spec_helper.rb +63 -0
  2699. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/configuration_stubbing.rb +8 -0
  2700. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/cucumber_helpers.rb +39 -0
  2701. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/fixnum_extension.rb +10 -0
  2702. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/http_library_adapters.rb +289 -0
  2703. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/limited_uri.rb +21 -0
  2704. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/ruby_interpreter.rb +7 -0
  2705. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/shared_example_groups/excon.rb +63 -0
  2706. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/shared_example_groups/hook_into_http_library.rb +594 -0
  2707. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/shared_example_groups/request_hooks.rb +59 -0
  2708. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/sinatra_app.rb +86 -0
  2709. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/vcr_localhost_server.rb +76 -0
  2710. data/vendor/bundle/ruby/3.3.0/gems/vcr-3.0.3/spec/support/vcr_stub_helpers.rb +17 -0
  2711. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/.gemtest +0 -0
  2712. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/.gitignore +34 -0
  2713. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/.rspec-tm +2 -0
  2714. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/.travis.yml +32 -0
  2715. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/Appraisals +3 -0
  2716. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/CHANGELOG.md +1349 -0
  2717. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/Gemfile +19 -0
  2718. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/LICENSE +20 -0
  2719. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/README.md +1060 -0
  2720. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/Rakefile +53 -0
  2721. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/gemfiles/ruby_1_8.gemfile +21 -0
  2722. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/api.rb +96 -0
  2723. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/assertion_failure.rb +11 -0
  2724. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/callback_registry.rb +35 -0
  2725. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/config.rb +18 -0
  2726. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/cucumber.rb +8 -0
  2727. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/deprecation.rb +9 -0
  2728. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/errors.rb +17 -0
  2729. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/curb_adapter.rb +272 -0
  2730. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/em_http_request/em_http_request_0_x.rb +147 -0
  2731. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/em_http_request/em_http_request_1_x.rb +228 -0
  2732. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/em_http_request_adapter.rb +11 -0
  2733. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/excon_adapter.rb +154 -0
  2734. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/http_lib_adapter.rb +7 -0
  2735. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb +19 -0
  2736. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/http_rb/client.rb +14 -0
  2737. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/http_rb/request.rb +10 -0
  2738. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/http_rb/response.rb +43 -0
  2739. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/http_rb/streamer.rb +25 -0
  2740. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/http_rb/webmock.rb +68 -0
  2741. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/http_rb_adapter.rb +37 -0
  2742. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/httpclient_adapter.rb +277 -0
  2743. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/manticore_adapter.rb +123 -0
  2744. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/net_http.rb +338 -0
  2745. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/net_http_response.rb +34 -0
  2746. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/patron_adapter.rb +126 -0
  2747. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb +170 -0
  2748. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/matchers/hash_including_matcher.rb +36 -0
  2749. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/minitest.rb +39 -0
  2750. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/rack_response.rb +69 -0
  2751. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/request_body_diff.rb +63 -0
  2752. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/request_execution_verifier.rb +78 -0
  2753. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/request_pattern.rb +328 -0
  2754. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/request_registry.rb +35 -0
  2755. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/request_signature.rb +54 -0
  2756. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/request_signature_snippet.rb +61 -0
  2757. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/request_stub.rb +100 -0
  2758. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/response.rb +160 -0
  2759. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/responses_sequence.rb +40 -0
  2760. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/rspec/matchers/request_pattern_matcher.rb +78 -0
  2761. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/rspec/matchers/webmock_matcher.rb +52 -0
  2762. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/rspec/matchers.rb +27 -0
  2763. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/rspec.rb +33 -0
  2764. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/stub_registry.rb +67 -0
  2765. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/stub_request_snippet.rb +34 -0
  2766. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/test_unit.rb +20 -0
  2767. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/util/hash_counter.rb +32 -0
  2768. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/util/hash_keys_stringifier.rb +25 -0
  2769. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/util/hash_validator.rb +17 -0
  2770. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/util/headers.rb +43 -0
  2771. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/util/json.rb +78 -0
  2772. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/util/query_mapper.rb +279 -0
  2773. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/util/uri.rb +111 -0
  2774. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/util/version_checker.rb +107 -0
  2775. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/version.rb +3 -0
  2776. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock/webmock.rb +158 -0
  2777. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/lib/webmock.rb +66 -0
  2778. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/minitest/test_helper.rb +34 -0
  2779. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/minitest/test_webmock.rb +9 -0
  2780. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/minitest/webmock_spec.rb +60 -0
  2781. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/curb/curb_spec.rb +416 -0
  2782. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/curb/curb_spec_helper.rb +144 -0
  2783. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/em_http_request/em_http_request_spec.rb +406 -0
  2784. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/em_http_request/em_http_request_spec_helper.rb +73 -0
  2785. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/excon/excon_spec.rb +75 -0
  2786. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/excon/excon_spec_helper.rb +43 -0
  2787. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/http_rb/http_rb_spec.rb +73 -0
  2788. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/http_rb/http_rb_spec_helper.rb +45 -0
  2789. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/httpclient/httpclient_spec.rb +205 -0
  2790. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/httpclient/httpclient_spec_helper.rb +48 -0
  2791. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/manticore/manticore_spec.rb +56 -0
  2792. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/manticore/manticore_spec_helper.rb +31 -0
  2793. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/net_http/net_http_shared.rb +142 -0
  2794. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/net_http/net_http_spec.rb +316 -0
  2795. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/net_http/net_http_spec_helper.rb +55 -0
  2796. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/net_http/real_net_http_spec.rb +20 -0
  2797. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/patron/patron_spec.rb +134 -0
  2798. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/patron/patron_spec_helper.rb +51 -0
  2799. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/shared/allowing_and_disabling_net_connect.rb +313 -0
  2800. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/shared/callbacks.rb +147 -0
  2801. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/shared/complex_cross_concern_behaviors.rb +36 -0
  2802. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/shared/enabling_and_disabling_webmock.rb +95 -0
  2803. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/shared/precedence_of_stubs.rb +15 -0
  2804. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/shared/request_expectations.rb +859 -0
  2805. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/shared/returning_declared_responses.rb +388 -0
  2806. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/shared/stubbing_requests.rb +528 -0
  2807. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/typhoeus/typhoeus_hydra_spec.rb +135 -0
  2808. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/typhoeus/typhoeus_hydra_spec_helper.rb +57 -0
  2809. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/acceptance/webmock_shared.rb +41 -0
  2810. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/fixtures/test.txt +1 -0
  2811. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/quality_spec.rb +84 -0
  2812. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/spec_helper.rb +52 -0
  2813. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/support/example_curl_output.txt +22 -0
  2814. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/support/failures.rb +9 -0
  2815. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/support/my_rack_app.rb +53 -0
  2816. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/support/network_connection.rb +19 -0
  2817. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/support/webmock_server.rb +69 -0
  2818. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/api_spec.rb +75 -0
  2819. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/errors_spec.rb +129 -0
  2820. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/http_lib_adapters/http_lib_adapter_registry_spec.rb +17 -0
  2821. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/http_lib_adapters/http_lib_adapter_spec.rb +12 -0
  2822. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/matchers/hash_including_matcher_spec.rb +87 -0
  2823. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/rack_response_spec.rb +102 -0
  2824. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/request_body_diff_spec.rb +90 -0
  2825. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/request_execution_verifier_spec.rb +208 -0
  2826. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/request_pattern_spec.rb +590 -0
  2827. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/request_registry_spec.rb +76 -0
  2828. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/request_signature_snippet_spec.rb +89 -0
  2829. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/request_signature_spec.rb +155 -0
  2830. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/request_stub_spec.rb +199 -0
  2831. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/response_spec.rb +282 -0
  2832. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/stub_registry_spec.rb +103 -0
  2833. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/stub_request_snippet_spec.rb +95 -0
  2834. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/util/hash_counter_spec.rb +39 -0
  2835. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/util/hash_keys_stringifier_spec.rb +27 -0
  2836. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/util/headers_spec.rb +28 -0
  2837. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/util/json_spec.rb +33 -0
  2838. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/util/query_mapper_spec.rb +138 -0
  2839. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/util/uri_spec.rb +299 -0
  2840. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/util/version_checker_spec.rb +65 -0
  2841. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/spec/unit/webmock_spec.rb +11 -0
  2842. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/test/http_request.rb +24 -0
  2843. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/test/shared_test.rb +88 -0
  2844. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/test/test_helper.rb +23 -0
  2845. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/test/test_webmock.rb +6 -0
  2846. data/vendor/bundle/ruby/3.3.0/gems/webmock-1.24.6/webmock.gemspec +44 -0
  2847. data/vendor/bundle/ruby/3.3.0/specifications/addressable-2.8.7.gemspec +30 -0
  2848. data/vendor/bundle/ruby/3.3.0/specifications/ast-2.4.2.gemspec +30 -0
  2849. data/vendor/bundle/ruby/3.3.0/specifications/bigdecimal-3.1.9.gemspec +25 -0
  2850. data/vendor/bundle/ruby/3.3.0/specifications/bundler-audit-0.9.2.gemspec +30 -0
  2851. data/vendor/bundle/ruby/3.3.0/specifications/byebug-11.1.3.gemspec +31 -0
  2852. data/vendor/bundle/ruby/3.3.0/specifications/coderay-1.1.3.gemspec +25 -0
  2853. data/vendor/bundle/ruby/3.3.0/specifications/crack-1.0.0.gemspec +27 -0
  2854. data/vendor/bundle/ruby/3.3.0/specifications/date-3.4.1.gemspec +25 -0
  2855. data/vendor/bundle/ruby/3.3.0/specifications/diff-lcs-1.6.0.gemspec +38 -0
  2856. data/vendor/bundle/ruby/3.3.0/specifications/ethon-0.16.0.gemspec +24 -0
  2857. data/vendor/bundle/ruby/3.3.0/specifications/ffi-1.17.1-arm64-darwin.gemspec +31 -0
  2858. data/vendor/bundle/ruby/3.3.0/specifications/hashdiff-1.1.2.gemspec +30 -0
  2859. data/vendor/bundle/ruby/3.3.0/specifications/jaro_winkler-1.5.6.gemspec +30 -0
  2860. data/vendor/bundle/ruby/3.3.0/specifications/json-2.10.1.gemspec +0 -0
  2861. data/vendor/bundle/ruby/3.3.0/specifications/method_source-1.1.0.gemspec +21 -0
  2862. data/vendor/bundle/ruby/3.3.0/specifications/parallel-1.26.3.gemspec +21 -0
  2863. data/vendor/bundle/ruby/3.3.0/specifications/parser-3.3.7.1.gemspec +37 -0
  2864. data/vendor/bundle/ruby/3.3.0/specifications/pry-0.14.2.gemspec +29 -0
  2865. data/vendor/bundle/ruby/3.3.0/specifications/pry-byebug-3.10.1.gemspec +28 -0
  2866. data/vendor/bundle/ruby/3.3.0/specifications/psych-5.2.3.gemspec +32 -0
  2867. data/vendor/bundle/ruby/3.3.0/specifications/public_suffix-6.0.1.gemspec +24 -0
  2868. data/vendor/bundle/ruby/3.3.0/specifications/racc-1.8.1.gemspec +28 -0
  2869. data/vendor/bundle/ruby/3.3.0/specifications/rainbow-3.1.1.gemspec +25 -0
  2870. data/vendor/bundle/ruby/3.3.0/specifications/rake-13.0.6.gemspec +26 -0
  2871. data/vendor/bundle/ruby/3.3.0/specifications/rexml-3.4.0.gemspec +25 -0
  2872. data/vendor/bundle/ruby/3.3.0/specifications/rspec-3.13.0.gemspec +31 -0
  2873. data/vendor/bundle/ruby/3.3.0/specifications/rspec-core-3.13.3.gemspec +31 -0
  2874. data/vendor/bundle/ruby/3.3.0/specifications/rspec-expectations-3.13.3.gemspec +33 -0
  2875. data/vendor/bundle/ruby/3.3.0/specifications/rspec-mocks-3.13.2.gemspec +33 -0
  2876. data/vendor/bundle/ruby/3.3.0/specifications/rspec-support-3.13.2.gemspec +29 -0
  2877. data/vendor/bundle/ruby/3.3.0/specifications/rubocop-0.66.0.gemspec +38 -0
  2878. data/vendor/bundle/ruby/3.3.0/specifications/ruby-progressbar-1.13.0.gemspec +29 -0
  2879. data/vendor/bundle/ruby/3.3.0/specifications/stringio-3.1.3.gemspec +26 -0
  2880. data/vendor/bundle/ruby/3.3.0/specifications/stringio-3.1.4.gemspec +26 -0
  2881. data/vendor/bundle/ruby/3.3.0/specifications/stringio-3.1.5.gemspec +26 -0
  2882. data/vendor/bundle/ruby/3.3.0/specifications/thor-1.3.2.gemspec +28 -0
  2883. data/vendor/bundle/ruby/3.3.0/specifications/typhoeus-1.4.1.gemspec +24 -0
  2884. data/vendor/bundle/ruby/3.3.0/specifications/unicode-display_width-1.5.0.gemspec +29 -0
  2885. data/vendor/bundle/ruby/3.3.0/specifications/vcr-3.0.3.gemspec +46 -0
  2886. data/vendor/bundle/ruby/3.3.0/specifications/webmock-1.24.6.gemspec +38 -0
  2887. metadata +2842 -279
  2888. data/.gitignore +0 -39
  2889. data/.openapi-generator/VERSION +0 -1
  2890. data/.openapi-generator-ignore +0 -23
  2891. data/.rspec +0 -2
  2892. data/.rubocop.yml +0 -154
  2893. data/docs/AddFieldsTemplateResponse.md +0 -10
  2894. data/docs/AuthenticationError.md +0 -9
  2895. data/docs/AuthenticationSuccessResponse.md +0 -8
  2896. data/docs/CopyTemplateData.md +0 -9
  2897. data/docs/CreateHtmlTemplateData.md +0 -8
  2898. data/docs/CreateSubmissionBatchResponse.md +0 -12
  2899. data/docs/CreateSubmissionBatchSubmissionsResponse.md +0 -10
  2900. data/docs/CreateSubmissionDataRequestTokenResponseToken.md +0 -11
  2901. data/docs/CreateTemplateFromUploadData.md +0 -8
  2902. data/docs/Error.md +0 -9
  2903. data/docs/FoldersFolder.md +0 -9
  2904. data/docs/HtmlTemplateData.md +0 -24
  2905. data/docs/InvalidRequest.md +0 -9
  2906. data/docs/PendingTemplate.md +0 -24
  2907. data/docs/SubmissionData.md +0 -15
  2908. data/docs/SubmissionDataBatchRequest.md +0 -13
  2909. data/docs/Template1.md +0 -46
  2910. data/docs/Template1Defaults.md +0 -10
  2911. data/docs/TemplateData.md +0 -23
  2912. data/docs/TemplatestemplateIdaddFieldsFields.md +0 -92
  2913. data/docs/UpdateDataRequestResponse.md +0 -10
  2914. data/docs/UpdateTemplateData.md +0 -8
  2915. data/docs/UpdateTemplateResponse.md +0 -9
  2916. data/docs/UploadTemplateData.md +0 -25
  2917. data/docs/UploadTemplateDataDocument.md +0 -10
  2918. data/docs/UploadTemplateDataDocumentMetadata.md +0 -10
  2919. data/lib/docspring/api/client.rb +0 -174
  2920. data/lib/docspring/models/add_fields_template_response.rb +0 -239
  2921. data/lib/docspring/models/authentication_error.rb +0 -231
  2922. data/lib/docspring/models/authentication_success_response.rb +0 -217
  2923. data/lib/docspring/models/copy_template_data.rb +0 -197
  2924. data/lib/docspring/models/create_html_template_data.rb +0 -188
  2925. data/lib/docspring/models/create_submission_batch_response.rb +0 -257
  2926. data/lib/docspring/models/create_submission_batch_submissions_response.rb +0 -237
  2927. data/lib/docspring/models/create_submission_data_request_token_response_token.rb +0 -210
  2928. data/lib/docspring/models/create_template_from_upload_data.rb +0 -188
  2929. data/lib/docspring/models/error.rb +0 -236
  2930. data/lib/docspring/models/folders_folder.rb +0 -192
  2931. data/lib/docspring/models/html_template_data.rb +0 -373
  2932. data/lib/docspring/models/invalid_request.rb +0 -238
  2933. data/lib/docspring/models/pending_template.rb +0 -361
  2934. data/lib/docspring/models/submission_data.rb +0 -253
  2935. data/lib/docspring/models/submission_data_batch_request.rb +0 -228
  2936. data/lib/docspring/models/template1.rb +0 -565
  2937. data/lib/docspring/models/template1_defaults.rb +0 -201
  2938. data/lib/docspring/models/template_data.rb +0 -352
  2939. data/lib/docspring/models/templatestemplate_idadd_fields_fields.rb +0 -1306
  2940. data/lib/docspring/models/update_data_request_response.rb +0 -237
  2941. data/lib/docspring/models/update_template_data.rb +0 -188
  2942. data/lib/docspring/models/update_template_response.rb +0 -228
  2943. data/lib/docspring/models/upload_template_data.rb +0 -382
  2944. data/lib/docspring/models/upload_template_data_document.rb +0 -235
  2945. data/lib/docspring/models/upload_template_data_document_metadata.rb +0 -235
  2946. data/spec/api/client_integration_spec.rb +0 -271
  2947. data/spec/api/pdf_api_integration_spec.rb +0 -408
  2948. data/spec/api/pdf_api_spec_original.skipped.rb +0 -513
  2949. data/spec/api_client_spec.rb +0 -226
  2950. data/spec/configuration_spec.rb +0 -53
  2951. data/spec/models/add_fields_template_response_spec.rb +0 -57
  2952. data/spec/models/authentication_error_spec.rb +0 -51
  2953. data/spec/models/authentication_success_response_spec.rb +0 -45
  2954. data/spec/models/copy_template_data_spec.rb +0 -47
  2955. data/spec/models/create_html_template_data_spec.rb +0 -41
  2956. data/spec/models/create_submission_batch_response_spec.rb +0 -69
  2957. data/spec/models/create_submission_batch_submissions_response_spec.rb +0 -57
  2958. data/spec/models/create_submission_data_request_token_response_token_spec.rb +0 -59
  2959. data/spec/models/create_template_from_upload_data_spec.rb +0 -41
  2960. data/spec/models/error_spec.rb +0 -51
  2961. data/spec/models/folders_folder_spec.rb +0 -47
  2962. data/spec/models/html_template_data_spec.rb +0 -145
  2963. data/spec/models/invalid_request_spec.rb +0 -51
  2964. data/spec/models/pending_template_spec.rb +0 -141
  2965. data/spec/models/submission_data_batch_request_spec.rb +0 -71
  2966. data/spec/models/submission_data_spec.rb +0 -83
  2967. data/spec/models/template1_defaults_spec.rb +0 -53
  2968. data/spec/models/template1_spec.rb +0 -273
  2969. data/spec/models/template_data_spec.rb +0 -135
  2970. data/spec/models/templatestemplate_idadd_fields_fields_spec.rb +0 -589
  2971. data/spec/models/update_data_request_response_spec.rb +0 -57
  2972. data/spec/models/update_template_data_spec.rb +0 -41
  2973. data/spec/models/update_template_response_spec.rb +0 -51
  2974. data/spec/models/upload_template_data_document_metadata_spec.rb +0 -57
  2975. data/spec/models/upload_template_data_document_spec.rb +0 -57
  2976. data/spec/models/upload_template_data_spec.rb +0 -151
@@ -1,16 +1,16 @@
1
1
  =begin
2
- #API v1
2
+ #DocSpring API
3
3
 
4
- #DocSpring is a service that helps you fill out and sign PDF templates.
4
+ #DocSpring provides an API that helps you fill out and sign PDF templates.
5
5
 
6
- OpenAPI spec version: v1
6
+ The version of the OpenAPI document: v1
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 3.3.0
9
+ Generator version: 7.11.0
10
10
 
11
11
  =end
12
12
 
13
- require 'uri'
13
+ require 'cgi'
14
14
 
15
15
  module DocSpring
16
16
  class PDFApi
@@ -20,21 +20,21 @@ module DocSpring
20
20
  @api_client = api_client
21
21
  end
22
22
  # Add new fields to a Template
23
- # @param template_id
24
- # @param add_fields_data
23
+ # @param template_id [String]
24
+ # @param data [AddFieldsData]
25
25
  # @param [Hash] opts the optional parameters
26
- # @return [AddFieldsTemplateResponse]
27
- def add_fields_to_template(template_id, add_fields_data, opts = {})
28
- data, _status_code, _headers = add_fields_to_template_with_http_info(template_id, add_fields_data, opts)
26
+ # @return [TemplateAddFieldsResponse]
27
+ def add_fields_to_template(template_id, data, opts = {})
28
+ data, _status_code, _headers = add_fields_to_template_with_http_info(template_id, data, opts)
29
29
  data
30
30
  end
31
31
 
32
32
  # Add new fields to a Template
33
- # @param template_id
34
- # @param add_fields_data
33
+ # @param template_id [String]
34
+ # @param data [AddFieldsData]
35
35
  # @param [Hash] opts the optional parameters
36
- # @return [Array<(AddFieldsTemplateResponse, Fixnum, Hash)>] AddFieldsTemplateResponse data, response status code and response headers
37
- def add_fields_to_template_with_http_info(template_id, add_fields_data, opts = {})
36
+ # @return [Array<(TemplateAddFieldsResponse, Integer, Hash)>] TemplateAddFieldsResponse data, response status code and response headers
37
+ def add_fields_to_template_with_http_info(template_id, data, opts = {})
38
38
  if @api_client.config.debugging
39
39
  @api_client.config.logger.debug 'Calling API: PDFApi.add_fields_to_template ...'
40
40
  end
@@ -42,148 +42,118 @@ module DocSpring
42
42
  if @api_client.config.client_side_validation && template_id.nil?
43
43
  fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.add_fields_to_template"
44
44
  end
45
- # verify the required parameter 'add_fields_data' is set
46
- if @api_client.config.client_side_validation && add_fields_data.nil?
47
- fail ArgumentError, "Missing the required parameter 'add_fields_data' when calling PDFApi.add_fields_to_template"
45
+ # verify the required parameter 'data' is set
46
+ if @api_client.config.client_side_validation && data.nil?
47
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.add_fields_to_template"
48
48
  end
49
49
  # resource path
50
- local_var_path = '/templates/{template_id}/add_fields'.sub('{' + 'template_id' + '}', template_id.to_s)
50
+ local_var_path = '/templates/{template_id}/add_fields'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
51
51
 
52
52
  # query parameters
53
- query_params = {}
53
+ query_params = opts[:query_params] || {}
54
54
 
55
55
  # header parameters
56
- header_params = {}
56
+ header_params = opts[:header_params] || {}
57
57
  # HTTP header 'Accept' (if needed)
58
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
58
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
59
59
  # HTTP header 'Content-Type'
60
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
60
+ content_type = @api_client.select_header_content_type(['application/json'])
61
+ if !content_type.nil?
62
+ header_params['Content-Type'] = content_type
63
+ end
61
64
 
62
65
  # form parameters
63
- form_params = {}
66
+ form_params = opts[:form_params] || {}
64
67
 
65
68
  # http body (model)
66
- post_body = @api_client.object_to_http_body(add_fields_data)
67
- auth_names = ['api_token_basic']
68
- data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
69
- :header_params => header_params,
70
- :query_params => query_params,
71
- :form_params => form_params,
72
- :body => post_body,
73
- :auth_names => auth_names,
74
- :return_type => 'AddFieldsTemplateResponse')
75
- if @api_client.config.debugging
76
- @api_client.config.logger.debug "API called: PDFApi#add_fields_to_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
77
- end
78
- return data, status_code, headers
79
- end
80
-
81
- # Generates multiple PDFs
82
- # @param template_id
83
- # @param request_body
84
- # @param [Hash] opts the optional parameters
85
- # @return [Array<CreateSubmissionResponse>]
86
- def batch_generate_pdf_v1(template_id, request_body, opts = {})
87
- data, _status_code, _headers = batch_generate_pdf_v1_with_http_info(template_id, request_body, opts)
88
- data
89
- end
90
-
91
- # Generates multiple PDFs
92
- # @param template_id
93
- # @param request_body
94
- # @param [Hash] opts the optional parameters
95
- # @return [Array<(Array<CreateSubmissionResponse>, Fixnum, Hash)>] Array<CreateSubmissionResponse> data, response status code and response headers
96
- def batch_generate_pdf_v1_with_http_info(template_id, request_body, opts = {})
97
- if @api_client.config.debugging
98
- @api_client.config.logger.debug 'Calling API: PDFApi.batch_generate_pdf_v1 ...'
99
- end
100
- # verify the required parameter 'template_id' is set
101
- if @api_client.config.client_side_validation && template_id.nil?
102
- fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.batch_generate_pdf_v1"
103
- end
104
- # verify the required parameter 'request_body' is set
105
- if @api_client.config.client_side_validation && request_body.nil?
106
- fail ArgumentError, "Missing the required parameter 'request_body' when calling PDFApi.batch_generate_pdf_v1"
107
- end
108
- # resource path
109
- local_var_path = '/templates/{template_id}/submissions/batch'.sub('{' + 'template_id' + '}', template_id.to_s)
110
-
111
- # query parameters
112
- query_params = {}
69
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
113
70
 
114
- # header parameters
115
- header_params = {}
116
- # HTTP header 'Accept' (if needed)
117
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
118
- # HTTP header 'Content-Type'
119
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
71
+ # return_type
72
+ return_type = opts[:debug_return_type] || 'TemplateAddFieldsResponse'
120
73
 
121
- # form parameters
122
- form_params = {}
74
+ # auth_names
75
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
123
76
 
124
- # http body (model)
125
- post_body = @api_client.object_to_http_body(request_body)
126
- auth_names = ['api_token_basic']
127
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
77
+ new_options = opts.merge(
78
+ :operation => :"PDFApi.add_fields_to_template",
128
79
  :header_params => header_params,
129
80
  :query_params => query_params,
130
81
  :form_params => form_params,
131
82
  :body => post_body,
132
83
  :auth_names => auth_names,
133
- :return_type => 'Array<CreateSubmissionResponse>')
84
+ :return_type => return_type
85
+ )
86
+
87
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
134
88
  if @api_client.config.debugging
135
- @api_client.config.logger.debug "API called: PDFApi#batch_generate_pdf_v1\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
89
+ @api_client.config.logger.debug "API called: PDFApi#add_fields_to_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
136
90
  end
137
91
  return data, status_code, headers
138
92
  end
139
93
 
140
94
  # Generates multiple PDFs
141
- # @param submission_batch_data
95
+ # @param data [SubmissionBatchData]
142
96
  # @param [Hash] opts the optional parameters
143
- # @return [CreateSubmissionBatchResponse]
144
- def batch_generate_pdfs(submission_batch_data, opts = {})
145
- data, _status_code, _headers = batch_generate_pdfs_with_http_info(submission_batch_data, opts)
97
+ # @option opts [Boolean] :wait Wait for submission batch to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
98
+ # @return [BatchGeneratePdfs201Response]
99
+ def batch_generate_pdfs(data, opts = {})
100
+ data, _status_code, _headers = batch_generate_pdfs_with_http_info(data, opts)
146
101
  data
147
102
  end
148
103
 
149
104
  # Generates multiple PDFs
150
- # @param submission_batch_data
105
+ # @param data [SubmissionBatchData]
151
106
  # @param [Hash] opts the optional parameters
152
- # @return [Array<(CreateSubmissionBatchResponse, Fixnum, Hash)>] CreateSubmissionBatchResponse data, response status code and response headers
153
- def batch_generate_pdfs_with_http_info(submission_batch_data, opts = {})
107
+ # @option opts [Boolean] :wait Wait for submission batch to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
108
+ # @return [Array<(BatchGeneratePdfs201Response, Integer, Hash)>] BatchGeneratePdfs201Response data, response status code and response headers
109
+ def batch_generate_pdfs_with_http_info(data, opts = {})
154
110
  if @api_client.config.debugging
155
111
  @api_client.config.logger.debug 'Calling API: PDFApi.batch_generate_pdfs ...'
156
112
  end
157
- # verify the required parameter 'submission_batch_data' is set
158
- if @api_client.config.client_side_validation && submission_batch_data.nil?
159
- fail ArgumentError, "Missing the required parameter 'submission_batch_data' when calling PDFApi.batch_generate_pdfs"
113
+ # verify the required parameter 'data' is set
114
+ if @api_client.config.client_side_validation && data.nil?
115
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.batch_generate_pdfs"
160
116
  end
161
117
  # resource path
162
118
  local_var_path = '/submissions/batches'
163
119
 
164
120
  # query parameters
165
- query_params = {}
121
+ query_params = opts[:query_params] || {}
122
+ query_params[:'wait'] = opts[:'wait'] if !opts[:'wait'].nil?
166
123
 
167
124
  # header parameters
168
- header_params = {}
125
+ header_params = opts[:header_params] || {}
169
126
  # HTTP header 'Accept' (if needed)
170
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
127
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
171
128
  # HTTP header 'Content-Type'
172
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
129
+ content_type = @api_client.select_header_content_type(['application/json'])
130
+ if !content_type.nil?
131
+ header_params['Content-Type'] = content_type
132
+ end
173
133
 
174
134
  # form parameters
175
- form_params = {}
135
+ form_params = opts[:form_params] || {}
176
136
 
177
137
  # http body (model)
178
- post_body = @api_client.object_to_http_body(submission_batch_data)
179
- auth_names = ['api_token_basic']
180
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
138
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
139
+
140
+ # return_type
141
+ return_type = opts[:debug_return_type] || 'BatchGeneratePdfs201Response'
142
+
143
+ # auth_names
144
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
145
+
146
+ new_options = opts.merge(
147
+ :operation => :"PDFApi.batch_generate_pdfs",
181
148
  :header_params => header_params,
182
149
  :query_params => query_params,
183
150
  :form_params => form_params,
184
151
  :body => post_body,
185
152
  :auth_names => auth_names,
186
- :return_type => 'CreateSubmissionBatchResponse')
153
+ :return_type => return_type
154
+ )
155
+
156
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
187
157
  if @api_client.config.debugging
188
158
  @api_client.config.logger.debug "API called: PDFApi#batch_generate_pdfs\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
189
159
  end
@@ -191,52 +161,65 @@ module DocSpring
191
161
  end
192
162
 
193
163
  # Merge submission PDFs, template PDFs, or custom files
194
- # @param combine_pdfs_data
164
+ # @param data [CombinePdfsData]
195
165
  # @param [Hash] opts the optional parameters
196
166
  # @return [CreateCombinedSubmissionResponse]
197
- def combine_pdfs(combine_pdfs_data, opts = {})
198
- data, _status_code, _headers = combine_pdfs_with_http_info(combine_pdfs_data, opts)
167
+ def combine_pdfs(data, opts = {})
168
+ data, _status_code, _headers = combine_pdfs_with_http_info(data, opts)
199
169
  data
200
170
  end
201
171
 
202
172
  # Merge submission PDFs, template PDFs, or custom files
203
- # @param combine_pdfs_data
173
+ # @param data [CombinePdfsData]
204
174
  # @param [Hash] opts the optional parameters
205
- # @return [Array<(CreateCombinedSubmissionResponse, Fixnum, Hash)>] CreateCombinedSubmissionResponse data, response status code and response headers
206
- def combine_pdfs_with_http_info(combine_pdfs_data, opts = {})
175
+ # @return [Array<(CreateCombinedSubmissionResponse, Integer, Hash)>] CreateCombinedSubmissionResponse data, response status code and response headers
176
+ def combine_pdfs_with_http_info(data, opts = {})
207
177
  if @api_client.config.debugging
208
178
  @api_client.config.logger.debug 'Calling API: PDFApi.combine_pdfs ...'
209
179
  end
210
- # verify the required parameter 'combine_pdfs_data' is set
211
- if @api_client.config.client_side_validation && combine_pdfs_data.nil?
212
- fail ArgumentError, "Missing the required parameter 'combine_pdfs_data' when calling PDFApi.combine_pdfs"
180
+ # verify the required parameter 'data' is set
181
+ if @api_client.config.client_side_validation && data.nil?
182
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.combine_pdfs"
213
183
  end
214
184
  # resource path
215
185
  local_var_path = '/combined_submissions?v=2'
216
186
 
217
187
  # query parameters
218
- query_params = {}
188
+ query_params = opts[:query_params] || {}
219
189
 
220
190
  # header parameters
221
- header_params = {}
191
+ header_params = opts[:header_params] || {}
222
192
  # HTTP header 'Accept' (if needed)
223
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
193
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
224
194
  # HTTP header 'Content-Type'
225
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
195
+ content_type = @api_client.select_header_content_type(['application/json'])
196
+ if !content_type.nil?
197
+ header_params['Content-Type'] = content_type
198
+ end
226
199
 
227
200
  # form parameters
228
- form_params = {}
201
+ form_params = opts[:form_params] || {}
229
202
 
230
203
  # http body (model)
231
- post_body = @api_client.object_to_http_body(combine_pdfs_data)
232
- auth_names = ['api_token_basic']
233
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
204
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
205
+
206
+ # return_type
207
+ return_type = opts[:debug_return_type] || 'CreateCombinedSubmissionResponse'
208
+
209
+ # auth_names
210
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
211
+
212
+ new_options = opts.merge(
213
+ :operation => :"PDFApi.combine_pdfs",
234
214
  :header_params => header_params,
235
215
  :query_params => query_params,
236
216
  :form_params => form_params,
237
217
  :body => post_body,
238
218
  :auth_names => auth_names,
239
- :return_type => 'CreateCombinedSubmissionResponse')
219
+ :return_type => return_type
220
+ )
221
+
222
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
240
223
  if @api_client.config.debugging
241
224
  @api_client.config.logger.debug "API called: PDFApi#combine_pdfs\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
242
225
  end
@@ -244,52 +227,68 @@ module DocSpring
244
227
  end
245
228
 
246
229
  # Merge generated PDFs together
247
- # @param combined_submission_data
230
+ # @param data [CombinedSubmissionData]
248
231
  # @param [Hash] opts the optional parameters
232
+ # @option opts [Boolean] :wait Wait for combined submission to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
249
233
  # @return [CreateCombinedSubmissionResponse]
250
- def combine_submissions(combined_submission_data, opts = {})
251
- data, _status_code, _headers = combine_submissions_with_http_info(combined_submission_data, opts)
234
+ def combine_submissions(data, opts = {})
235
+ data, _status_code, _headers = combine_submissions_with_http_info(data, opts)
252
236
  data
253
237
  end
254
238
 
255
239
  # Merge generated PDFs together
256
- # @param combined_submission_data
240
+ # @param data [CombinedSubmissionData]
257
241
  # @param [Hash] opts the optional parameters
258
- # @return [Array<(CreateCombinedSubmissionResponse, Fixnum, Hash)>] CreateCombinedSubmissionResponse data, response status code and response headers
259
- def combine_submissions_with_http_info(combined_submission_data, opts = {})
242
+ # @option opts [Boolean] :wait Wait for combined submission to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
243
+ # @return [Array<(CreateCombinedSubmissionResponse, Integer, Hash)>] CreateCombinedSubmissionResponse data, response status code and response headers
244
+ def combine_submissions_with_http_info(data, opts = {})
260
245
  if @api_client.config.debugging
261
246
  @api_client.config.logger.debug 'Calling API: PDFApi.combine_submissions ...'
262
247
  end
263
- # verify the required parameter 'combined_submission_data' is set
264
- if @api_client.config.client_side_validation && combined_submission_data.nil?
265
- fail ArgumentError, "Missing the required parameter 'combined_submission_data' when calling PDFApi.combine_submissions"
248
+ # verify the required parameter 'data' is set
249
+ if @api_client.config.client_side_validation && data.nil?
250
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.combine_submissions"
266
251
  end
267
252
  # resource path
268
253
  local_var_path = '/combined_submissions'
269
254
 
270
255
  # query parameters
271
- query_params = {}
256
+ query_params = opts[:query_params] || {}
257
+ query_params[:'wait'] = opts[:'wait'] if !opts[:'wait'].nil?
272
258
 
273
259
  # header parameters
274
- header_params = {}
260
+ header_params = opts[:header_params] || {}
275
261
  # HTTP header 'Accept' (if needed)
276
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
262
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
277
263
  # HTTP header 'Content-Type'
278
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
264
+ content_type = @api_client.select_header_content_type(['application/json'])
265
+ if !content_type.nil?
266
+ header_params['Content-Type'] = content_type
267
+ end
279
268
 
280
269
  # form parameters
281
- form_params = {}
270
+ form_params = opts[:form_params] || {}
282
271
 
283
272
  # http body (model)
284
- post_body = @api_client.object_to_http_body(combined_submission_data)
285
- auth_names = ['api_token_basic']
286
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
273
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
274
+
275
+ # return_type
276
+ return_type = opts[:debug_return_type] || 'CreateCombinedSubmissionResponse'
277
+
278
+ # auth_names
279
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
280
+
281
+ new_options = opts.merge(
282
+ :operation => :"PDFApi.combine_submissions",
287
283
  :header_params => header_params,
288
284
  :query_params => query_params,
289
285
  :form_params => form_params,
290
286
  :body => post_body,
291
287
  :auth_names => auth_names,
292
- :return_type => 'CreateCombinedSubmissionResponse')
288
+ :return_type => return_type
289
+ )
290
+
291
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
293
292
  if @api_client.config.debugging
294
293
  @api_client.config.logger.debug "API called: PDFApi#combine_submissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
295
294
  end
@@ -297,21 +296,21 @@ module DocSpring
297
296
  end
298
297
 
299
298
  # Copy a Template
300
- # @param template_id
301
- # @param copy_template_data
299
+ # @param template_id [String]
302
300
  # @param [Hash] opts the optional parameters
303
- # @return [Template]
304
- def copy_template(template_id, copy_template_data, opts = {})
305
- data, _status_code, _headers = copy_template_with_http_info(template_id, copy_template_data, opts)
301
+ # @option opts [CopyTemplateOptions] :options
302
+ # @return [TemplatePreview]
303
+ def copy_template(template_id, opts = {})
304
+ data, _status_code, _headers = copy_template_with_http_info(template_id, opts)
306
305
  data
307
306
  end
308
307
 
309
308
  # Copy a Template
310
- # @param template_id
311
- # @param copy_template_data
309
+ # @param template_id [String]
312
310
  # @param [Hash] opts the optional parameters
313
- # @return [Array<(Template, Fixnum, Hash)>] Template data, response status code and response headers
314
- def copy_template_with_http_info(template_id, copy_template_data, opts = {})
311
+ # @option opts [CopyTemplateOptions] :options
312
+ # @return [Array<(TemplatePreview, Integer, Hash)>] TemplatePreview data, response status code and response headers
313
+ def copy_template_with_http_info(template_id, opts = {})
315
314
  if @api_client.config.debugging
316
315
  @api_client.config.logger.debug 'Calling API: PDFApi.copy_template ...'
317
316
  end
@@ -319,36 +318,45 @@ module DocSpring
319
318
  if @api_client.config.client_side_validation && template_id.nil?
320
319
  fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.copy_template"
321
320
  end
322
- # verify the required parameter 'copy_template_data' is set
323
- if @api_client.config.client_side_validation && copy_template_data.nil?
324
- fail ArgumentError, "Missing the required parameter 'copy_template_data' when calling PDFApi.copy_template"
325
- end
326
321
  # resource path
327
- local_var_path = '/templates/{template_id}/copy'.sub('{' + 'template_id' + '}', template_id.to_s)
322
+ local_var_path = '/templates/{template_id}/copy'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
328
323
 
329
324
  # query parameters
330
- query_params = {}
325
+ query_params = opts[:query_params] || {}
331
326
 
332
327
  # header parameters
333
- header_params = {}
328
+ header_params = opts[:header_params] || {}
334
329
  # HTTP header 'Accept' (if needed)
335
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
330
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
336
331
  # HTTP header 'Content-Type'
337
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
332
+ content_type = @api_client.select_header_content_type(['application/json'])
333
+ if !content_type.nil?
334
+ header_params['Content-Type'] = content_type
335
+ end
338
336
 
339
337
  # form parameters
340
- form_params = {}
338
+ form_params = opts[:form_params] || {}
341
339
 
342
340
  # http body (model)
343
- post_body = @api_client.object_to_http_body(copy_template_data)
344
- auth_names = ['api_token_basic']
345
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
341
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'options'])
342
+
343
+ # return_type
344
+ return_type = opts[:debug_return_type] || 'TemplatePreview'
345
+
346
+ # auth_names
347
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
348
+
349
+ new_options = opts.merge(
350
+ :operation => :"PDFApi.copy_template",
346
351
  :header_params => header_params,
347
352
  :query_params => query_params,
348
353
  :form_params => form_params,
349
354
  :body => post_body,
350
355
  :auth_names => auth_names,
351
- :return_type => 'Template')
356
+ :return_type => return_type
357
+ )
358
+
359
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
352
360
  if @api_client.config.debugging
353
361
  @api_client.config.logger.debug "API called: PDFApi#copy_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
354
362
  end
@@ -356,61 +364,147 @@ module DocSpring
356
364
  end
357
365
 
358
366
  # Create a new custom file from a cached presign upload
359
- # @param create_custom_file_data
367
+ # @param data [CreateCustomFileData]
360
368
  # @param [Hash] opts the optional parameters
361
369
  # @return [CreateCustomFileResponse]
362
- def create_custom_file_from_upload(create_custom_file_data, opts = {})
363
- data, _status_code, _headers = create_custom_file_from_upload_with_http_info(create_custom_file_data, opts)
370
+ def create_custom_file_from_upload(data, opts = {})
371
+ data, _status_code, _headers = create_custom_file_from_upload_with_http_info(data, opts)
364
372
  data
365
373
  end
366
374
 
367
375
  # Create a new custom file from a cached presign upload
368
- # @param create_custom_file_data
376
+ # @param data [CreateCustomFileData]
369
377
  # @param [Hash] opts the optional parameters
370
- # @return [Array<(CreateCustomFileResponse, Fixnum, Hash)>] CreateCustomFileResponse data, response status code and response headers
371
- def create_custom_file_from_upload_with_http_info(create_custom_file_data, opts = {})
378
+ # @return [Array<(CreateCustomFileResponse, Integer, Hash)>] CreateCustomFileResponse data, response status code and response headers
379
+ def create_custom_file_from_upload_with_http_info(data, opts = {})
372
380
  if @api_client.config.debugging
373
381
  @api_client.config.logger.debug 'Calling API: PDFApi.create_custom_file_from_upload ...'
374
382
  end
375
- # verify the required parameter 'create_custom_file_data' is set
376
- if @api_client.config.client_side_validation && create_custom_file_data.nil?
377
- fail ArgumentError, "Missing the required parameter 'create_custom_file_data' when calling PDFApi.create_custom_file_from_upload"
383
+ # verify the required parameter 'data' is set
384
+ if @api_client.config.client_side_validation && data.nil?
385
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.create_custom_file_from_upload"
378
386
  end
379
387
  # resource path
380
388
  local_var_path = '/custom_files'
381
389
 
382
390
  # query parameters
383
- query_params = {}
391
+ query_params = opts[:query_params] || {}
384
392
 
385
393
  # header parameters
386
- header_params = {}
394
+ header_params = opts[:header_params] || {}
387
395
  # HTTP header 'Accept' (if needed)
388
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
396
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
389
397
  # HTTP header 'Content-Type'
390
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
398
+ content_type = @api_client.select_header_content_type(['application/json'])
399
+ if !content_type.nil?
400
+ header_params['Content-Type'] = content_type
401
+ end
391
402
 
392
403
  # form parameters
393
- form_params = {}
404
+ form_params = opts[:form_params] || {}
394
405
 
395
406
  # http body (model)
396
- post_body = @api_client.object_to_http_body(create_custom_file_data)
397
- auth_names = ['api_token_basic']
398
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
407
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
408
+
409
+ # return_type
410
+ return_type = opts[:debug_return_type] || 'CreateCustomFileResponse'
411
+
412
+ # auth_names
413
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
414
+
415
+ new_options = opts.merge(
416
+ :operation => :"PDFApi.create_custom_file_from_upload",
399
417
  :header_params => header_params,
400
418
  :query_params => query_params,
401
419
  :form_params => form_params,
402
420
  :body => post_body,
403
421
  :auth_names => auth_names,
404
- :return_type => 'CreateCustomFileResponse')
422
+ :return_type => return_type
423
+ )
424
+
425
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
405
426
  if @api_client.config.debugging
406
427
  @api_client.config.logger.debug "API called: PDFApi#create_custom_file_from_upload\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
407
428
  end
408
429
  return data, status_code, headers
409
430
  end
410
431
 
432
+ # Creates a new event for emailing a signee a request for signature
433
+ # @param data_request_id [String]
434
+ # @param event [CreateSubmissionDataRequestEventRequest]
435
+ # @param [Hash] opts the optional parameters
436
+ # @return [CreateSubmissionDataRequestEventResponse]
437
+ def create_data_request_event(data_request_id, event, opts = {})
438
+ data, _status_code, _headers = create_data_request_event_with_http_info(data_request_id, event, opts)
439
+ data
440
+ end
441
+
442
+ # Creates a new event for emailing a signee a request for signature
443
+ # @param data_request_id [String]
444
+ # @param event [CreateSubmissionDataRequestEventRequest]
445
+ # @param [Hash] opts the optional parameters
446
+ # @return [Array<(CreateSubmissionDataRequestEventResponse, Integer, Hash)>] CreateSubmissionDataRequestEventResponse data, response status code and response headers
447
+ def create_data_request_event_with_http_info(data_request_id, event, opts = {})
448
+ if @api_client.config.debugging
449
+ @api_client.config.logger.debug 'Calling API: PDFApi.create_data_request_event ...'
450
+ end
451
+ # verify the required parameter 'data_request_id' is set
452
+ if @api_client.config.client_side_validation && data_request_id.nil?
453
+ fail ArgumentError, "Missing the required parameter 'data_request_id' when calling PDFApi.create_data_request_event"
454
+ end
455
+ # verify the required parameter 'event' is set
456
+ if @api_client.config.client_side_validation && event.nil?
457
+ fail ArgumentError, "Missing the required parameter 'event' when calling PDFApi.create_data_request_event"
458
+ end
459
+ # resource path
460
+ local_var_path = '/data_requests/{data_request_id}/events'.sub('{' + 'data_request_id' + '}', CGI.escape(data_request_id.to_s))
461
+
462
+ # query parameters
463
+ query_params = opts[:query_params] || {}
464
+
465
+ # header parameters
466
+ header_params = opts[:header_params] || {}
467
+ # HTTP header 'Accept' (if needed)
468
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
469
+ # HTTP header 'Content-Type'
470
+ content_type = @api_client.select_header_content_type(['application/json'])
471
+ if !content_type.nil?
472
+ header_params['Content-Type'] = content_type
473
+ end
474
+
475
+ # form parameters
476
+ form_params = opts[:form_params] || {}
477
+
478
+ # http body (model)
479
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(event)
480
+
481
+ # return_type
482
+ return_type = opts[:debug_return_type] || 'CreateSubmissionDataRequestEventResponse'
483
+
484
+ # auth_names
485
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
486
+
487
+ new_options = opts.merge(
488
+ :operation => :"PDFApi.create_data_request_event",
489
+ :header_params => header_params,
490
+ :query_params => query_params,
491
+ :form_params => form_params,
492
+ :body => post_body,
493
+ :auth_names => auth_names,
494
+ :return_type => return_type
495
+ )
496
+
497
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
498
+ if @api_client.config.debugging
499
+ @api_client.config.logger.debug "API called: PDFApi#create_data_request_event\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
500
+ end
501
+ return data, status_code, headers
502
+ end
503
+
411
504
  # Creates a new data request token for form authentication
412
- # @param data_request_id
505
+ # @param data_request_id [String]
413
506
  # @param [Hash] opts the optional parameters
507
+ # @option opts [String] :type
414
508
  # @return [CreateSubmissionDataRequestTokenResponse]
415
509
  def create_data_request_token(data_request_id, opts = {})
416
510
  data, _status_code, _headers = create_data_request_token_with_http_info(data_request_id, opts)
@@ -418,9 +512,10 @@ module DocSpring
418
512
  end
419
513
 
420
514
  # Creates a new data request token for form authentication
421
- # @param data_request_id
515
+ # @param data_request_id [String]
422
516
  # @param [Hash] opts the optional parameters
423
- # @return [Array<(CreateSubmissionDataRequestTokenResponse, Fixnum, Hash)>] CreateSubmissionDataRequestTokenResponse data, response status code and response headers
517
+ # @option opts [String] :type
518
+ # @return [Array<(CreateSubmissionDataRequestTokenResponse, Integer, Hash)>] CreateSubmissionDataRequestTokenResponse data, response status code and response headers
424
519
  def create_data_request_token_with_http_info(data_request_id, opts = {})
425
520
  if @api_client.config.debugging
426
521
  @api_client.config.logger.debug 'Calling API: PDFApi.create_data_request_token ...'
@@ -429,30 +524,45 @@ module DocSpring
429
524
  if @api_client.config.client_side_validation && data_request_id.nil?
430
525
  fail ArgumentError, "Missing the required parameter 'data_request_id' when calling PDFApi.create_data_request_token"
431
526
  end
527
+ allowable_values = ["api", "email"]
528
+ if @api_client.config.client_side_validation && opts[:'type'] && !allowable_values.include?(opts[:'type'])
529
+ fail ArgumentError, "invalid value for \"type\", must be one of #{allowable_values}"
530
+ end
432
531
  # resource path
433
- local_var_path = '/data_requests/{data_request_id}/tokens'.sub('{' + 'data_request_id' + '}', data_request_id.to_s)
532
+ local_var_path = '/data_requests/{data_request_id}/tokens'.sub('{' + 'data_request_id' + '}', CGI.escape(data_request_id.to_s))
434
533
 
435
534
  # query parameters
436
- query_params = {}
535
+ query_params = opts[:query_params] || {}
536
+ query_params[:'type'] = opts[:'type'] if !opts[:'type'].nil?
437
537
 
438
538
  # header parameters
439
- header_params = {}
539
+ header_params = opts[:header_params] || {}
440
540
  # HTTP header 'Accept' (if needed)
441
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
541
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
442
542
 
443
543
  # form parameters
444
- form_params = {}
544
+ form_params = opts[:form_params] || {}
445
545
 
446
546
  # http body (model)
447
- post_body = nil
448
- auth_names = ['api_token_basic']
449
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
547
+ post_body = opts[:debug_body]
548
+
549
+ # return_type
550
+ return_type = opts[:debug_return_type] || 'CreateSubmissionDataRequestTokenResponse'
551
+
552
+ # auth_names
553
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
554
+
555
+ new_options = opts.merge(
556
+ :operation => :"PDFApi.create_data_request_token",
450
557
  :header_params => header_params,
451
558
  :query_params => query_params,
452
559
  :form_params => form_params,
453
560
  :body => post_body,
454
561
  :auth_names => auth_names,
455
- :return_type => 'CreateSubmissionDataRequestTokenResponse')
562
+ :return_type => return_type
563
+ )
564
+
565
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
456
566
  if @api_client.config.debugging
457
567
  @api_client.config.logger.debug "API called: PDFApi#create_data_request_token\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
458
568
  end
@@ -460,52 +570,65 @@ module DocSpring
460
570
  end
461
571
 
462
572
  # Create a folder
463
- # @param create_folder_data
573
+ # @param data [CreateFolderData]
464
574
  # @param [Hash] opts the optional parameters
465
575
  # @return [Folder]
466
- def create_folder(create_folder_data, opts = {})
467
- data, _status_code, _headers = create_folder_with_http_info(create_folder_data, opts)
576
+ def create_folder(data, opts = {})
577
+ data, _status_code, _headers = create_folder_with_http_info(data, opts)
468
578
  data
469
579
  end
470
580
 
471
581
  # Create a folder
472
- # @param create_folder_data
582
+ # @param data [CreateFolderData]
473
583
  # @param [Hash] opts the optional parameters
474
- # @return [Array<(Folder, Fixnum, Hash)>] Folder data, response status code and response headers
475
- def create_folder_with_http_info(create_folder_data, opts = {})
584
+ # @return [Array<(Folder, Integer, Hash)>] Folder data, response status code and response headers
585
+ def create_folder_with_http_info(data, opts = {})
476
586
  if @api_client.config.debugging
477
587
  @api_client.config.logger.debug 'Calling API: PDFApi.create_folder ...'
478
588
  end
479
- # verify the required parameter 'create_folder_data' is set
480
- if @api_client.config.client_side_validation && create_folder_data.nil?
481
- fail ArgumentError, "Missing the required parameter 'create_folder_data' when calling PDFApi.create_folder"
589
+ # verify the required parameter 'data' is set
590
+ if @api_client.config.client_side_validation && data.nil?
591
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.create_folder"
482
592
  end
483
593
  # resource path
484
594
  local_var_path = '/folders/'
485
595
 
486
596
  # query parameters
487
- query_params = {}
597
+ query_params = opts[:query_params] || {}
488
598
 
489
599
  # header parameters
490
- header_params = {}
600
+ header_params = opts[:header_params] || {}
491
601
  # HTTP header 'Accept' (if needed)
492
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
602
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
493
603
  # HTTP header 'Content-Type'
494
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
604
+ content_type = @api_client.select_header_content_type(['application/json'])
605
+ if !content_type.nil?
606
+ header_params['Content-Type'] = content_type
607
+ end
495
608
 
496
609
  # form parameters
497
- form_params = {}
610
+ form_params = opts[:form_params] || {}
498
611
 
499
612
  # http body (model)
500
- post_body = @api_client.object_to_http_body(create_folder_data)
501
- auth_names = ['api_token_basic']
502
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
613
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
614
+
615
+ # return_type
616
+ return_type = opts[:debug_return_type] || 'Folder'
617
+
618
+ # auth_names
619
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
620
+
621
+ new_options = opts.merge(
622
+ :operation => :"PDFApi.create_folder",
503
623
  :header_params => header_params,
504
624
  :query_params => query_params,
505
625
  :form_params => form_params,
506
626
  :body => post_body,
507
627
  :auth_names => auth_names,
508
- :return_type => 'Folder')
628
+ :return_type => return_type
629
+ )
630
+
631
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
509
632
  if @api_client.config.debugging
510
633
  @api_client.config.logger.debug "API called: PDFApi#create_folder\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
511
634
  end
@@ -513,52 +636,65 @@ module DocSpring
513
636
  end
514
637
 
515
638
  # Create a new HTML template
516
- # @param create_html_template_data
639
+ # @param data [CreateHtmlTemplate]
517
640
  # @param [Hash] opts the optional parameters
518
- # @return [PendingTemplate]
519
- def create_html_template(create_html_template_data, opts = {})
520
- data, _status_code, _headers = create_html_template_with_http_info(create_html_template_data, opts)
641
+ # @return [TemplatePreview]
642
+ def create_html_template(data, opts = {})
643
+ data, _status_code, _headers = create_html_template_with_http_info(data, opts)
521
644
  data
522
645
  end
523
646
 
524
647
  # Create a new HTML template
525
- # @param create_html_template_data
648
+ # @param data [CreateHtmlTemplate]
526
649
  # @param [Hash] opts the optional parameters
527
- # @return [Array<(PendingTemplate, Fixnum, Hash)>] PendingTemplate data, response status code and response headers
528
- def create_html_template_with_http_info(create_html_template_data, opts = {})
650
+ # @return [Array<(TemplatePreview, Integer, Hash)>] TemplatePreview data, response status code and response headers
651
+ def create_html_template_with_http_info(data, opts = {})
529
652
  if @api_client.config.debugging
530
653
  @api_client.config.logger.debug 'Calling API: PDFApi.create_html_template ...'
531
654
  end
532
- # verify the required parameter 'create_html_template_data' is set
533
- if @api_client.config.client_side_validation && create_html_template_data.nil?
534
- fail ArgumentError, "Missing the required parameter 'create_html_template_data' when calling PDFApi.create_html_template"
655
+ # verify the required parameter 'data' is set
656
+ if @api_client.config.client_side_validation && data.nil?
657
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.create_html_template"
535
658
  end
536
659
  # resource path
537
- local_var_path = '/templates?desc=html'
660
+ local_var_path = '/templates?endpoint_description=html'
538
661
 
539
662
  # query parameters
540
- query_params = {}
663
+ query_params = opts[:query_params] || {}
541
664
 
542
665
  # header parameters
543
- header_params = {}
666
+ header_params = opts[:header_params] || {}
544
667
  # HTTP header 'Accept' (if needed)
545
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
668
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
546
669
  # HTTP header 'Content-Type'
547
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
670
+ content_type = @api_client.select_header_content_type(['application/json'])
671
+ if !content_type.nil?
672
+ header_params['Content-Type'] = content_type
673
+ end
548
674
 
549
675
  # form parameters
550
- form_params = {}
676
+ form_params = opts[:form_params] || {}
551
677
 
552
678
  # http body (model)
553
- post_body = @api_client.object_to_http_body(create_html_template_data)
554
- auth_names = ['api_token_basic']
555
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
679
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
680
+
681
+ # return_type
682
+ return_type = opts[:debug_return_type] || 'TemplatePreview'
683
+
684
+ # auth_names
685
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
686
+
687
+ new_options = opts.merge(
688
+ :operation => :"PDFApi.create_html_template",
556
689
  :header_params => header_params,
557
690
  :query_params => query_params,
558
691
  :form_params => form_params,
559
692
  :body => post_body,
560
693
  :auth_names => auth_names,
561
- :return_type => 'PendingTemplate')
694
+ :return_type => return_type
695
+ )
696
+
697
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
562
698
  if @api_client.config.debugging
563
699
  @api_client.config.logger.debug "API called: PDFApi#create_html_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
564
700
  end
@@ -566,22 +702,26 @@ module DocSpring
566
702
  end
567
703
 
568
704
  # Create a new PDF template with a form POST file upload
569
- # @param template_document
570
- # @param template_name
705
+ # @param template_document [File]
706
+ # @param template_name [String]
571
707
  # @param [Hash] opts the optional parameters
708
+ # @option opts [Boolean] :wait Wait for template document to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
709
+ # @option opts [String] :template_description
572
710
  # @option opts [String] :template_parent_folder_id
573
- # @return [PendingTemplate]
711
+ # @return [TemplatePreview]
574
712
  def create_pdf_template(template_document, template_name, opts = {})
575
713
  data, _status_code, _headers = create_pdf_template_with_http_info(template_document, template_name, opts)
576
714
  data
577
715
  end
578
716
 
579
717
  # Create a new PDF template with a form POST file upload
580
- # @param template_document
581
- # @param template_name
718
+ # @param template_document [File]
719
+ # @param template_name [String]
582
720
  # @param [Hash] opts the optional parameters
721
+ # @option opts [Boolean] :wait Wait for template document to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
722
+ # @option opts [String] :template_description
583
723
  # @option opts [String] :template_parent_folder_id
584
- # @return [Array<(PendingTemplate, Fixnum, Hash)>] PendingTemplate data, response status code and response headers
724
+ # @return [Array<(TemplatePreview, Integer, Hash)>] TemplatePreview data, response status code and response headers
585
725
  def create_pdf_template_with_http_info(template_document, template_name, opts = {})
586
726
  if @api_client.config.debugging
587
727
  @api_client.config.logger.debug 'Calling API: PDFApi.create_pdf_template ...'
@@ -598,31 +738,46 @@ module DocSpring
598
738
  local_var_path = '/templates'
599
739
 
600
740
  # query parameters
601
- query_params = {}
741
+ query_params = opts[:query_params] || {}
742
+ query_params[:'wait'] = opts[:'wait'] if !opts[:'wait'].nil?
602
743
 
603
744
  # header parameters
604
- header_params = {}
745
+ header_params = opts[:header_params] || {}
605
746
  # HTTP header 'Accept' (if needed)
606
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
747
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
607
748
  # HTTP header 'Content-Type'
608
- header_params['Content-Type'] = @api_client.select_header_content_type(['multipart/form-data'])
749
+ content_type = @api_client.select_header_content_type(['multipart/form-data'])
750
+ if !content_type.nil?
751
+ header_params['Content-Type'] = content_type
752
+ end
609
753
 
610
754
  # form parameters
611
- form_params = {}
755
+ form_params = opts[:form_params] || {}
612
756
  form_params['template[document]'] = template_document
613
757
  form_params['template[name]'] = template_name
758
+ form_params['template[description]'] = opts[:'template_description'] if !opts[:'template_description'].nil?
614
759
  form_params['template[parent_folder_id]'] = opts[:'template_parent_folder_id'] if !opts[:'template_parent_folder_id'].nil?
615
760
 
616
761
  # http body (model)
617
- post_body = nil
618
- auth_names = ['api_token_basic']
619
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
762
+ post_body = opts[:debug_body]
763
+
764
+ # return_type
765
+ return_type = opts[:debug_return_type] || 'TemplatePreview'
766
+
767
+ # auth_names
768
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
769
+
770
+ new_options = opts.merge(
771
+ :operation => :"PDFApi.create_pdf_template",
620
772
  :header_params => header_params,
621
773
  :query_params => query_params,
622
774
  :form_params => form_params,
623
775
  :body => post_body,
624
776
  :auth_names => auth_names,
625
- :return_type => 'PendingTemplate')
777
+ :return_type => return_type
778
+ )
779
+
780
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
626
781
  if @api_client.config.debugging
627
782
  @api_client.config.logger.debug "API called: PDFApi#create_pdf_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
628
783
  end
@@ -630,52 +785,65 @@ module DocSpring
630
785
  end
631
786
 
632
787
  # Create a new PDF template from a cached presign upload
633
- # @param create_template_from_upload_data
788
+ # @param data [CreatePdfTemplate]
634
789
  # @param [Hash] opts the optional parameters
635
- # @return [PendingTemplate]
636
- def create_pdf_template_from_upload(create_template_from_upload_data, opts = {})
637
- data, _status_code, _headers = create_pdf_template_from_upload_with_http_info(create_template_from_upload_data, opts)
790
+ # @return [TemplatePreview]
791
+ def create_pdf_template_from_upload(data, opts = {})
792
+ data, _status_code, _headers = create_pdf_template_from_upload_with_http_info(data, opts)
638
793
  data
639
794
  end
640
795
 
641
796
  # Create a new PDF template from a cached presign upload
642
- # @param create_template_from_upload_data
797
+ # @param data [CreatePdfTemplate]
643
798
  # @param [Hash] opts the optional parameters
644
- # @return [Array<(PendingTemplate, Fixnum, Hash)>] PendingTemplate data, response status code and response headers
645
- def create_pdf_template_from_upload_with_http_info(create_template_from_upload_data, opts = {})
799
+ # @return [Array<(TemplatePreview, Integer, Hash)>] TemplatePreview data, response status code and response headers
800
+ def create_pdf_template_from_upload_with_http_info(data, opts = {})
646
801
  if @api_client.config.debugging
647
802
  @api_client.config.logger.debug 'Calling API: PDFApi.create_pdf_template_from_upload ...'
648
803
  end
649
- # verify the required parameter 'create_template_from_upload_data' is set
650
- if @api_client.config.client_side_validation && create_template_from_upload_data.nil?
651
- fail ArgumentError, "Missing the required parameter 'create_template_from_upload_data' when calling PDFApi.create_pdf_template_from_upload"
804
+ # verify the required parameter 'data' is set
805
+ if @api_client.config.client_side_validation && data.nil?
806
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.create_pdf_template_from_upload"
652
807
  end
653
808
  # resource path
654
- local_var_path = '/templates?desc=cached_upload'
809
+ local_var_path = '/templates?endpoint_description=cached_upload'
655
810
 
656
811
  # query parameters
657
- query_params = {}
812
+ query_params = opts[:query_params] || {}
658
813
 
659
814
  # header parameters
660
- header_params = {}
815
+ header_params = opts[:header_params] || {}
661
816
  # HTTP header 'Accept' (if needed)
662
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
817
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
663
818
  # HTTP header 'Content-Type'
664
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
819
+ content_type = @api_client.select_header_content_type(['application/json'])
820
+ if !content_type.nil?
821
+ header_params['Content-Type'] = content_type
822
+ end
665
823
 
666
824
  # form parameters
667
- form_params = {}
825
+ form_params = opts[:form_params] || {}
668
826
 
669
827
  # http body (model)
670
- post_body = @api_client.object_to_http_body(create_template_from_upload_data)
671
- auth_names = ['api_token_basic']
672
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
828
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
829
+
830
+ # return_type
831
+ return_type = opts[:debug_return_type] || 'TemplatePreview'
832
+
833
+ # auth_names
834
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
835
+
836
+ new_options = opts.merge(
837
+ :operation => :"PDFApi.create_pdf_template_from_upload",
673
838
  :header_params => header_params,
674
839
  :query_params => query_params,
675
840
  :form_params => form_params,
676
841
  :body => post_body,
677
842
  :auth_names => auth_names,
678
- :return_type => 'PendingTemplate')
843
+ :return_type => return_type
844
+ )
845
+
846
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
679
847
  if @api_client.config.debugging
680
848
  @api_client.config.logger.debug "API called: PDFApi#create_pdf_template_from_upload\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
681
849
  end
@@ -683,7 +851,7 @@ module DocSpring
683
851
  end
684
852
 
685
853
  # Delete a folder
686
- # @param folder_id
854
+ # @param folder_id [String]
687
855
  # @param [Hash] opts the optional parameters
688
856
  # @return [Folder]
689
857
  def delete_folder(folder_id, opts = {})
@@ -692,9 +860,9 @@ module DocSpring
692
860
  end
693
861
 
694
862
  # Delete a folder
695
- # @param folder_id
863
+ # @param folder_id [String]
696
864
  # @param [Hash] opts the optional parameters
697
- # @return [Array<(Folder, Fixnum, Hash)>] Folder data, response status code and response headers
865
+ # @return [Array<(Folder, Integer, Hash)>] Folder data, response status code and response headers
698
866
  def delete_folder_with_http_info(folder_id, opts = {})
699
867
  if @api_client.config.debugging
700
868
  @api_client.config.logger.debug 'Calling API: PDFApi.delete_folder ...'
@@ -704,37 +872,108 @@ module DocSpring
704
872
  fail ArgumentError, "Missing the required parameter 'folder_id' when calling PDFApi.delete_folder"
705
873
  end
706
874
  # resource path
707
- local_var_path = '/folders/{folder_id}'.sub('{' + 'folder_id' + '}', folder_id.to_s)
875
+ local_var_path = '/folders/{folder_id}'.sub('{' + 'folder_id' + '}', CGI.escape(folder_id.to_s))
708
876
 
709
877
  # query parameters
710
- query_params = {}
878
+ query_params = opts[:query_params] || {}
711
879
 
712
880
  # header parameters
713
- header_params = {}
881
+ header_params = opts[:header_params] || {}
714
882
  # HTTP header 'Accept' (if needed)
715
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
883
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
716
884
 
717
885
  # form parameters
718
- form_params = {}
886
+ form_params = opts[:form_params] || {}
719
887
 
720
888
  # http body (model)
721
- post_body = nil
722
- auth_names = ['api_token_basic']
723
- data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
889
+ post_body = opts[:debug_body]
890
+
891
+ # return_type
892
+ return_type = opts[:debug_return_type] || 'Folder'
893
+
894
+ # auth_names
895
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
896
+
897
+ new_options = opts.merge(
898
+ :operation => :"PDFApi.delete_folder",
724
899
  :header_params => header_params,
725
900
  :query_params => query_params,
726
901
  :form_params => form_params,
727
902
  :body => post_body,
728
903
  :auth_names => auth_names,
729
- :return_type => 'Folder')
904
+ :return_type => return_type
905
+ )
906
+
907
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
730
908
  if @api_client.config.debugging
731
909
  @api_client.config.logger.debug "API called: PDFApi#delete_folder\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
732
910
  end
733
911
  return data, status_code, headers
734
912
  end
735
913
 
914
+ # Delete a template
915
+ # @param template_id [String]
916
+ # @param [Hash] opts the optional parameters
917
+ # @return [SuccessMultipleErrorsResponse]
918
+ def delete_template(template_id, opts = {})
919
+ data, _status_code, _headers = delete_template_with_http_info(template_id, opts)
920
+ data
921
+ end
922
+
923
+ # Delete a template
924
+ # @param template_id [String]
925
+ # @param [Hash] opts the optional parameters
926
+ # @return [Array<(SuccessMultipleErrorsResponse, Integer, Hash)>] SuccessMultipleErrorsResponse data, response status code and response headers
927
+ def delete_template_with_http_info(template_id, opts = {})
928
+ if @api_client.config.debugging
929
+ @api_client.config.logger.debug 'Calling API: PDFApi.delete_template ...'
930
+ end
931
+ # verify the required parameter 'template_id' is set
932
+ if @api_client.config.client_side_validation && template_id.nil?
933
+ fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.delete_template"
934
+ end
935
+ # resource path
936
+ local_var_path = '/templates/{template_id}'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
937
+
938
+ # query parameters
939
+ query_params = opts[:query_params] || {}
940
+
941
+ # header parameters
942
+ header_params = opts[:header_params] || {}
943
+ # HTTP header 'Accept' (if needed)
944
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
945
+
946
+ # form parameters
947
+ form_params = opts[:form_params] || {}
948
+
949
+ # http body (model)
950
+ post_body = opts[:debug_body]
951
+
952
+ # return_type
953
+ return_type = opts[:debug_return_type] || 'SuccessMultipleErrorsResponse'
954
+
955
+ # auth_names
956
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
957
+
958
+ new_options = opts.merge(
959
+ :operation => :"PDFApi.delete_template",
960
+ :header_params => header_params,
961
+ :query_params => query_params,
962
+ :form_params => form_params,
963
+ :body => post_body,
964
+ :auth_names => auth_names,
965
+ :return_type => return_type
966
+ )
967
+
968
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
969
+ if @api_client.config.debugging
970
+ @api_client.config.logger.debug "API called: PDFApi#delete_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
971
+ end
972
+ return data, status_code, headers
973
+ end
974
+
736
975
  # Expire a combined submission
737
- # @param combined_submission_id
976
+ # @param combined_submission_id [String]
738
977
  # @param [Hash] opts the optional parameters
739
978
  # @return [CombinedSubmission]
740
979
  def expire_combined_submission(combined_submission_id, opts = {})
@@ -743,9 +982,9 @@ module DocSpring
743
982
  end
744
983
 
745
984
  # Expire a combined submission
746
- # @param combined_submission_id
985
+ # @param combined_submission_id [String]
747
986
  # @param [Hash] opts the optional parameters
748
- # @return [Array<(CombinedSubmission, Fixnum, Hash)>] CombinedSubmission data, response status code and response headers
987
+ # @return [Array<(CombinedSubmission, Integer, Hash)>] CombinedSubmission data, response status code and response headers
749
988
  def expire_combined_submission_with_http_info(combined_submission_id, opts = {})
750
989
  if @api_client.config.debugging
751
990
  @api_client.config.logger.debug 'Calling API: PDFApi.expire_combined_submission ...'
@@ -755,29 +994,39 @@ module DocSpring
755
994
  fail ArgumentError, "Missing the required parameter 'combined_submission_id' when calling PDFApi.expire_combined_submission"
756
995
  end
757
996
  # resource path
758
- local_var_path = '/combined_submissions/{combined_submission_id}'.sub('{' + 'combined_submission_id' + '}', combined_submission_id.to_s)
997
+ local_var_path = '/combined_submissions/{combined_submission_id}'.sub('{' + 'combined_submission_id' + '}', CGI.escape(combined_submission_id.to_s))
759
998
 
760
999
  # query parameters
761
- query_params = {}
1000
+ query_params = opts[:query_params] || {}
762
1001
 
763
1002
  # header parameters
764
- header_params = {}
1003
+ header_params = opts[:header_params] || {}
765
1004
  # HTTP header 'Accept' (if needed)
766
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1005
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
767
1006
 
768
1007
  # form parameters
769
- form_params = {}
1008
+ form_params = opts[:form_params] || {}
770
1009
 
771
1010
  # http body (model)
772
- post_body = nil
773
- auth_names = ['api_token_basic']
774
- data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
1011
+ post_body = opts[:debug_body]
1012
+
1013
+ # return_type
1014
+ return_type = opts[:debug_return_type] || 'CombinedSubmission'
1015
+
1016
+ # auth_names
1017
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1018
+
1019
+ new_options = opts.merge(
1020
+ :operation => :"PDFApi.expire_combined_submission",
775
1021
  :header_params => header_params,
776
1022
  :query_params => query_params,
777
1023
  :form_params => form_params,
778
1024
  :body => post_body,
779
1025
  :auth_names => auth_names,
780
- :return_type => 'CombinedSubmission')
1026
+ :return_type => return_type
1027
+ )
1028
+
1029
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
781
1030
  if @api_client.config.debugging
782
1031
  @api_client.config.logger.debug "API called: PDFApi#expire_combined_submission\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
783
1032
  end
@@ -785,18 +1034,18 @@ module DocSpring
785
1034
  end
786
1035
 
787
1036
  # Expire a PDF submission
788
- # @param submission_id
1037
+ # @param submission_id [String]
789
1038
  # @param [Hash] opts the optional parameters
790
- # @return [Submission]
1039
+ # @return [SubmissionPreview]
791
1040
  def expire_submission(submission_id, opts = {})
792
1041
  data, _status_code, _headers = expire_submission_with_http_info(submission_id, opts)
793
1042
  data
794
1043
  end
795
1044
 
796
1045
  # Expire a PDF submission
797
- # @param submission_id
1046
+ # @param submission_id [String]
798
1047
  # @param [Hash] opts the optional parameters
799
- # @return [Array<(Submission, Fixnum, Hash)>] Submission data, response status code and response headers
1048
+ # @return [Array<(SubmissionPreview, Integer, Hash)>] SubmissionPreview data, response status code and response headers
800
1049
  def expire_submission_with_http_info(submission_id, opts = {})
801
1050
  if @api_client.config.debugging
802
1051
  @api_client.config.logger.debug 'Calling API: PDFApi.expire_submission ...'
@@ -806,29 +1055,39 @@ module DocSpring
806
1055
  fail ArgumentError, "Missing the required parameter 'submission_id' when calling PDFApi.expire_submission"
807
1056
  end
808
1057
  # resource path
809
- local_var_path = '/submissions/{submission_id}'.sub('{' + 'submission_id' + '}', submission_id.to_s)
1058
+ local_var_path = '/submissions/{submission_id}'.sub('{' + 'submission_id' + '}', CGI.escape(submission_id.to_s))
810
1059
 
811
1060
  # query parameters
812
- query_params = {}
1061
+ query_params = opts[:query_params] || {}
813
1062
 
814
1063
  # header parameters
815
- header_params = {}
1064
+ header_params = opts[:header_params] || {}
816
1065
  # HTTP header 'Accept' (if needed)
817
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1066
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
818
1067
 
819
1068
  # form parameters
820
- form_params = {}
1069
+ form_params = opts[:form_params] || {}
821
1070
 
822
1071
  # http body (model)
823
- post_body = nil
824
- auth_names = ['api_token_basic']
825
- data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
1072
+ post_body = opts[:debug_body]
1073
+
1074
+ # return_type
1075
+ return_type = opts[:debug_return_type] || 'SubmissionPreview'
1076
+
1077
+ # auth_names
1078
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1079
+
1080
+ new_options = opts.merge(
1081
+ :operation => :"PDFApi.expire_submission",
826
1082
  :header_params => header_params,
827
1083
  :query_params => query_params,
828
1084
  :form_params => form_params,
829
1085
  :body => post_body,
830
1086
  :auth_names => auth_names,
831
- :return_type => 'Submission')
1087
+ :return_type => return_type
1088
+ )
1089
+
1090
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
832
1091
  if @api_client.config.debugging
833
1092
  @api_client.config.logger.debug "API called: PDFApi#expire_submission\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
834
1093
  end
@@ -836,21 +1095,23 @@ module DocSpring
836
1095
  end
837
1096
 
838
1097
  # Generates a new PDF
839
- # @param template_id
840
- # @param submission_data
1098
+ # @param template_id [String]
1099
+ # @param submission [CreatePdfSubmissionData]
841
1100
  # @param [Hash] opts the optional parameters
1101
+ # @option opts [Boolean] :wait Wait for submission to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
842
1102
  # @return [CreateSubmissionResponse]
843
- def generate_pdf(template_id, submission_data, opts = {})
844
- data, _status_code, _headers = generate_pdf_with_http_info(template_id, submission_data, opts)
1103
+ def generate_pdf(template_id, submission, opts = {})
1104
+ data, _status_code, _headers = generate_pdf_with_http_info(template_id, submission, opts)
845
1105
  data
846
1106
  end
847
1107
 
848
1108
  # Generates a new PDF
849
- # @param template_id
850
- # @param submission_data
1109
+ # @param template_id [String]
1110
+ # @param submission [CreatePdfSubmissionData]
851
1111
  # @param [Hash] opts the optional parameters
852
- # @return [Array<(CreateSubmissionResponse, Fixnum, Hash)>] CreateSubmissionResponse data, response status code and response headers
853
- def generate_pdf_with_http_info(template_id, submission_data, opts = {})
1112
+ # @option opts [Boolean] :wait Wait for submission to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
1113
+ # @return [Array<(CreateSubmissionResponse, Integer, Hash)>] CreateSubmissionResponse data, response status code and response headers
1114
+ def generate_pdf_with_http_info(template_id, submission, opts = {})
854
1115
  if @api_client.config.debugging
855
1116
  @api_client.config.logger.debug 'Calling API: PDFApi.generate_pdf ...'
856
1117
  end
@@ -858,44 +1119,194 @@ module DocSpring
858
1119
  if @api_client.config.client_side_validation && template_id.nil?
859
1120
  fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.generate_pdf"
860
1121
  end
861
- # verify the required parameter 'submission_data' is set
862
- if @api_client.config.client_side_validation && submission_data.nil?
863
- fail ArgumentError, "Missing the required parameter 'submission_data' when calling PDFApi.generate_pdf"
1122
+ # verify the required parameter 'submission' is set
1123
+ if @api_client.config.client_side_validation && submission.nil?
1124
+ fail ArgumentError, "Missing the required parameter 'submission' when calling PDFApi.generate_pdf"
864
1125
  end
865
1126
  # resource path
866
- local_var_path = '/templates/{template_id}/submissions'.sub('{' + 'template_id' + '}', template_id.to_s)
1127
+ local_var_path = '/templates/{template_id}/submissions'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
867
1128
 
868
1129
  # query parameters
869
- query_params = {}
1130
+ query_params = opts[:query_params] || {}
1131
+ query_params[:'wait'] = opts[:'wait'] if !opts[:'wait'].nil?
870
1132
 
871
1133
  # header parameters
872
- header_params = {}
1134
+ header_params = opts[:header_params] || {}
873
1135
  # HTTP header 'Accept' (if needed)
874
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1136
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
875
1137
  # HTTP header 'Content-Type'
876
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
1138
+ content_type = @api_client.select_header_content_type(['application/json'])
1139
+ if !content_type.nil?
1140
+ header_params['Content-Type'] = content_type
1141
+ end
877
1142
 
878
1143
  # form parameters
879
- form_params = {}
1144
+ form_params = opts[:form_params] || {}
880
1145
 
881
1146
  # http body (model)
882
- post_body = @api_client.object_to_http_body(submission_data)
883
- auth_names = ['api_token_basic']
884
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1147
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(submission)
1148
+
1149
+ # return_type
1150
+ return_type = opts[:debug_return_type] || 'CreateSubmissionResponse'
1151
+
1152
+ # auth_names
1153
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1154
+
1155
+ new_options = opts.merge(
1156
+ :operation => :"PDFApi.generate_pdf",
885
1157
  :header_params => header_params,
886
1158
  :query_params => query_params,
887
1159
  :form_params => form_params,
888
1160
  :body => post_body,
889
1161
  :auth_names => auth_names,
890
- :return_type => 'CreateSubmissionResponse')
1162
+ :return_type => return_type
1163
+ )
1164
+
1165
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
891
1166
  if @api_client.config.debugging
892
1167
  @api_client.config.logger.debug "API called: PDFApi#generate_pdf\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
893
1168
  end
894
1169
  return data, status_code, headers
895
1170
  end
896
1171
 
1172
+ # Generates a new PDF for an HTML template
1173
+ # @param template_id [String]
1174
+ # @param submission [CreateHtmlSubmissionData]
1175
+ # @param [Hash] opts the optional parameters
1176
+ # @option opts [Boolean] :wait Wait for submission to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
1177
+ # @return [CreateSubmissionResponse]
1178
+ def generate_pdf_for_html_template(template_id, submission, opts = {})
1179
+ data, _status_code, _headers = generate_pdf_for_html_template_with_http_info(template_id, submission, opts)
1180
+ data
1181
+ end
1182
+
1183
+ # Generates a new PDF for an HTML template
1184
+ # @param template_id [String]
1185
+ # @param submission [CreateHtmlSubmissionData]
1186
+ # @param [Hash] opts the optional parameters
1187
+ # @option opts [Boolean] :wait Wait for submission to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain) (default to true)
1188
+ # @return [Array<(CreateSubmissionResponse, Integer, Hash)>] CreateSubmissionResponse data, response status code and response headers
1189
+ def generate_pdf_for_html_template_with_http_info(template_id, submission, opts = {})
1190
+ if @api_client.config.debugging
1191
+ @api_client.config.logger.debug 'Calling API: PDFApi.generate_pdf_for_html_template ...'
1192
+ end
1193
+ # verify the required parameter 'template_id' is set
1194
+ if @api_client.config.client_side_validation && template_id.nil?
1195
+ fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.generate_pdf_for_html_template"
1196
+ end
1197
+ # verify the required parameter 'submission' is set
1198
+ if @api_client.config.client_side_validation && submission.nil?
1199
+ fail ArgumentError, "Missing the required parameter 'submission' when calling PDFApi.generate_pdf_for_html_template"
1200
+ end
1201
+ # resource path
1202
+ local_var_path = '/templates/{template_id}/submissions?endpoint_description=html_templates'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
1203
+
1204
+ # query parameters
1205
+ query_params = opts[:query_params] || {}
1206
+ query_params[:'wait'] = opts[:'wait'] if !opts[:'wait'].nil?
1207
+
1208
+ # header parameters
1209
+ header_params = opts[:header_params] || {}
1210
+ # HTTP header 'Accept' (if needed)
1211
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1212
+ # HTTP header 'Content-Type'
1213
+ content_type = @api_client.select_header_content_type(['application/json'])
1214
+ if !content_type.nil?
1215
+ header_params['Content-Type'] = content_type
1216
+ end
1217
+
1218
+ # form parameters
1219
+ form_params = opts[:form_params] || {}
1220
+
1221
+ # http body (model)
1222
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(submission)
1223
+
1224
+ # return_type
1225
+ return_type = opts[:debug_return_type] || 'CreateSubmissionResponse'
1226
+
1227
+ # auth_names
1228
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1229
+
1230
+ new_options = opts.merge(
1231
+ :operation => :"PDFApi.generate_pdf_for_html_template",
1232
+ :header_params => header_params,
1233
+ :query_params => query_params,
1234
+ :form_params => form_params,
1235
+ :body => post_body,
1236
+ :auth_names => auth_names,
1237
+ :return_type => return_type
1238
+ )
1239
+
1240
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
1241
+ if @api_client.config.debugging
1242
+ @api_client.config.logger.debug "API called: PDFApi#generate_pdf_for_html_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1243
+ end
1244
+ return data, status_code, headers
1245
+ end
1246
+
1247
+ # Generated a preview PDF for partially completed data requests
1248
+ # @param submission_id [String]
1249
+ # @param [Hash] opts the optional parameters
1250
+ # @return [SuccessErrorResponse]
1251
+ def generate_preview(submission_id, opts = {})
1252
+ data, _status_code, _headers = generate_preview_with_http_info(submission_id, opts)
1253
+ data
1254
+ end
1255
+
1256
+ # Generated a preview PDF for partially completed data requests
1257
+ # @param submission_id [String]
1258
+ # @param [Hash] opts the optional parameters
1259
+ # @return [Array<(SuccessErrorResponse, Integer, Hash)>] SuccessErrorResponse data, response status code and response headers
1260
+ def generate_preview_with_http_info(submission_id, opts = {})
1261
+ if @api_client.config.debugging
1262
+ @api_client.config.logger.debug 'Calling API: PDFApi.generate_preview ...'
1263
+ end
1264
+ # verify the required parameter 'submission_id' is set
1265
+ if @api_client.config.client_side_validation && submission_id.nil?
1266
+ fail ArgumentError, "Missing the required parameter 'submission_id' when calling PDFApi.generate_preview"
1267
+ end
1268
+ # resource path
1269
+ local_var_path = '/submissions/{submission_id}/generate_preview'.sub('{' + 'submission_id' + '}', CGI.escape(submission_id.to_s))
1270
+
1271
+ # query parameters
1272
+ query_params = opts[:query_params] || {}
1273
+
1274
+ # header parameters
1275
+ header_params = opts[:header_params] || {}
1276
+ # HTTP header 'Accept' (if needed)
1277
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1278
+
1279
+ # form parameters
1280
+ form_params = opts[:form_params] || {}
1281
+
1282
+ # http body (model)
1283
+ post_body = opts[:debug_body]
1284
+
1285
+ # return_type
1286
+ return_type = opts[:debug_return_type] || 'SuccessErrorResponse'
1287
+
1288
+ # auth_names
1289
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1290
+
1291
+ new_options = opts.merge(
1292
+ :operation => :"PDFApi.generate_preview",
1293
+ :header_params => header_params,
1294
+ :query_params => query_params,
1295
+ :form_params => form_params,
1296
+ :body => post_body,
1297
+ :auth_names => auth_names,
1298
+ :return_type => return_type
1299
+ )
1300
+
1301
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
1302
+ if @api_client.config.debugging
1303
+ @api_client.config.logger.debug "API called: PDFApi#generate_preview\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1304
+ end
1305
+ return data, status_code, headers
1306
+ end
1307
+
897
1308
  # Check the status of a combined submission (merged PDFs)
898
- # @param combined_submission_id
1309
+ # @param combined_submission_id [String]
899
1310
  # @param [Hash] opts the optional parameters
900
1311
  # @return [CombinedSubmission]
901
1312
  def get_combined_submission(combined_submission_id, opts = {})
@@ -904,9 +1315,9 @@ module DocSpring
904
1315
  end
905
1316
 
906
1317
  # Check the status of a combined submission (merged PDFs)
907
- # @param combined_submission_id
1318
+ # @param combined_submission_id [String]
908
1319
  # @param [Hash] opts the optional parameters
909
- # @return [Array<(CombinedSubmission, Fixnum, Hash)>] CombinedSubmission data, response status code and response headers
1320
+ # @return [Array<(CombinedSubmission, Integer, Hash)>] CombinedSubmission data, response status code and response headers
910
1321
  def get_combined_submission_with_http_info(combined_submission_id, opts = {})
911
1322
  if @api_client.config.debugging
912
1323
  @api_client.config.logger.debug 'Calling API: PDFApi.get_combined_submission ...'
@@ -916,29 +1327,39 @@ module DocSpring
916
1327
  fail ArgumentError, "Missing the required parameter 'combined_submission_id' when calling PDFApi.get_combined_submission"
917
1328
  end
918
1329
  # resource path
919
- local_var_path = '/combined_submissions/{combined_submission_id}'.sub('{' + 'combined_submission_id' + '}', combined_submission_id.to_s)
1330
+ local_var_path = '/combined_submissions/{combined_submission_id}'.sub('{' + 'combined_submission_id' + '}', CGI.escape(combined_submission_id.to_s))
920
1331
 
921
1332
  # query parameters
922
- query_params = {}
1333
+ query_params = opts[:query_params] || {}
923
1334
 
924
1335
  # header parameters
925
- header_params = {}
1336
+ header_params = opts[:header_params] || {}
926
1337
  # HTTP header 'Accept' (if needed)
927
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1338
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
928
1339
 
929
1340
  # form parameters
930
- form_params = {}
1341
+ form_params = opts[:form_params] || {}
931
1342
 
932
1343
  # http body (model)
933
- post_body = nil
934
- auth_names = ['api_token_basic']
935
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1344
+ post_body = opts[:debug_body]
1345
+
1346
+ # return_type
1347
+ return_type = opts[:debug_return_type] || 'CombinedSubmission'
1348
+
1349
+ # auth_names
1350
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1351
+
1352
+ new_options = opts.merge(
1353
+ :operation => :"PDFApi.get_combined_submission",
936
1354
  :header_params => header_params,
937
1355
  :query_params => query_params,
938
1356
  :form_params => form_params,
939
1357
  :body => post_body,
940
1358
  :auth_names => auth_names,
941
- :return_type => 'CombinedSubmission')
1359
+ :return_type => return_type
1360
+ )
1361
+
1362
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
942
1363
  if @api_client.config.debugging
943
1364
  @api_client.config.logger.debug "API called: PDFApi#get_combined_submission\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
944
1365
  end
@@ -946,18 +1367,18 @@ module DocSpring
946
1367
  end
947
1368
 
948
1369
  # Look up a submission data request
949
- # @param data_request_id
1370
+ # @param data_request_id [String]
950
1371
  # @param [Hash] opts the optional parameters
951
- # @return [SubmissionDataRequest]
1372
+ # @return [SubmissionDataRequestShow]
952
1373
  def get_data_request(data_request_id, opts = {})
953
1374
  data, _status_code, _headers = get_data_request_with_http_info(data_request_id, opts)
954
1375
  data
955
1376
  end
956
1377
 
957
1378
  # Look up a submission data request
958
- # @param data_request_id
1379
+ # @param data_request_id [String]
959
1380
  # @param [Hash] opts the optional parameters
960
- # @return [Array<(SubmissionDataRequest, Fixnum, Hash)>] SubmissionDataRequest data, response status code and response headers
1381
+ # @return [Array<(SubmissionDataRequestShow, Integer, Hash)>] SubmissionDataRequestShow data, response status code and response headers
961
1382
  def get_data_request_with_http_info(data_request_id, opts = {})
962
1383
  if @api_client.config.debugging
963
1384
  @api_client.config.logger.debug 'Calling API: PDFApi.get_data_request ...'
@@ -967,29 +1388,39 @@ module DocSpring
967
1388
  fail ArgumentError, "Missing the required parameter 'data_request_id' when calling PDFApi.get_data_request"
968
1389
  end
969
1390
  # resource path
970
- local_var_path = '/data_requests/{data_request_id}'.sub('{' + 'data_request_id' + '}', data_request_id.to_s)
1391
+ local_var_path = '/data_requests/{data_request_id}'.sub('{' + 'data_request_id' + '}', CGI.escape(data_request_id.to_s))
971
1392
 
972
1393
  # query parameters
973
- query_params = {}
1394
+ query_params = opts[:query_params] || {}
974
1395
 
975
1396
  # header parameters
976
- header_params = {}
1397
+ header_params = opts[:header_params] || {}
977
1398
  # HTTP header 'Accept' (if needed)
978
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1399
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
979
1400
 
980
1401
  # form parameters
981
- form_params = {}
1402
+ form_params = opts[:form_params] || {}
982
1403
 
983
1404
  # http body (model)
984
- post_body = nil
985
- auth_names = ['api_token_basic']
986
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1405
+ post_body = opts[:debug_body]
1406
+
1407
+ # return_type
1408
+ return_type = opts[:debug_return_type] || 'SubmissionDataRequestShow'
1409
+
1410
+ # auth_names
1411
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1412
+
1413
+ new_options = opts.merge(
1414
+ :operation => :"PDFApi.get_data_request",
987
1415
  :header_params => header_params,
988
1416
  :query_params => query_params,
989
1417
  :form_params => form_params,
990
1418
  :body => post_body,
991
1419
  :auth_names => auth_names,
992
- :return_type => 'SubmissionDataRequest')
1420
+ :return_type => return_type
1421
+ )
1422
+
1423
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
993
1424
  if @api_client.config.debugging
994
1425
  @api_client.config.logger.debug "API called: PDFApi#get_data_request\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
995
1426
  end
@@ -997,18 +1428,18 @@ module DocSpring
997
1428
  end
998
1429
 
999
1430
  # Fetch the full template attributes
1000
- # @param template_id
1431
+ # @param template_id [String]
1001
1432
  # @param [Hash] opts the optional parameters
1002
- # @return [Template1]
1433
+ # @return [Template]
1003
1434
  def get_full_template(template_id, opts = {})
1004
1435
  data, _status_code, _headers = get_full_template_with_http_info(template_id, opts)
1005
1436
  data
1006
1437
  end
1007
1438
 
1008
1439
  # Fetch the full template attributes
1009
- # @param template_id
1440
+ # @param template_id [String]
1010
1441
  # @param [Hash] opts the optional parameters
1011
- # @return [Array<(Template1, Fixnum, Hash)>] Template1 data, response status code and response headers
1442
+ # @return [Array<(Template, Integer, Hash)>] Template data, response status code and response headers
1012
1443
  def get_full_template_with_http_info(template_id, opts = {})
1013
1444
  if @api_client.config.debugging
1014
1445
  @api_client.config.logger.debug 'Calling API: PDFApi.get_full_template ...'
@@ -1018,29 +1449,39 @@ module DocSpring
1018
1449
  fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.get_full_template"
1019
1450
  end
1020
1451
  # resource path
1021
- local_var_path = '/templates/{template_id}?full=true'.sub('{' + 'template_id' + '}', template_id.to_s)
1452
+ local_var_path = '/templates/{template_id}?full=true'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
1022
1453
 
1023
1454
  # query parameters
1024
- query_params = {}
1455
+ query_params = opts[:query_params] || {}
1025
1456
 
1026
1457
  # header parameters
1027
- header_params = {}
1458
+ header_params = opts[:header_params] || {}
1028
1459
  # HTTP header 'Accept' (if needed)
1029
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1460
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1030
1461
 
1031
1462
  # form parameters
1032
- form_params = {}
1463
+ form_params = opts[:form_params] || {}
1033
1464
 
1034
1465
  # http body (model)
1035
- post_body = nil
1036
- auth_names = ['api_token_basic']
1037
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1466
+ post_body = opts[:debug_body]
1467
+
1468
+ # return_type
1469
+ return_type = opts[:debug_return_type] || 'Template'
1470
+
1471
+ # auth_names
1472
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1473
+
1474
+ new_options = opts.merge(
1475
+ :operation => :"PDFApi.get_full_template",
1038
1476
  :header_params => header_params,
1039
1477
  :query_params => query_params,
1040
1478
  :form_params => form_params,
1041
1479
  :body => post_body,
1042
1480
  :auth_names => auth_names,
1043
- :return_type => 'Template1')
1481
+ :return_type => return_type
1482
+ )
1483
+
1484
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1044
1485
  if @api_client.config.debugging
1045
1486
  @api_client.config.logger.debug "API called: PDFApi#get_full_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1046
1487
  end
@@ -1049,7 +1490,7 @@ module DocSpring
1049
1490
 
1050
1491
  # Get a presigned URL so that you can upload a file to our AWS S3 bucket
1051
1492
  # @param [Hash] opts the optional parameters
1052
- # @return [Hash<String, Object>]
1493
+ # @return [UploadPresignResponse]
1053
1494
  def get_presign_url(opts = {})
1054
1495
  data, _status_code, _headers = get_presign_url_with_http_info(opts)
1055
1496
  data
@@ -1057,7 +1498,7 @@ module DocSpring
1057
1498
 
1058
1499
  # Get a presigned URL so that you can upload a file to our AWS S3 bucket
1059
1500
  # @param [Hash] opts the optional parameters
1060
- # @return [Array<(Hash<String, Object>, Fixnum, Hash)>] Hash<String, Object> data, response status code and response headers
1501
+ # @return [Array<(UploadPresignResponse, Integer, Hash)>] UploadPresignResponse data, response status code and response headers
1061
1502
  def get_presign_url_with_http_info(opts = {})
1062
1503
  if @api_client.config.debugging
1063
1504
  @api_client.config.logger.debug 'Calling API: PDFApi.get_presign_url ...'
@@ -1066,26 +1507,36 @@ module DocSpring
1066
1507
  local_var_path = '/uploads/presign'
1067
1508
 
1068
1509
  # query parameters
1069
- query_params = {}
1510
+ query_params = opts[:query_params] || {}
1070
1511
 
1071
1512
  # header parameters
1072
- header_params = {}
1513
+ header_params = opts[:header_params] || {}
1073
1514
  # HTTP header 'Accept' (if needed)
1074
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1515
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1075
1516
 
1076
1517
  # form parameters
1077
- form_params = {}
1518
+ form_params = opts[:form_params] || {}
1078
1519
 
1079
1520
  # http body (model)
1080
- post_body = nil
1081
- auth_names = ['api_token_basic']
1082
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1521
+ post_body = opts[:debug_body]
1522
+
1523
+ # return_type
1524
+ return_type = opts[:debug_return_type] || 'UploadPresignResponse'
1525
+
1526
+ # auth_names
1527
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1528
+
1529
+ new_options = opts.merge(
1530
+ :operation => :"PDFApi.get_presign_url",
1083
1531
  :header_params => header_params,
1084
1532
  :query_params => query_params,
1085
1533
  :form_params => form_params,
1086
1534
  :body => post_body,
1087
1535
  :auth_names => auth_names,
1088
- :return_type => 'Hash<String, Object>')
1536
+ :return_type => return_type
1537
+ )
1538
+
1539
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1089
1540
  if @api_client.config.debugging
1090
1541
  @api_client.config.logger.debug "API called: PDFApi#get_presign_url\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1091
1542
  end
@@ -1093,9 +1544,9 @@ module DocSpring
1093
1544
  end
1094
1545
 
1095
1546
  # Check the status of a PDF
1096
- # @param submission_id
1547
+ # @param submission_id [String]
1097
1548
  # @param [Hash] opts the optional parameters
1098
- # @option opts [BOOLEAN] :include_data
1549
+ # @option opts [Boolean] :include_data
1099
1550
  # @return [Submission]
1100
1551
  def get_submission(submission_id, opts = {})
1101
1552
  data, _status_code, _headers = get_submission_with_http_info(submission_id, opts)
@@ -1103,10 +1554,10 @@ module DocSpring
1103
1554
  end
1104
1555
 
1105
1556
  # Check the status of a PDF
1106
- # @param submission_id
1557
+ # @param submission_id [String]
1107
1558
  # @param [Hash] opts the optional parameters
1108
- # @option opts [BOOLEAN] :include_data
1109
- # @return [Array<(Submission, Fixnum, Hash)>] Submission data, response status code and response headers
1559
+ # @option opts [Boolean] :include_data
1560
+ # @return [Array<(Submission, Integer, Hash)>] Submission data, response status code and response headers
1110
1561
  def get_submission_with_http_info(submission_id, opts = {})
1111
1562
  if @api_client.config.debugging
1112
1563
  @api_client.config.logger.debug 'Calling API: PDFApi.get_submission ...'
@@ -1116,30 +1567,40 @@ module DocSpring
1116
1567
  fail ArgumentError, "Missing the required parameter 'submission_id' when calling PDFApi.get_submission"
1117
1568
  end
1118
1569
  # resource path
1119
- local_var_path = '/submissions/{submission_id}'.sub('{' + 'submission_id' + '}', submission_id.to_s)
1570
+ local_var_path = '/submissions/{submission_id}'.sub('{' + 'submission_id' + '}', CGI.escape(submission_id.to_s))
1120
1571
 
1121
1572
  # query parameters
1122
- query_params = {}
1573
+ query_params = opts[:query_params] || {}
1123
1574
  query_params[:'include_data'] = opts[:'include_data'] if !opts[:'include_data'].nil?
1124
1575
 
1125
1576
  # header parameters
1126
- header_params = {}
1577
+ header_params = opts[:header_params] || {}
1127
1578
  # HTTP header 'Accept' (if needed)
1128
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1579
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1129
1580
 
1130
1581
  # form parameters
1131
- form_params = {}
1582
+ form_params = opts[:form_params] || {}
1132
1583
 
1133
1584
  # http body (model)
1134
- post_body = nil
1135
- auth_names = ['api_token_basic']
1136
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1585
+ post_body = opts[:debug_body]
1586
+
1587
+ # return_type
1588
+ return_type = opts[:debug_return_type] || 'Submission'
1589
+
1590
+ # auth_names
1591
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1592
+
1593
+ new_options = opts.merge(
1594
+ :operation => :"PDFApi.get_submission",
1137
1595
  :header_params => header_params,
1138
1596
  :query_params => query_params,
1139
1597
  :form_params => form_params,
1140
1598
  :body => post_body,
1141
1599
  :auth_names => auth_names,
1142
- :return_type => 'Submission')
1600
+ :return_type => return_type
1601
+ )
1602
+
1603
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1143
1604
  if @api_client.config.debugging
1144
1605
  @api_client.config.logger.debug "API called: PDFApi#get_submission\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1145
1606
  end
@@ -1147,20 +1608,20 @@ module DocSpring
1147
1608
  end
1148
1609
 
1149
1610
  # Check the status of a submission batch job
1150
- # @param submission_batch_id
1611
+ # @param submission_batch_id [String]
1151
1612
  # @param [Hash] opts the optional parameters
1152
- # @option opts [BOOLEAN] :include_submissions
1153
- # @return [SubmissionBatch]
1613
+ # @option opts [Boolean] :include_submissions
1614
+ # @return [SubmissionBatchWithSubmissions]
1154
1615
  def get_submission_batch(submission_batch_id, opts = {})
1155
1616
  data, _status_code, _headers = get_submission_batch_with_http_info(submission_batch_id, opts)
1156
1617
  data
1157
1618
  end
1158
1619
 
1159
1620
  # Check the status of a submission batch job
1160
- # @param submission_batch_id
1621
+ # @param submission_batch_id [String]
1161
1622
  # @param [Hash] opts the optional parameters
1162
- # @option opts [BOOLEAN] :include_submissions
1163
- # @return [Array<(SubmissionBatch, Fixnum, Hash)>] SubmissionBatch data, response status code and response headers
1623
+ # @option opts [Boolean] :include_submissions
1624
+ # @return [Array<(SubmissionBatchWithSubmissions, Integer, Hash)>] SubmissionBatchWithSubmissions data, response status code and response headers
1164
1625
  def get_submission_batch_with_http_info(submission_batch_id, opts = {})
1165
1626
  if @api_client.config.debugging
1166
1627
  @api_client.config.logger.debug 'Calling API: PDFApi.get_submission_batch ...'
@@ -1170,30 +1631,40 @@ module DocSpring
1170
1631
  fail ArgumentError, "Missing the required parameter 'submission_batch_id' when calling PDFApi.get_submission_batch"
1171
1632
  end
1172
1633
  # resource path
1173
- local_var_path = '/submissions/batches/{submission_batch_id}'.sub('{' + 'submission_batch_id' + '}', submission_batch_id.to_s)
1634
+ local_var_path = '/submissions/batches/{submission_batch_id}'.sub('{' + 'submission_batch_id' + '}', CGI.escape(submission_batch_id.to_s))
1174
1635
 
1175
1636
  # query parameters
1176
- query_params = {}
1637
+ query_params = opts[:query_params] || {}
1177
1638
  query_params[:'include_submissions'] = opts[:'include_submissions'] if !opts[:'include_submissions'].nil?
1178
1639
 
1179
1640
  # header parameters
1180
- header_params = {}
1641
+ header_params = opts[:header_params] || {}
1181
1642
  # HTTP header 'Accept' (if needed)
1182
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1643
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1183
1644
 
1184
1645
  # form parameters
1185
- form_params = {}
1646
+ form_params = opts[:form_params] || {}
1186
1647
 
1187
1648
  # http body (model)
1188
- post_body = nil
1189
- auth_names = ['api_token_basic']
1190
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1649
+ post_body = opts[:debug_body]
1650
+
1651
+ # return_type
1652
+ return_type = opts[:debug_return_type] || 'SubmissionBatchWithSubmissions'
1653
+
1654
+ # auth_names
1655
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1656
+
1657
+ new_options = opts.merge(
1658
+ :operation => :"PDFApi.get_submission_batch",
1191
1659
  :header_params => header_params,
1192
1660
  :query_params => query_params,
1193
1661
  :form_params => form_params,
1194
1662
  :body => post_body,
1195
1663
  :auth_names => auth_names,
1196
- :return_type => 'SubmissionBatch')
1664
+ :return_type => return_type
1665
+ )
1666
+
1667
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1197
1668
  if @api_client.config.debugging
1198
1669
  @api_client.config.logger.debug "API called: PDFApi#get_submission_batch\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1199
1670
  end
@@ -1201,18 +1672,18 @@ module DocSpring
1201
1672
  end
1202
1673
 
1203
1674
  # Check the status of an uploaded template
1204
- # @param template_id
1675
+ # @param template_id [String]
1205
1676
  # @param [Hash] opts the optional parameters
1206
- # @return [Template]
1677
+ # @return [TemplatePreview]
1207
1678
  def get_template(template_id, opts = {})
1208
1679
  data, _status_code, _headers = get_template_with_http_info(template_id, opts)
1209
1680
  data
1210
1681
  end
1211
1682
 
1212
1683
  # Check the status of an uploaded template
1213
- # @param template_id
1684
+ # @param template_id [String]
1214
1685
  # @param [Hash] opts the optional parameters
1215
- # @return [Array<(Template, Fixnum, Hash)>] Template data, response status code and response headers
1686
+ # @return [Array<(TemplatePreview, Integer, Hash)>] TemplatePreview data, response status code and response headers
1216
1687
  def get_template_with_http_info(template_id, opts = {})
1217
1688
  if @api_client.config.debugging
1218
1689
  @api_client.config.logger.debug 'Calling API: PDFApi.get_template ...'
@@ -1222,29 +1693,39 @@ module DocSpring
1222
1693
  fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.get_template"
1223
1694
  end
1224
1695
  # resource path
1225
- local_var_path = '/templates/{template_id}'.sub('{' + 'template_id' + '}', template_id.to_s)
1696
+ local_var_path = '/templates/{template_id}'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
1226
1697
 
1227
1698
  # query parameters
1228
- query_params = {}
1699
+ query_params = opts[:query_params] || {}
1229
1700
 
1230
1701
  # header parameters
1231
- header_params = {}
1702
+ header_params = opts[:header_params] || {}
1232
1703
  # HTTP header 'Accept' (if needed)
1233
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1704
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1234
1705
 
1235
1706
  # form parameters
1236
- form_params = {}
1707
+ form_params = opts[:form_params] || {}
1237
1708
 
1238
1709
  # http body (model)
1239
- post_body = nil
1240
- auth_names = ['api_token_basic']
1241
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1710
+ post_body = opts[:debug_body]
1711
+
1712
+ # return_type
1713
+ return_type = opts[:debug_return_type] || 'TemplatePreview'
1714
+
1715
+ # auth_names
1716
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1717
+
1718
+ new_options = opts.merge(
1719
+ :operation => :"PDFApi.get_template",
1242
1720
  :header_params => header_params,
1243
1721
  :query_params => query_params,
1244
1722
  :form_params => form_params,
1245
1723
  :body => post_body,
1246
1724
  :auth_names => auth_names,
1247
- :return_type => 'Template')
1725
+ :return_type => return_type
1726
+ )
1727
+
1728
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1248
1729
  if @api_client.config.debugging
1249
1730
  @api_client.config.logger.debug "API called: PDFApi#get_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1250
1731
  end
@@ -1252,18 +1733,18 @@ module DocSpring
1252
1733
  end
1253
1734
 
1254
1735
  # Fetch the JSON schema for a template
1255
- # @param template_id
1736
+ # @param template_id [String]
1256
1737
  # @param [Hash] opts the optional parameters
1257
- # @return [Hash<String, Object>]
1738
+ # @return [JsonSchema]
1258
1739
  def get_template_schema(template_id, opts = {})
1259
1740
  data, _status_code, _headers = get_template_schema_with_http_info(template_id, opts)
1260
1741
  data
1261
1742
  end
1262
1743
 
1263
1744
  # Fetch the JSON schema for a template
1264
- # @param template_id
1745
+ # @param template_id [String]
1265
1746
  # @param [Hash] opts the optional parameters
1266
- # @return [Array<(Hash<String, Object>, Fixnum, Hash)>] Hash<String, Object> data, response status code and response headers
1747
+ # @return [Array<(JsonSchema, Integer, Hash)>] JsonSchema data, response status code and response headers
1267
1748
  def get_template_schema_with_http_info(template_id, opts = {})
1268
1749
  if @api_client.config.debugging
1269
1750
  @api_client.config.logger.debug 'Calling API: PDFApi.get_template_schema ...'
@@ -1273,35 +1754,118 @@ module DocSpring
1273
1754
  fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.get_template_schema"
1274
1755
  end
1275
1756
  # resource path
1276
- local_var_path = '/templates/{template_id}/schema'.sub('{' + 'template_id' + '}', template_id.to_s)
1757
+ local_var_path = '/templates/{template_id}/schema'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
1277
1758
 
1278
1759
  # query parameters
1279
- query_params = {}
1760
+ query_params = opts[:query_params] || {}
1280
1761
 
1281
1762
  # header parameters
1282
- header_params = {}
1763
+ header_params = opts[:header_params] || {}
1283
1764
  # HTTP header 'Accept' (if needed)
1284
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1765
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1285
1766
 
1286
1767
  # form parameters
1287
- form_params = {}
1768
+ form_params = opts[:form_params] || {}
1288
1769
 
1289
1770
  # http body (model)
1290
- post_body = nil
1291
- auth_names = ['api_token_basic']
1292
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1771
+ post_body = opts[:debug_body]
1772
+
1773
+ # return_type
1774
+ return_type = opts[:debug_return_type] || 'JsonSchema'
1775
+
1776
+ # auth_names
1777
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1778
+
1779
+ new_options = opts.merge(
1780
+ :operation => :"PDFApi.get_template_schema",
1293
1781
  :header_params => header_params,
1294
1782
  :query_params => query_params,
1295
1783
  :form_params => form_params,
1296
1784
  :body => post_body,
1297
1785
  :auth_names => auth_names,
1298
- :return_type => 'Hash<String, Object>')
1786
+ :return_type => return_type
1787
+ )
1788
+
1789
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1299
1790
  if @api_client.config.debugging
1300
1791
  @api_client.config.logger.debug "API called: PDFApi#get_template_schema\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1301
1792
  end
1302
1793
  return data, status_code, headers
1303
1794
  end
1304
1795
 
1796
+ # Get a list of all combined submissions
1797
+ # @param [Hash] opts the optional parameters
1798
+ # @option opts [Integer] :page Default: 1
1799
+ # @option opts [Integer] :per_page Default: 50
1800
+ # @return [Array<CombinedSubmission>]
1801
+ def list_combined_submissions(opts = {})
1802
+ data, _status_code, _headers = list_combined_submissions_with_http_info(opts)
1803
+ data
1804
+ end
1805
+
1806
+ # Get a list of all combined submissions
1807
+ # @param [Hash] opts the optional parameters
1808
+ # @option opts [Integer] :page Default: 1
1809
+ # @option opts [Integer] :per_page Default: 50
1810
+ # @return [Array<(Array<CombinedSubmission>, Integer, Hash)>] Array<CombinedSubmission> data, response status code and response headers
1811
+ def list_combined_submissions_with_http_info(opts = {})
1812
+ if @api_client.config.debugging
1813
+ @api_client.config.logger.debug 'Calling API: PDFApi.list_combined_submissions ...'
1814
+ end
1815
+ if @api_client.config.client_side_validation && !opts[:'page'].nil? && opts[:'page'] < 1
1816
+ fail ArgumentError, 'invalid value for "opts[:"page"]" when calling PDFApi.list_combined_submissions, must be greater than or equal to 1.'
1817
+ end
1818
+
1819
+ if @api_client.config.client_side_validation && !opts[:'per_page'].nil? && opts[:'per_page'] > 50
1820
+ fail ArgumentError, 'invalid value for "opts[:"per_page"]" when calling PDFApi.list_combined_submissions, must be smaller than or equal to 50.'
1821
+ end
1822
+
1823
+ if @api_client.config.client_side_validation && !opts[:'per_page'].nil? && opts[:'per_page'] < 1
1824
+ fail ArgumentError, 'invalid value for "opts[:"per_page"]" when calling PDFApi.list_combined_submissions, must be greater than or equal to 1.'
1825
+ end
1826
+
1827
+ # resource path
1828
+ local_var_path = '/combined_submissions'
1829
+
1830
+ # query parameters
1831
+ query_params = opts[:query_params] || {}
1832
+ query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
1833
+ query_params[:'per_page'] = opts[:'per_page'] if !opts[:'per_page'].nil?
1834
+
1835
+ # header parameters
1836
+ header_params = opts[:header_params] || {}
1837
+ # HTTP header 'Accept' (if needed)
1838
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1839
+
1840
+ # form parameters
1841
+ form_params = opts[:form_params] || {}
1842
+
1843
+ # http body (model)
1844
+ post_body = opts[:debug_body]
1845
+
1846
+ # return_type
1847
+ return_type = opts[:debug_return_type] || 'Array<CombinedSubmission>'
1848
+
1849
+ # auth_names
1850
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1851
+
1852
+ new_options = opts.merge(
1853
+ :operation => :"PDFApi.list_combined_submissions",
1854
+ :header_params => header_params,
1855
+ :query_params => query_params,
1856
+ :form_params => form_params,
1857
+ :body => post_body,
1858
+ :auth_names => auth_names,
1859
+ :return_type => return_type
1860
+ )
1861
+
1862
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1863
+ if @api_client.config.debugging
1864
+ @api_client.config.logger.debug "API called: PDFApi#list_combined_submissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1865
+ end
1866
+ return data, status_code, headers
1867
+ end
1868
+
1305
1869
  # Get a list of all folders
1306
1870
  # @param [Hash] opts the optional parameters
1307
1871
  # @option opts [String] :parent_folder_id Filter By Folder Id
@@ -1314,7 +1878,7 @@ module DocSpring
1314
1878
  # Get a list of all folders
1315
1879
  # @param [Hash] opts the optional parameters
1316
1880
  # @option opts [String] :parent_folder_id Filter By Folder Id
1317
- # @return [Array<(Array<Folder>, Fixnum, Hash)>] Array<Folder> data, response status code and response headers
1881
+ # @return [Array<(Array<Folder>, Integer, Hash)>] Array<Folder> data, response status code and response headers
1318
1882
  def list_folders_with_http_info(opts = {})
1319
1883
  if @api_client.config.debugging
1320
1884
  @api_client.config.logger.debug 'Calling API: PDFApi.list_folders ...'
@@ -1323,27 +1887,37 @@ module DocSpring
1323
1887
  local_var_path = '/folders/'
1324
1888
 
1325
1889
  # query parameters
1326
- query_params = {}
1890
+ query_params = opts[:query_params] || {}
1327
1891
  query_params[:'parent_folder_id'] = opts[:'parent_folder_id'] if !opts[:'parent_folder_id'].nil?
1328
1892
 
1329
1893
  # header parameters
1330
- header_params = {}
1894
+ header_params = opts[:header_params] || {}
1331
1895
  # HTTP header 'Accept' (if needed)
1332
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1896
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1333
1897
 
1334
1898
  # form parameters
1335
- form_params = {}
1899
+ form_params = opts[:form_params] || {}
1336
1900
 
1337
1901
  # http body (model)
1338
- post_body = nil
1339
- auth_names = ['api_token_basic']
1340
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1902
+ post_body = opts[:debug_body]
1903
+
1904
+ # return_type
1905
+ return_type = opts[:debug_return_type] || 'Array<Folder>'
1906
+
1907
+ # auth_names
1908
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1909
+
1910
+ new_options = opts.merge(
1911
+ :operation => :"PDFApi.list_folders",
1341
1912
  :header_params => header_params,
1342
1913
  :query_params => query_params,
1343
1914
  :form_params => form_params,
1344
1915
  :body => post_body,
1345
1916
  :auth_names => auth_names,
1346
- :return_type => 'Array<Folder>')
1917
+ :return_type => return_type
1918
+ )
1919
+
1920
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1347
1921
  if @api_client.config.debugging
1348
1922
  @api_client.config.logger.debug "API called: PDFApi#list_folders\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1349
1923
  end
@@ -1357,7 +1931,7 @@ module DocSpring
1357
1931
  # @option opts [String] :created_after
1358
1932
  # @option opts [String] :created_before
1359
1933
  # @option opts [String] :type
1360
- # @option opts [BOOLEAN] :include_data
1934
+ # @option opts [Boolean] :include_data
1361
1935
  # @return [ListSubmissionsResponse]
1362
1936
  def list_submissions(opts = {})
1363
1937
  data, _status_code, _headers = list_submissions_with_http_info(opts)
@@ -1371,8 +1945,8 @@ module DocSpring
1371
1945
  # @option opts [String] :created_after
1372
1946
  # @option opts [String] :created_before
1373
1947
  # @option opts [String] :type
1374
- # @option opts [BOOLEAN] :include_data
1375
- # @return [Array<(ListSubmissionsResponse, Fixnum, Hash)>] ListSubmissionsResponse data, response status code and response headers
1948
+ # @option opts [Boolean] :include_data
1949
+ # @return [Array<(ListSubmissionsResponse, Integer, Hash)>] ListSubmissionsResponse data, response status code and response headers
1376
1950
  def list_submissions_with_http_info(opts = {})
1377
1951
  if @api_client.config.debugging
1378
1952
  @api_client.config.logger.debug 'Calling API: PDFApi.list_submissions ...'
@@ -1381,7 +1955,7 @@ module DocSpring
1381
1955
  local_var_path = '/submissions'
1382
1956
 
1383
1957
  # query parameters
1384
- query_params = {}
1958
+ query_params = opts[:query_params] || {}
1385
1959
  query_params[:'cursor'] = opts[:'cursor'] if !opts[:'cursor'].nil?
1386
1960
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
1387
1961
  query_params[:'created_after'] = opts[:'created_after'] if !opts[:'created_after'].nil?
@@ -1390,23 +1964,33 @@ module DocSpring
1390
1964
  query_params[:'include_data'] = opts[:'include_data'] if !opts[:'include_data'].nil?
1391
1965
 
1392
1966
  # header parameters
1393
- header_params = {}
1967
+ header_params = opts[:header_params] || {}
1394
1968
  # HTTP header 'Accept' (if needed)
1395
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1969
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1396
1970
 
1397
1971
  # form parameters
1398
- form_params = {}
1972
+ form_params = opts[:form_params] || {}
1399
1973
 
1400
1974
  # http body (model)
1401
- post_body = nil
1402
- auth_names = ['api_token_basic']
1403
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1975
+ post_body = opts[:debug_body]
1976
+
1977
+ # return_type
1978
+ return_type = opts[:debug_return_type] || 'ListSubmissionsResponse'
1979
+
1980
+ # auth_names
1981
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
1982
+
1983
+ new_options = opts.merge(
1984
+ :operation => :"PDFApi.list_submissions",
1404
1985
  :header_params => header_params,
1405
1986
  :query_params => query_params,
1406
1987
  :form_params => form_params,
1407
1988
  :body => post_body,
1408
1989
  :auth_names => auth_names,
1409
- :return_type => 'ListSubmissionsResponse')
1990
+ :return_type => return_type
1991
+ )
1992
+
1993
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1410
1994
  if @api_client.config.debugging
1411
1995
  @api_client.config.logger.debug "API called: PDFApi#list_submissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1412
1996
  end
@@ -1414,43 +1998,43 @@ module DocSpring
1414
1998
  end
1415
1999
 
1416
2000
  # List all submissions for a given template
1417
- # @param template_id
2001
+ # @param template_id [String]
1418
2002
  # @param [Hash] opts the optional parameters
1419
2003
  # @option opts [String] :cursor
1420
2004
  # @option opts [Float] :limit
1421
2005
  # @option opts [String] :created_after
1422
2006
  # @option opts [String] :created_before
1423
2007
  # @option opts [String] :type
1424
- # @option opts [BOOLEAN] :include_data
2008
+ # @option opts [Boolean] :include_data
1425
2009
  # @return [ListSubmissionsResponse]
1426
- def list_submissions_0(template_id, opts = {})
1427
- data, _status_code, _headers = list_submissions_0_with_http_info(template_id, opts)
2010
+ def list_template_submissions(template_id, opts = {})
2011
+ data, _status_code, _headers = list_template_submissions_with_http_info(template_id, opts)
1428
2012
  data
1429
2013
  end
1430
2014
 
1431
2015
  # List all submissions for a given template
1432
- # @param template_id
2016
+ # @param template_id [String]
1433
2017
  # @param [Hash] opts the optional parameters
1434
2018
  # @option opts [String] :cursor
1435
2019
  # @option opts [Float] :limit
1436
2020
  # @option opts [String] :created_after
1437
2021
  # @option opts [String] :created_before
1438
2022
  # @option opts [String] :type
1439
- # @option opts [BOOLEAN] :include_data
1440
- # @return [Array<(ListSubmissionsResponse, Fixnum, Hash)>] ListSubmissionsResponse data, response status code and response headers
1441
- def list_submissions_0_with_http_info(template_id, opts = {})
2023
+ # @option opts [Boolean] :include_data
2024
+ # @return [Array<(ListSubmissionsResponse, Integer, Hash)>] ListSubmissionsResponse data, response status code and response headers
2025
+ def list_template_submissions_with_http_info(template_id, opts = {})
1442
2026
  if @api_client.config.debugging
1443
- @api_client.config.logger.debug 'Calling API: PDFApi.list_submissions_0 ...'
2027
+ @api_client.config.logger.debug 'Calling API: PDFApi.list_template_submissions ...'
1444
2028
  end
1445
2029
  # verify the required parameter 'template_id' is set
1446
2030
  if @api_client.config.client_side_validation && template_id.nil?
1447
- fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.list_submissions_0"
2031
+ fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.list_template_submissions"
1448
2032
  end
1449
2033
  # resource path
1450
- local_var_path = '/templates/{template_id}/submissions'.sub('{' + 'template_id' + '}', template_id.to_s)
2034
+ local_var_path = '/templates/{template_id}/submissions'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
1451
2035
 
1452
2036
  # query parameters
1453
- query_params = {}
2037
+ query_params = opts[:query_params] || {}
1454
2038
  query_params[:'cursor'] = opts[:'cursor'] if !opts[:'cursor'].nil?
1455
2039
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
1456
2040
  query_params[:'created_after'] = opts[:'created_after'] if !opts[:'created_after'].nil?
@@ -1459,25 +2043,35 @@ module DocSpring
1459
2043
  query_params[:'include_data'] = opts[:'include_data'] if !opts[:'include_data'].nil?
1460
2044
 
1461
2045
  # header parameters
1462
- header_params = {}
2046
+ header_params = opts[:header_params] || {}
1463
2047
  # HTTP header 'Accept' (if needed)
1464
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2048
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1465
2049
 
1466
2050
  # form parameters
1467
- form_params = {}
2051
+ form_params = opts[:form_params] || {}
1468
2052
 
1469
2053
  # http body (model)
1470
- post_body = nil
1471
- auth_names = ['api_token_basic']
1472
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
2054
+ post_body = opts[:debug_body]
2055
+
2056
+ # return_type
2057
+ return_type = opts[:debug_return_type] || 'ListSubmissionsResponse'
2058
+
2059
+ # auth_names
2060
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
2061
+
2062
+ new_options = opts.merge(
2063
+ :operation => :"PDFApi.list_template_submissions",
1473
2064
  :header_params => header_params,
1474
2065
  :query_params => query_params,
1475
2066
  :form_params => form_params,
1476
2067
  :body => post_body,
1477
2068
  :auth_names => auth_names,
1478
- :return_type => 'ListSubmissionsResponse')
2069
+ :return_type => return_type
2070
+ )
2071
+
2072
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1479
2073
  if @api_client.config.debugging
1480
- @api_client.config.logger.debug "API called: PDFApi#list_submissions_0\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
2074
+ @api_client.config.logger.debug "API called: PDFApi#list_template_submissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1481
2075
  end
1482
2076
  return data, status_code, headers
1483
2077
  end
@@ -1488,7 +2082,7 @@ module DocSpring
1488
2082
  # @option opts [String] :parent_folder_id Filter By Folder Id
1489
2083
  # @option opts [Integer] :page Default: 1
1490
2084
  # @option opts [Integer] :per_page Default: 50
1491
- # @return [Array<Template>]
2085
+ # @return [Array<TemplatePreview>]
1492
2086
  def list_templates(opts = {})
1493
2087
  data, _status_code, _headers = list_templates_with_http_info(opts)
1494
2088
  data
@@ -1500,7 +2094,7 @@ module DocSpring
1500
2094
  # @option opts [String] :parent_folder_id Filter By Folder Id
1501
2095
  # @option opts [Integer] :page Default: 1
1502
2096
  # @option opts [Integer] :per_page Default: 50
1503
- # @return [Array<(Array<Template>, Fixnum, Hash)>] Array<Template> data, response status code and response headers
2097
+ # @return [Array<(Array<TemplatePreview>, Integer, Hash)>] Array<TemplatePreview> data, response status code and response headers
1504
2098
  def list_templates_with_http_info(opts = {})
1505
2099
  if @api_client.config.debugging
1506
2100
  @api_client.config.logger.debug 'Calling API: PDFApi.list_templates ...'
@@ -1521,30 +2115,40 @@ module DocSpring
1521
2115
  local_var_path = '/templates'
1522
2116
 
1523
2117
  # query parameters
1524
- query_params = {}
2118
+ query_params = opts[:query_params] || {}
1525
2119
  query_params[:'query'] = opts[:'query'] if !opts[:'query'].nil?
1526
2120
  query_params[:'parent_folder_id'] = opts[:'parent_folder_id'] if !opts[:'parent_folder_id'].nil?
1527
2121
  query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
1528
2122
  query_params[:'per_page'] = opts[:'per_page'] if !opts[:'per_page'].nil?
1529
2123
 
1530
2124
  # header parameters
1531
- header_params = {}
2125
+ header_params = opts[:header_params] || {}
1532
2126
  # HTTP header 'Accept' (if needed)
1533
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2127
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1534
2128
 
1535
2129
  # form parameters
1536
- form_params = {}
2130
+ form_params = opts[:form_params] || {}
1537
2131
 
1538
2132
  # http body (model)
1539
- post_body = nil
1540
- auth_names = ['api_token_basic']
1541
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
2133
+ post_body = opts[:debug_body]
2134
+
2135
+ # return_type
2136
+ return_type = opts[:debug_return_type] || 'Array<TemplatePreview>'
2137
+
2138
+ # auth_names
2139
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
2140
+
2141
+ new_options = opts.merge(
2142
+ :operation => :"PDFApi.list_templates",
1542
2143
  :header_params => header_params,
1543
2144
  :query_params => query_params,
1544
2145
  :form_params => form_params,
1545
2146
  :body => post_body,
1546
2147
  :auth_names => auth_names,
1547
- :return_type => 'Array<Template>')
2148
+ :return_type => return_type
2149
+ )
2150
+
2151
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1548
2152
  if @api_client.config.debugging
1549
2153
  @api_client.config.logger.debug "API called: PDFApi#list_templates\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1550
2154
  end
@@ -1552,21 +2156,21 @@ module DocSpring
1552
2156
  end
1553
2157
 
1554
2158
  # Move a folder
1555
- # @param folder_id
1556
- # @param move_folder_data
2159
+ # @param folder_id [String]
2160
+ # @param data [MoveFolderData]
1557
2161
  # @param [Hash] opts the optional parameters
1558
2162
  # @return [Folder]
1559
- def move_folder_to_folder(folder_id, move_folder_data, opts = {})
1560
- data, _status_code, _headers = move_folder_to_folder_with_http_info(folder_id, move_folder_data, opts)
2163
+ def move_folder_to_folder(folder_id, data, opts = {})
2164
+ data, _status_code, _headers = move_folder_to_folder_with_http_info(folder_id, data, opts)
1561
2165
  data
1562
2166
  end
1563
2167
 
1564
2168
  # Move a folder
1565
- # @param folder_id
1566
- # @param move_folder_data
2169
+ # @param folder_id [String]
2170
+ # @param data [MoveFolderData]
1567
2171
  # @param [Hash] opts the optional parameters
1568
- # @return [Array<(Folder, Fixnum, Hash)>] Folder data, response status code and response headers
1569
- def move_folder_to_folder_with_http_info(folder_id, move_folder_data, opts = {})
2172
+ # @return [Array<(Folder, Integer, Hash)>] Folder data, response status code and response headers
2173
+ def move_folder_to_folder_with_http_info(folder_id, data, opts = {})
1570
2174
  if @api_client.config.debugging
1571
2175
  @api_client.config.logger.debug 'Calling API: PDFApi.move_folder_to_folder ...'
1572
2176
  end
@@ -1574,36 +2178,49 @@ module DocSpring
1574
2178
  if @api_client.config.client_side_validation && folder_id.nil?
1575
2179
  fail ArgumentError, "Missing the required parameter 'folder_id' when calling PDFApi.move_folder_to_folder"
1576
2180
  end
1577
- # verify the required parameter 'move_folder_data' is set
1578
- if @api_client.config.client_side_validation && move_folder_data.nil?
1579
- fail ArgumentError, "Missing the required parameter 'move_folder_data' when calling PDFApi.move_folder_to_folder"
2181
+ # verify the required parameter 'data' is set
2182
+ if @api_client.config.client_side_validation && data.nil?
2183
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.move_folder_to_folder"
1580
2184
  end
1581
2185
  # resource path
1582
- local_var_path = '/folders/{folder_id}/move'.sub('{' + 'folder_id' + '}', folder_id.to_s)
2186
+ local_var_path = '/folders/{folder_id}/move'.sub('{' + 'folder_id' + '}', CGI.escape(folder_id.to_s))
1583
2187
 
1584
2188
  # query parameters
1585
- query_params = {}
2189
+ query_params = opts[:query_params] || {}
1586
2190
 
1587
2191
  # header parameters
1588
- header_params = {}
2192
+ header_params = opts[:header_params] || {}
1589
2193
  # HTTP header 'Accept' (if needed)
1590
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2194
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1591
2195
  # HTTP header 'Content-Type'
1592
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
2196
+ content_type = @api_client.select_header_content_type(['application/json'])
2197
+ if !content_type.nil?
2198
+ header_params['Content-Type'] = content_type
2199
+ end
1593
2200
 
1594
2201
  # form parameters
1595
- form_params = {}
2202
+ form_params = opts[:form_params] || {}
1596
2203
 
1597
2204
  # http body (model)
1598
- post_body = @api_client.object_to_http_body(move_folder_data)
1599
- auth_names = ['api_token_basic']
1600
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2205
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
2206
+
2207
+ # return_type
2208
+ return_type = opts[:debug_return_type] || 'Folder'
2209
+
2210
+ # auth_names
2211
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
2212
+
2213
+ new_options = opts.merge(
2214
+ :operation => :"PDFApi.move_folder_to_folder",
1601
2215
  :header_params => header_params,
1602
2216
  :query_params => query_params,
1603
2217
  :form_params => form_params,
1604
2218
  :body => post_body,
1605
2219
  :auth_names => auth_names,
1606
- :return_type => 'Folder')
2220
+ :return_type => return_type
2221
+ )
2222
+
2223
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
1607
2224
  if @api_client.config.debugging
1608
2225
  @api_client.config.logger.debug "API called: PDFApi#move_folder_to_folder\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1609
2226
  end
@@ -1611,21 +2228,21 @@ module DocSpring
1611
2228
  end
1612
2229
 
1613
2230
  # Move Template to folder
1614
- # @param template_id
1615
- # @param move_template_data
2231
+ # @param template_id [String]
2232
+ # @param data [MoveTemplateData]
1616
2233
  # @param [Hash] opts the optional parameters
1617
- # @return [Template]
1618
- def move_template_to_folder(template_id, move_template_data, opts = {})
1619
- data, _status_code, _headers = move_template_to_folder_with_http_info(template_id, move_template_data, opts)
2234
+ # @return [TemplatePreview]
2235
+ def move_template_to_folder(template_id, data, opts = {})
2236
+ data, _status_code, _headers = move_template_to_folder_with_http_info(template_id, data, opts)
1620
2237
  data
1621
2238
  end
1622
2239
 
1623
2240
  # Move Template to folder
1624
- # @param template_id
1625
- # @param move_template_data
2241
+ # @param template_id [String]
2242
+ # @param data [MoveTemplateData]
1626
2243
  # @param [Hash] opts the optional parameters
1627
- # @return [Array<(Template, Fixnum, Hash)>] Template data, response status code and response headers
1628
- def move_template_to_folder_with_http_info(template_id, move_template_data, opts = {})
2244
+ # @return [Array<(TemplatePreview, Integer, Hash)>] TemplatePreview data, response status code and response headers
2245
+ def move_template_to_folder_with_http_info(template_id, data, opts = {})
1629
2246
  if @api_client.config.debugging
1630
2247
  @api_client.config.logger.debug 'Calling API: PDFApi.move_template_to_folder ...'
1631
2248
  end
@@ -1633,36 +2250,49 @@ module DocSpring
1633
2250
  if @api_client.config.client_side_validation && template_id.nil?
1634
2251
  fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.move_template_to_folder"
1635
2252
  end
1636
- # verify the required parameter 'move_template_data' is set
1637
- if @api_client.config.client_side_validation && move_template_data.nil?
1638
- fail ArgumentError, "Missing the required parameter 'move_template_data' when calling PDFApi.move_template_to_folder"
2253
+ # verify the required parameter 'data' is set
2254
+ if @api_client.config.client_side_validation && data.nil?
2255
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.move_template_to_folder"
1639
2256
  end
1640
2257
  # resource path
1641
- local_var_path = '/templates/{template_id}/move'.sub('{' + 'template_id' + '}', template_id.to_s)
2258
+ local_var_path = '/templates/{template_id}/move'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
1642
2259
 
1643
2260
  # query parameters
1644
- query_params = {}
2261
+ query_params = opts[:query_params] || {}
1645
2262
 
1646
2263
  # header parameters
1647
- header_params = {}
2264
+ header_params = opts[:header_params] || {}
1648
2265
  # HTTP header 'Accept' (if needed)
1649
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2266
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1650
2267
  # HTTP header 'Content-Type'
1651
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
2268
+ content_type = @api_client.select_header_content_type(['application/json'])
2269
+ if !content_type.nil?
2270
+ header_params['Content-Type'] = content_type
2271
+ end
1652
2272
 
1653
2273
  # form parameters
1654
- form_params = {}
2274
+ form_params = opts[:form_params] || {}
1655
2275
 
1656
2276
  # http body (model)
1657
- post_body = @api_client.object_to_http_body(move_template_data)
1658
- auth_names = ['api_token_basic']
1659
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2277
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
2278
+
2279
+ # return_type
2280
+ return_type = opts[:debug_return_type] || 'TemplatePreview'
2281
+
2282
+ # auth_names
2283
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
2284
+
2285
+ new_options = opts.merge(
2286
+ :operation => :"PDFApi.move_template_to_folder",
1660
2287
  :header_params => header_params,
1661
2288
  :query_params => query_params,
1662
2289
  :form_params => form_params,
1663
2290
  :body => post_body,
1664
2291
  :auth_names => auth_names,
1665
- :return_type => 'Template')
2292
+ :return_type => return_type
2293
+ )
2294
+
2295
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
1666
2296
  if @api_client.config.debugging
1667
2297
  @api_client.config.logger.debug "API called: PDFApi#move_template_to_folder\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1668
2298
  end
@@ -1670,21 +2300,21 @@ module DocSpring
1670
2300
  end
1671
2301
 
1672
2302
  # Rename a folder
1673
- # @param folder_id
1674
- # @param rename_folder_data
2303
+ # @param folder_id [String]
2304
+ # @param data [RenameFolderData]
1675
2305
  # @param [Hash] opts the optional parameters
1676
- # @return [nil]
1677
- def rename_folder(folder_id, rename_folder_data, opts = {})
1678
- rename_folder_with_http_info(folder_id, rename_folder_data, opts)
1679
- nil
2306
+ # @return [Folder]
2307
+ def rename_folder(folder_id, data, opts = {})
2308
+ data, _status_code, _headers = rename_folder_with_http_info(folder_id, data, opts)
2309
+ data
1680
2310
  end
1681
2311
 
1682
2312
  # Rename a folder
1683
- # @param folder_id
1684
- # @param rename_folder_data
2313
+ # @param folder_id [String]
2314
+ # @param data [RenameFolderData]
1685
2315
  # @param [Hash] opts the optional parameters
1686
- # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
1687
- def rename_folder_with_http_info(folder_id, rename_folder_data, opts = {})
2316
+ # @return [Array<(Folder, Integer, Hash)>] Folder data, response status code and response headers
2317
+ def rename_folder_with_http_info(folder_id, data, opts = {})
1688
2318
  if @api_client.config.debugging
1689
2319
  @api_client.config.logger.debug 'Calling API: PDFApi.rename_folder ...'
1690
2320
  end
@@ -1692,35 +2322,49 @@ module DocSpring
1692
2322
  if @api_client.config.client_side_validation && folder_id.nil?
1693
2323
  fail ArgumentError, "Missing the required parameter 'folder_id' when calling PDFApi.rename_folder"
1694
2324
  end
1695
- # verify the required parameter 'rename_folder_data' is set
1696
- if @api_client.config.client_side_validation && rename_folder_data.nil?
1697
- fail ArgumentError, "Missing the required parameter 'rename_folder_data' when calling PDFApi.rename_folder"
2325
+ # verify the required parameter 'data' is set
2326
+ if @api_client.config.client_side_validation && data.nil?
2327
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.rename_folder"
1698
2328
  end
1699
2329
  # resource path
1700
- local_var_path = '/folders/{folder_id}/rename'.sub('{' + 'folder_id' + '}', folder_id.to_s)
2330
+ local_var_path = '/folders/{folder_id}/rename'.sub('{' + 'folder_id' + '}', CGI.escape(folder_id.to_s))
1701
2331
 
1702
2332
  # query parameters
1703
- query_params = {}
2333
+ query_params = opts[:query_params] || {}
1704
2334
 
1705
2335
  # header parameters
1706
- header_params = {}
2336
+ header_params = opts[:header_params] || {}
1707
2337
  # HTTP header 'Accept' (if needed)
1708
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2338
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1709
2339
  # HTTP header 'Content-Type'
1710
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
2340
+ content_type = @api_client.select_header_content_type(['application/json'])
2341
+ if !content_type.nil?
2342
+ header_params['Content-Type'] = content_type
2343
+ end
1711
2344
 
1712
2345
  # form parameters
1713
- form_params = {}
2346
+ form_params = opts[:form_params] || {}
1714
2347
 
1715
2348
  # http body (model)
1716
- post_body = @api_client.object_to_http_body(rename_folder_data)
1717
- auth_names = ['api_token_basic']
1718
- data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2349
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
2350
+
2351
+ # return_type
2352
+ return_type = opts[:debug_return_type] || 'Folder'
2353
+
2354
+ # auth_names
2355
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
2356
+
2357
+ new_options = opts.merge(
2358
+ :operation => :"PDFApi.rename_folder",
1719
2359
  :header_params => header_params,
1720
2360
  :query_params => query_params,
1721
2361
  :form_params => form_params,
1722
2362
  :body => post_body,
1723
- :auth_names => auth_names)
2363
+ :auth_names => auth_names,
2364
+ :return_type => return_type
2365
+ )
2366
+
2367
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
1724
2368
  if @api_client.config.debugging
1725
2369
  @api_client.config.logger.debug "API called: PDFApi#rename_folder\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1726
2370
  end
@@ -1729,7 +2373,7 @@ module DocSpring
1729
2373
 
1730
2374
  # Test Authentication
1731
2375
  # @param [Hash] opts the optional parameters
1732
- # @return [AuthenticationSuccessResponse]
2376
+ # @return [SuccessErrorResponse]
1733
2377
  def test_authentication(opts = {})
1734
2378
  data, _status_code, _headers = test_authentication_with_http_info(opts)
1735
2379
  data
@@ -1737,7 +2381,7 @@ module DocSpring
1737
2381
 
1738
2382
  # Test Authentication
1739
2383
  # @param [Hash] opts the optional parameters
1740
- # @return [Array<(AuthenticationSuccessResponse, Fixnum, Hash)>] AuthenticationSuccessResponse data, response status code and response headers
2384
+ # @return [Array<(SuccessErrorResponse, Integer, Hash)>] SuccessErrorResponse data, response status code and response headers
1741
2385
  def test_authentication_with_http_info(opts = {})
1742
2386
  if @api_client.config.debugging
1743
2387
  @api_client.config.logger.debug 'Calling API: PDFApi.test_authentication ...'
@@ -1746,26 +2390,36 @@ module DocSpring
1746
2390
  local_var_path = '/authentication'
1747
2391
 
1748
2392
  # query parameters
1749
- query_params = {}
2393
+ query_params = opts[:query_params] || {}
1750
2394
 
1751
2395
  # header parameters
1752
- header_params = {}
2396
+ header_params = opts[:header_params] || {}
1753
2397
  # HTTP header 'Accept' (if needed)
1754
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2398
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1755
2399
 
1756
2400
  # form parameters
1757
- form_params = {}
2401
+ form_params = opts[:form_params] || {}
1758
2402
 
1759
2403
  # http body (model)
1760
- post_body = nil
1761
- auth_names = ['api_token_basic']
1762
- data, status_code, headers = @api_client.call_api(:GET, local_var_path,
2404
+ post_body = opts[:debug_body]
2405
+
2406
+ # return_type
2407
+ return_type = opts[:debug_return_type] || 'SuccessErrorResponse'
2408
+
2409
+ # auth_names
2410
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
2411
+
2412
+ new_options = opts.merge(
2413
+ :operation => :"PDFApi.test_authentication",
1763
2414
  :header_params => header_params,
1764
2415
  :query_params => query_params,
1765
2416
  :form_params => form_params,
1766
2417
  :body => post_body,
1767
2418
  :auth_names => auth_names,
1768
- :return_type => 'AuthenticationSuccessResponse')
2419
+ :return_type => return_type
2420
+ )
2421
+
2422
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1769
2423
  if @api_client.config.debugging
1770
2424
  @api_client.config.logger.debug "API called: PDFApi#test_authentication\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1771
2425
  end
@@ -1773,21 +2427,21 @@ module DocSpring
1773
2427
  end
1774
2428
 
1775
2429
  # Update a submission data request
1776
- # @param data_request_id
1777
- # @param update_submission_data_request_data
2430
+ # @param data_request_id [String]
2431
+ # @param data [UpdateSubmissionDataRequestData]
1778
2432
  # @param [Hash] opts the optional parameters
1779
- # @return [UpdateDataRequestResponse]
1780
- def update_data_request(data_request_id, update_submission_data_request_data, opts = {})
1781
- data, _status_code, _headers = update_data_request_with_http_info(data_request_id, update_submission_data_request_data, opts)
2433
+ # @return [CreateSubmissionDataRequestResponse]
2434
+ def update_data_request(data_request_id, data, opts = {})
2435
+ data, _status_code, _headers = update_data_request_with_http_info(data_request_id, data, opts)
1782
2436
  data
1783
2437
  end
1784
2438
 
1785
2439
  # Update a submission data request
1786
- # @param data_request_id
1787
- # @param update_submission_data_request_data
2440
+ # @param data_request_id [String]
2441
+ # @param data [UpdateSubmissionDataRequestData]
1788
2442
  # @param [Hash] opts the optional parameters
1789
- # @return [Array<(UpdateDataRequestResponse, Fixnum, Hash)>] UpdateDataRequestResponse data, response status code and response headers
1790
- def update_data_request_with_http_info(data_request_id, update_submission_data_request_data, opts = {})
2443
+ # @return [Array<(CreateSubmissionDataRequestResponse, Integer, Hash)>] CreateSubmissionDataRequestResponse data, response status code and response headers
2444
+ def update_data_request_with_http_info(data_request_id, data, opts = {})
1791
2445
  if @api_client.config.debugging
1792
2446
  @api_client.config.logger.debug 'Calling API: PDFApi.update_data_request ...'
1793
2447
  end
@@ -1795,36 +2449,49 @@ module DocSpring
1795
2449
  if @api_client.config.client_side_validation && data_request_id.nil?
1796
2450
  fail ArgumentError, "Missing the required parameter 'data_request_id' when calling PDFApi.update_data_request"
1797
2451
  end
1798
- # verify the required parameter 'update_submission_data_request_data' is set
1799
- if @api_client.config.client_side_validation && update_submission_data_request_data.nil?
1800
- fail ArgumentError, "Missing the required parameter 'update_submission_data_request_data' when calling PDFApi.update_data_request"
2452
+ # verify the required parameter 'data' is set
2453
+ if @api_client.config.client_side_validation && data.nil?
2454
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.update_data_request"
1801
2455
  end
1802
2456
  # resource path
1803
- local_var_path = '/data_requests/{data_request_id}'.sub('{' + 'data_request_id' + '}', data_request_id.to_s)
2457
+ local_var_path = '/data_requests/{data_request_id}'.sub('{' + 'data_request_id' + '}', CGI.escape(data_request_id.to_s))
1804
2458
 
1805
2459
  # query parameters
1806
- query_params = {}
2460
+ query_params = opts[:query_params] || {}
1807
2461
 
1808
2462
  # header parameters
1809
- header_params = {}
2463
+ header_params = opts[:header_params] || {}
1810
2464
  # HTTP header 'Accept' (if needed)
1811
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2465
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1812
2466
  # HTTP header 'Content-Type'
1813
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
2467
+ content_type = @api_client.select_header_content_type(['application/json'])
2468
+ if !content_type.nil?
2469
+ header_params['Content-Type'] = content_type
2470
+ end
1814
2471
 
1815
2472
  # form parameters
1816
- form_params = {}
2473
+ form_params = opts[:form_params] || {}
1817
2474
 
1818
2475
  # http body (model)
1819
- post_body = @api_client.object_to_http_body(update_submission_data_request_data)
1820
- auth_names = ['api_token_basic']
1821
- data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
2476
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
2477
+
2478
+ # return_type
2479
+ return_type = opts[:debug_return_type] || 'CreateSubmissionDataRequestResponse'
2480
+
2481
+ # auth_names
2482
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
2483
+
2484
+ new_options = opts.merge(
2485
+ :operation => :"PDFApi.update_data_request",
1822
2486
  :header_params => header_params,
1823
2487
  :query_params => query_params,
1824
2488
  :form_params => form_params,
1825
2489
  :body => post_body,
1826
2490
  :auth_names => auth_names,
1827
- :return_type => 'UpdateDataRequestResponse')
2491
+ :return_type => return_type
2492
+ )
2493
+
2494
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
1828
2495
  if @api_client.config.debugging
1829
2496
  @api_client.config.logger.debug "API called: PDFApi#update_data_request\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1830
2497
  end
@@ -1832,21 +2499,21 @@ module DocSpring
1832
2499
  end
1833
2500
 
1834
2501
  # Update a Template
1835
- # @param template_id
1836
- # @param update_template_data
2502
+ # @param template_id [String]
2503
+ # @param data [UpdateHtmlTemplate]
1837
2504
  # @param [Hash] opts the optional parameters
1838
- # @return [UpdateTemplateResponse]
1839
- def update_template(template_id, update_template_data, opts = {})
1840
- data, _status_code, _headers = update_template_with_http_info(template_id, update_template_data, opts)
2505
+ # @return [SuccessMultipleErrorsResponse]
2506
+ def update_template(template_id, data, opts = {})
2507
+ data, _status_code, _headers = update_template_with_http_info(template_id, data, opts)
1841
2508
  data
1842
2509
  end
1843
2510
 
1844
2511
  # Update a Template
1845
- # @param template_id
1846
- # @param update_template_data
2512
+ # @param template_id [String]
2513
+ # @param data [UpdateHtmlTemplate]
1847
2514
  # @param [Hash] opts the optional parameters
1848
- # @return [Array<(UpdateTemplateResponse, Fixnum, Hash)>] UpdateTemplateResponse data, response status code and response headers
1849
- def update_template_with_http_info(template_id, update_template_data, opts = {})
2515
+ # @return [Array<(SuccessMultipleErrorsResponse, Integer, Hash)>] SuccessMultipleErrorsResponse data, response status code and response headers
2516
+ def update_template_with_http_info(template_id, data, opts = {})
1850
2517
  if @api_client.config.debugging
1851
2518
  @api_client.config.logger.debug 'Calling API: PDFApi.update_template ...'
1852
2519
  end
@@ -1854,41 +2521,53 @@ module DocSpring
1854
2521
  if @api_client.config.client_side_validation && template_id.nil?
1855
2522
  fail ArgumentError, "Missing the required parameter 'template_id' when calling PDFApi.update_template"
1856
2523
  end
1857
- # verify the required parameter 'update_template_data' is set
1858
- if @api_client.config.client_side_validation && update_template_data.nil?
1859
- fail ArgumentError, "Missing the required parameter 'update_template_data' when calling PDFApi.update_template"
2524
+ # verify the required parameter 'data' is set
2525
+ if @api_client.config.client_side_validation && data.nil?
2526
+ fail ArgumentError, "Missing the required parameter 'data' when calling PDFApi.update_template"
1860
2527
  end
1861
2528
  # resource path
1862
- local_var_path = '/templates/{template_id}'.sub('{' + 'template_id' + '}', template_id.to_s)
2529
+ local_var_path = '/templates/{template_id}'.sub('{' + 'template_id' + '}', CGI.escape(template_id.to_s))
1863
2530
 
1864
2531
  # query parameters
1865
- query_params = {}
2532
+ query_params = opts[:query_params] || {}
1866
2533
 
1867
2534
  # header parameters
1868
- header_params = {}
2535
+ header_params = opts[:header_params] || {}
1869
2536
  # HTTP header 'Accept' (if needed)
1870
- header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2537
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1871
2538
  # HTTP header 'Content-Type'
1872
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
2539
+ content_type = @api_client.select_header_content_type(['application/json'])
2540
+ if !content_type.nil?
2541
+ header_params['Content-Type'] = content_type
2542
+ end
1873
2543
 
1874
2544
  # form parameters
1875
- form_params = {}
2545
+ form_params = opts[:form_params] || {}
1876
2546
 
1877
2547
  # http body (model)
1878
- post_body = @api_client.object_to_http_body(update_template_data)
1879
- auth_names = ['api_token_basic']
1880
- data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
2548
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(data)
2549
+
2550
+ # return_type
2551
+ return_type = opts[:debug_return_type] || 'SuccessMultipleErrorsResponse'
2552
+
2553
+ # auth_names
2554
+ auth_names = opts[:debug_auth_names] || ['api_token_basic']
2555
+
2556
+ new_options = opts.merge(
2557
+ :operation => :"PDFApi.update_template",
1881
2558
  :header_params => header_params,
1882
2559
  :query_params => query_params,
1883
2560
  :form_params => form_params,
1884
2561
  :body => post_body,
1885
2562
  :auth_names => auth_names,
1886
- :return_type => 'UpdateTemplateResponse')
2563
+ :return_type => return_type
2564
+ )
2565
+
2566
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
1887
2567
  if @api_client.config.debugging
1888
2568
  @api_client.config.logger.debug "API called: PDFApi#update_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1889
2569
  end
1890
2570
  return data, status_code, headers
1891
2571
  end
1892
-
1893
2572
  end
1894
2573
  end