cloudsmith-api 1.30.0 → 1.61.3

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 (546) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/Gemfile.lock +8 -7
  4. data/README.md +25 -21
  5. data/build.json +1 -1
  6. data/cloudsmith-api.gemspec +5 -4
  7. data/docs/AlpinePackageUpload.md +5 -3
  8. data/docs/BadgesApi.md +18 -17
  9. data/docs/ConanPackageUpload.md +5 -3
  10. data/docs/DistrosApi.md +1 -1
  11. data/docs/EntitlementsApi.md +27 -27
  12. data/docs/FilesApi.md +13 -13
  13. data/docs/FormatsApi.md +1 -1
  14. data/docs/MavenPackageUpload.md +5 -3
  15. data/docs/MetricsApi.md +14 -14
  16. data/docs/NamespacesApi.md +1 -1
  17. data/docs/OrgsApi.md +6 -6
  18. data/docs/Package.md +5 -3
  19. data/docs/PackageCopy.md +5 -3
  20. data/docs/PackageMove.md +5 -3
  21. data/docs/PackageStatus.md +4 -2
  22. data/docs/PackagesApi.md +188 -123
  23. data/docs/PackagesQuarantine.md +8 -0
  24. data/docs/QuotaApi.md +4 -4
  25. data/docs/RawPackageUpload.md +5 -3
  26. data/docs/ReposApi.md +10 -10
  27. data/docs/ReposCreate.md +1 -1
  28. data/docs/Repository.md +1 -1
  29. data/docs/RepositoryCreate.md +31 -0
  30. data/docs/RepositoryWebhook.md +3 -3
  31. data/docs/{StorageregionsApi.md → StorageRegionsApi.md} +8 -8
  32. data/docs/UsersApi.md +1 -1
  33. data/docs/VagrantPackageUpload.md +5 -3
  34. data/docs/VulnerabilitiesApi.md +10 -10
  35. data/docs/WebhooksApi.md +13 -13
  36. data/docs/WebhooksCreate.md +2 -2
  37. data/docs/WebhooksPartialUpdate.md +2 -2
  38. data/git_push.sh +1 -1
  39. data/lib/cloudsmith-api/api/badges_api.rb +10 -10
  40. data/lib/cloudsmith-api/api/distros_api.rb +8 -10
  41. data/lib/cloudsmith-api/api/entitlements_api.rb +32 -42
  42. data/lib/cloudsmith-api/api/files_api.rb +17 -22
  43. data/lib/cloudsmith-api/api/formats_api.rb +8 -10
  44. data/lib/cloudsmith-api/api/metrics_api.rb +11 -14
  45. data/lib/cloudsmith-api/api/namespaces_api.rb +8 -10
  46. data/lib/cloudsmith-api/api/orgs_api.rb +17 -22
  47. data/lib/cloudsmith-api/api/packages_api.rb +235 -225
  48. data/lib/cloudsmith-api/api/quota_api.rb +14 -18
  49. data/lib/cloudsmith-api/api/rates_api.rb +5 -6
  50. data/lib/cloudsmith-api/api/repos_api.rb +23 -29
  51. data/lib/cloudsmith-api/api/status_api.rb +5 -6
  52. data/lib/cloudsmith-api/api/{storageregions_api.rb → storage_regions_api.rb} +12 -14
  53. data/lib/cloudsmith-api/api/user_api.rb +8 -10
  54. data/lib/cloudsmith-api/api/users_api.rb +5 -6
  55. data/lib/cloudsmith-api/api/vulnerabilities_api.rb +14 -18
  56. data/lib/cloudsmith-api/api/webhooks_api.rb +17 -22
  57. data/lib/cloudsmith-api/api_client.rb +15 -13
  58. data/lib/cloudsmith-api/api_error.rb +1 -1
  59. data/lib/cloudsmith-api/configuration.rb +4 -4
  60. data/lib/cloudsmith-api/models/alpine_package_upload.rb +32 -16
  61. data/lib/cloudsmith-api/models/conan_package_upload.rb +32 -16
  62. data/lib/cloudsmith-api/models/distribution.rb +9 -13
  63. data/lib/cloudsmith-api/models/distros_versions.rb +8 -12
  64. data/lib/cloudsmith-api/models/entitlement_usage_metrics.rb +9 -13
  65. data/lib/cloudsmith-api/models/entitlements_create.rb +9 -13
  66. data/lib/cloudsmith-api/models/entitlements_partial_update.rb +8 -12
  67. data/lib/cloudsmith-api/models/entitlements_refresh.rb +8 -12
  68. data/lib/cloudsmith-api/models/entitlements_sync.rb +9 -13
  69. data/lib/cloudsmith-api/models/files_abort.rb +9 -13
  70. data/lib/cloudsmith-api/models/files_complete.rb +9 -13
  71. data/lib/cloudsmith-api/models/files_create.rb +9 -13
  72. data/lib/cloudsmith-api/models/files_validate.rb +9 -13
  73. data/lib/cloudsmith-api/models/format.rb +14 -18
  74. data/lib/cloudsmith-api/models/formats_distributions.rb +8 -12
  75. data/lib/cloudsmith-api/models/maven_package_upload.rb +32 -16
  76. data/lib/cloudsmith-api/models/namespace.rb +8 -12
  77. data/lib/cloudsmith-api/models/organization.rb +8 -12
  78. data/lib/cloudsmith-api/models/organization_membership.rb +8 -12
  79. data/lib/cloudsmith-api/models/package.rb +32 -16
  80. data/lib/cloudsmith-api/models/package_copy.rb +32 -16
  81. data/lib/cloudsmith-api/models/package_dependencies.rb +9 -13
  82. data/lib/cloudsmith-api/models/package_dependencies_dependencies.rb +8 -12
  83. data/lib/cloudsmith-api/models/package_file_parts_upload.rb +8 -12
  84. data/lib/cloudsmith-api/models/package_file_upload.rb +8 -12
  85. data/lib/cloudsmith-api/models/package_move.rb +32 -16
  86. data/lib/cloudsmith-api/models/package_status.rb +31 -15
  87. data/lib/cloudsmith-api/models/package_usage_metrics.rb +9 -13
  88. data/lib/cloudsmith-api/models/packages_copy.rb +9 -13
  89. data/lib/cloudsmith-api/models/packages_move.rb +9 -13
  90. data/lib/cloudsmith-api/models/packages_quarantine.rb +185 -0
  91. data/lib/cloudsmith-api/models/packages_tag.rb +8 -12
  92. data/lib/cloudsmith-api/models/packages_upload_alpine.rb +10 -14
  93. data/lib/cloudsmith-api/models/packages_upload_cargo.rb +9 -13
  94. data/lib/cloudsmith-api/models/packages_upload_cocoapods.rb +9 -13
  95. data/lib/cloudsmith-api/models/packages_upload_composer.rb +9 -13
  96. data/lib/cloudsmith-api/models/packages_upload_conan.rb +12 -16
  97. data/lib/cloudsmith-api/models/packages_upload_conda.rb +9 -13
  98. data/lib/cloudsmith-api/models/packages_upload_cran.rb +9 -13
  99. data/lib/cloudsmith-api/models/packages_upload_dart.rb +9 -13
  100. data/lib/cloudsmith-api/models/packages_upload_deb.rb +10 -14
  101. data/lib/cloudsmith-api/models/packages_upload_docker.rb +9 -13
  102. data/lib/cloudsmith-api/models/packages_upload_go.rb +9 -13
  103. data/lib/cloudsmith-api/models/packages_upload_helm.rb +9 -13
  104. data/lib/cloudsmith-api/models/packages_upload_luarocks.rb +9 -13
  105. data/lib/cloudsmith-api/models/packages_upload_maven.rb +9 -13
  106. data/lib/cloudsmith-api/models/packages_upload_npm.rb +9 -13
  107. data/lib/cloudsmith-api/models/packages_upload_nuget.rb +9 -13
  108. data/lib/cloudsmith-api/models/packages_upload_p2.rb +9 -13
  109. data/lib/cloudsmith-api/models/packages_upload_python.rb +9 -13
  110. data/lib/cloudsmith-api/models/packages_upload_raw.rb +9 -13
  111. data/lib/cloudsmith-api/models/packages_upload_rpm.rb +10 -14
  112. data/lib/cloudsmith-api/models/packages_upload_ruby.rb +9 -13
  113. data/lib/cloudsmith-api/models/packages_upload_terraform.rb +9 -13
  114. data/lib/cloudsmith-api/models/packages_upload_vagrant.rb +12 -16
  115. data/lib/cloudsmith-api/models/packages_validateupload_alpine.rb +10 -14
  116. data/lib/cloudsmith-api/models/packages_validateupload_cargo.rb +9 -13
  117. data/lib/cloudsmith-api/models/packages_validateupload_cocoapods.rb +9 -13
  118. data/lib/cloudsmith-api/models/packages_validateupload_composer.rb +9 -13
  119. data/lib/cloudsmith-api/models/packages_validateupload_conan.rb +12 -16
  120. data/lib/cloudsmith-api/models/packages_validateupload_conda.rb +9 -13
  121. data/lib/cloudsmith-api/models/packages_validateupload_cran.rb +9 -13
  122. data/lib/cloudsmith-api/models/packages_validateupload_dart.rb +9 -13
  123. data/lib/cloudsmith-api/models/packages_validateupload_deb.rb +10 -14
  124. data/lib/cloudsmith-api/models/packages_validateupload_docker.rb +9 -13
  125. data/lib/cloudsmith-api/models/packages_validateupload_go.rb +9 -13
  126. data/lib/cloudsmith-api/models/packages_validateupload_helm.rb +9 -13
  127. data/lib/cloudsmith-api/models/packages_validateupload_luarocks.rb +9 -13
  128. data/lib/cloudsmith-api/models/packages_validateupload_maven.rb +9 -13
  129. data/lib/cloudsmith-api/models/packages_validateupload_npm.rb +9 -13
  130. data/lib/cloudsmith-api/models/packages_validateupload_nuget.rb +9 -13
  131. data/lib/cloudsmith-api/models/packages_validateupload_p2.rb +9 -13
  132. data/lib/cloudsmith-api/models/packages_validateupload_python.rb +9 -13
  133. data/lib/cloudsmith-api/models/packages_validateupload_raw.rb +9 -13
  134. data/lib/cloudsmith-api/models/packages_validateupload_rpm.rb +10 -14
  135. data/lib/cloudsmith-api/models/packages_validateupload_ruby.rb +9 -13
  136. data/lib/cloudsmith-api/models/packages_validateupload_terraform.rb +9 -13
  137. data/lib/cloudsmith-api/models/packages_validateupload_vagrant.rb +12 -16
  138. data/lib/cloudsmith-api/models/packagesownerrepo_architectures.rb +8 -12
  139. data/lib/cloudsmith-api/models/packagesownerrepo_files.rb +8 -12
  140. data/lib/cloudsmith-api/models/quota.rb +9 -13
  141. data/lib/cloudsmith-api/models/quota_history.rb +9 -13
  142. data/lib/cloudsmith-api/models/quota_history_history.rb +8 -12
  143. data/lib/cloudsmith-api/models/raw_package_upload.rb +32 -16
  144. data/lib/cloudsmith-api/models/repos_create.rb +10 -14
  145. data/lib/cloudsmith-api/models/repos_gpg_keys.rb +8 -12
  146. data/lib/cloudsmith-api/models/repos_partial_update.rb +8 -12
  147. data/lib/cloudsmith-api/models/repository.rb +10 -14
  148. data/lib/cloudsmith-api/models/repository_create.rb +422 -0
  149. data/lib/cloudsmith-api/models/repository_token.rb +9 -13
  150. data/lib/cloudsmith-api/models/repository_token_refresh.rb +8 -12
  151. data/lib/cloudsmith-api/models/repository_token_sync.rb +8 -12
  152. data/lib/cloudsmith-api/models/repository_token_sync_tokens.rb +8 -12
  153. data/lib/cloudsmith-api/models/repository_webhook.rb +14 -18
  154. data/lib/cloudsmith-api/models/resources_rate_check.rb +8 -12
  155. data/lib/cloudsmith-api/models/status.rb +9 -13
  156. data/lib/cloudsmith-api/models/status_basic.rb +8 -12
  157. data/lib/cloudsmith-api/models/storage_region.rb +10 -14
  158. data/lib/cloudsmith-api/models/user_auth_token.rb +8 -12
  159. data/lib/cloudsmith-api/models/user_brief.rb +8 -12
  160. data/lib/cloudsmith-api/models/user_profile.rb +10 -14
  161. data/lib/cloudsmith-api/models/user_token_create.rb +8 -12
  162. data/lib/cloudsmith-api/models/vagrant_package_upload.rb +35 -19
  163. data/lib/cloudsmith-api/models/vulnerability_scan_results.rb +12 -16
  164. data/lib/cloudsmith-api/models/vulnerability_scan_results_list.rb +11 -15
  165. data/lib/cloudsmith-api/models/webhooks_create.rb +13 -17
  166. data/lib/cloudsmith-api/models/webhooks_partial_update.rb +10 -14
  167. data/lib/cloudsmith-api/models/webhooksownerrepo_templates.rb +8 -12
  168. data/lib/cloudsmith-api/version.rb +2 -2
  169. data/lib/cloudsmith-api.rb +4 -2
  170. data/spec/api/badges_api_spec.rb +3 -3
  171. data/spec/api/distros_api_spec.rb +3 -3
  172. data/spec/api/entitlements_api_spec.rb +11 -11
  173. data/spec/api/files_api_spec.rb +6 -6
  174. data/spec/api/formats_api_spec.rb +3 -3
  175. data/spec/api/metrics_api_spec.rb +4 -4
  176. data/spec/api/namespaces_api_spec.rb +3 -3
  177. data/spec/api/orgs_api_spec.rb +6 -6
  178. data/spec/api/packages_api_spec.rb +72 -57
  179. data/spec/api/quota_api_spec.rb +5 -5
  180. data/spec/api/rates_api_spec.rb +2 -2
  181. data/spec/api/repos_api_spec.rb +8 -8
  182. data/spec/api/status_api_spec.rb +2 -2
  183. data/spec/api/{storageregions_api_spec.rb → storage_regions_api_spec.rb} +9 -9
  184. data/spec/api/user_api_spec.rb +3 -3
  185. data/spec/api/users_api_spec.rb +2 -2
  186. data/spec/api/vulnerabilities_api_spec.rb +5 -5
  187. data/spec/api/webhooks_api_spec.rb +6 -6
  188. data/spec/api_client_spec.rb +52 -35
  189. data/spec/configuration_spec.rb +9 -9
  190. data/spec/models/alpine_package_upload_spec.rb +77 -66
  191. data/spec/models/conan_package_upload_spec.rb +79 -68
  192. data/spec/models/distribution_spec.rb +8 -9
  193. data/spec/models/distros_versions_spec.rb +3 -4
  194. data/spec/models/entitlement_usage_metrics_spec.rb +2 -3
  195. data/spec/models/entitlements_create_spec.rb +16 -17
  196. data/spec/models/entitlements_partial_update_spec.rb +16 -17
  197. data/spec/models/entitlements_refresh_spec.rb +15 -16
  198. data/spec/models/entitlements_sync_spec.rb +2 -3
  199. data/spec/models/files_abort_spec.rb +5 -6
  200. data/spec/models/files_complete_spec.rb +5 -6
  201. data/spec/models/files_create_spec.rb +5 -6
  202. data/spec/models/files_validate_spec.rb +5 -6
  203. data/spec/models/format_spec.rb +10 -11
  204. data/spec/models/formats_distributions_spec.rb +5 -6
  205. data/spec/models/maven_package_upload_spec.rb +80 -69
  206. data/spec/models/namespace_spec.rb +5 -6
  207. data/spec/models/organization_membership_spec.rb +11 -12
  208. data/spec/models/organization_spec.rb +8 -9
  209. data/spec/models/package_copy_spec.rb +78 -67
  210. data/spec/models/package_dependencies_dependencies_spec.rb +5 -6
  211. data/spec/models/package_dependencies_spec.rb +2 -3
  212. data/spec/models/package_file_parts_upload_spec.rb +4 -5
  213. data/spec/models/package_file_upload_spec.rb +6 -7
  214. data/spec/models/package_move_spec.rb +78 -67
  215. data/spec/models/package_spec.rb +78 -67
  216. data/spec/models/package_status_spec.rb +28 -17
  217. data/spec/models/package_usage_metrics_spec.rb +2 -3
  218. data/spec/models/packages_copy_spec.rb +3 -4
  219. data/spec/models/packages_move_spec.rb +2 -3
  220. data/spec/models/packages_quarantine_spec.rb +41 -0
  221. data/spec/models/packages_tag_spec.rb +4 -5
  222. data/spec/models/packages_upload_alpine_spec.rb +5 -6
  223. data/spec/models/packages_upload_cargo_spec.rb +4 -5
  224. data/spec/models/packages_upload_cocoapods_spec.rb +4 -5
  225. data/spec/models/packages_upload_composer_spec.rb +4 -5
  226. data/spec/models/packages_upload_conan_spec.rb +11 -12
  227. data/spec/models/packages_upload_conda_spec.rb +4 -5
  228. data/spec/models/packages_upload_cran_spec.rb +4 -5
  229. data/spec/models/packages_upload_dart_spec.rb +4 -5
  230. data/spec/models/packages_upload_deb_spec.rb +7 -8
  231. data/spec/models/packages_upload_docker_spec.rb +4 -5
  232. data/spec/models/packages_upload_go_spec.rb +4 -5
  233. data/spec/models/packages_upload_helm_spec.rb +4 -5
  234. data/spec/models/packages_upload_luarocks_spec.rb +4 -5
  235. data/spec/models/packages_upload_maven_spec.rb +12 -13
  236. data/spec/models/packages_upload_npm_spec.rb +5 -6
  237. data/spec/models/packages_upload_nuget_spec.rb +5 -6
  238. data/spec/models/packages_upload_p2_spec.rb +4 -5
  239. data/spec/models/packages_upload_python_spec.rb +4 -5
  240. data/spec/models/packages_upload_raw_spec.rb +9 -10
  241. data/spec/models/packages_upload_rpm_spec.rb +5 -6
  242. data/spec/models/packages_upload_ruby_spec.rb +4 -5
  243. data/spec/models/packages_upload_terraform_spec.rb +4 -5
  244. data/spec/models/packages_upload_vagrant_spec.rb +7 -8
  245. data/spec/models/packages_validateupload_alpine_spec.rb +5 -6
  246. data/spec/models/packages_validateupload_cargo_spec.rb +4 -5
  247. data/spec/models/packages_validateupload_cocoapods_spec.rb +4 -5
  248. data/spec/models/packages_validateupload_composer_spec.rb +4 -5
  249. data/spec/models/packages_validateupload_conan_spec.rb +11 -12
  250. data/spec/models/packages_validateupload_conda_spec.rb +4 -5
  251. data/spec/models/packages_validateupload_cran_spec.rb +4 -5
  252. data/spec/models/packages_validateupload_dart_spec.rb +4 -5
  253. data/spec/models/packages_validateupload_deb_spec.rb +7 -8
  254. data/spec/models/packages_validateupload_docker_spec.rb +4 -5
  255. data/spec/models/packages_validateupload_go_spec.rb +4 -5
  256. data/spec/models/packages_validateupload_helm_spec.rb +4 -5
  257. data/spec/models/packages_validateupload_luarocks_spec.rb +4 -5
  258. data/spec/models/packages_validateupload_maven_spec.rb +12 -13
  259. data/spec/models/packages_validateupload_npm_spec.rb +5 -6
  260. data/spec/models/packages_validateupload_nuget_spec.rb +5 -6
  261. data/spec/models/packages_validateupload_p2_spec.rb +4 -5
  262. data/spec/models/packages_validateupload_python_spec.rb +4 -5
  263. data/spec/models/packages_validateupload_raw_spec.rb +9 -10
  264. data/spec/models/packages_validateupload_rpm_spec.rb +5 -6
  265. data/spec/models/packages_validateupload_ruby_spec.rb +4 -5
  266. data/spec/models/packages_validateupload_terraform_spec.rb +4 -5
  267. data/spec/models/packages_validateupload_vagrant_spec.rb +7 -8
  268. data/spec/models/packagesownerrepo_architectures_spec.rb +3 -4
  269. data/spec/models/packagesownerrepo_files_spec.rb +15 -16
  270. data/spec/models/quota_history_history_spec.rb +7 -8
  271. data/spec/models/quota_history_spec.rb +2 -3
  272. data/spec/models/quota_spec.rb +2 -3
  273. data/spec/models/raw_package_upload_spec.rb +77 -66
  274. data/spec/models/repos_create_spec.rb +7 -8
  275. data/spec/models/repos_gpg_keys_spec.rb +8 -9
  276. data/spec/models/repos_partial_update_spec.rb +6 -7
  277. data/spec/models/repository_create_spec.rb +179 -0
  278. data/spec/models/repository_spec.rb +25 -26
  279. data/spec/models/repository_token_refresh_spec.rb +40 -41
  280. data/spec/models/repository_token_spec.rb +40 -41
  281. data/spec/models/repository_token_sync_spec.rb +2 -3
  282. data/spec/models/repository_token_sync_tokens_spec.rb +40 -41
  283. data/spec/models/repository_webhook_spec.rb +28 -29
  284. data/spec/models/resources_rate_check_spec.rb +2 -3
  285. data/spec/models/status_basic_spec.rb +3 -4
  286. data/spec/models/status_spec.rb +2 -3
  287. data/spec/models/storage_region_spec.rb +3 -4
  288. data/spec/models/user_auth_token_spec.rb +2 -3
  289. data/spec/models/user_brief_spec.rb +8 -9
  290. data/spec/models/user_profile_spec.rb +11 -12
  291. data/spec/models/user_token_create_spec.rb +3 -4
  292. data/spec/models/vagrant_package_upload_spec.rb +78 -67
  293. data/spec/models/vulnerability_scan_results_list_spec.rb +8 -9
  294. data/spec/models/vulnerability_scan_results_spec.rb +9 -10
  295. data/spec/models/webhooks_create_spec.rb +13 -14
  296. data/spec/models/webhooks_partial_update_spec.rb +13 -14
  297. data/spec/models/webhooksownerrepo_templates_spec.rb +3 -4
  298. data/spec/spec_helper.rb +1 -1
  299. data/vendor/bundle/ruby/2.6.0/cache/json-2.6.2.gem +0 -0
  300. data/vendor/bundle/ruby/2.6.0/cache/public_suffix-4.0.7.gem +0 -0
  301. data/vendor/bundle/ruby/2.6.0/cache/rake-12.3.3.gem +0 -0
  302. data/vendor/bundle/ruby/2.6.0/cache/rspec-mocks-3.11.1.gem +0 -0
  303. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.19/gem_make.out +1 -1
  304. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/gem_make.out +2 -2
  305. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{json-2.6.1 → json-2.6.2}/gem.build_complete +0 -0
  306. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{json-2.6.1 → json-2.6.2}/gem_make.out +5 -5
  307. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/json/ext/generator.so +0 -0
  308. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/json/ext/parser.so +0 -0
  309. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{json-2.6.1 → json-2.6.2}/mkmf.log +2 -2
  310. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +2 -2
  311. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/CHANGES.md +0 -0
  312. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/LICENSE +0 -0
  313. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/README.md +0 -0
  314. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/VERSION +1 -0
  315. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/Makefile +2 -2
  316. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/fbuffer/fbuffer.h +0 -0
  317. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/generator/.sitearchdir.-.json.-.ext.time +0 -0
  318. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/generator/Makefile +2 -2
  319. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/generator/depend +0 -0
  320. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/generator/extconf.rb +0 -0
  321. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/generator/generator.c +0 -0
  322. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/generator/generator.h +0 -0
  323. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/generator/generator.o +0 -0
  324. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/generator.so +0 -0
  325. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/parser/.sitearchdir.-.json.-.ext.time +0 -0
  326. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/parser/Makefile +2 -2
  327. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/parser/depend +0 -0
  328. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/parser/extconf.rb +0 -0
  329. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/parser/parser.c +9 -0
  330. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/parser/parser.h +0 -0
  331. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/parser/parser.o +0 -0
  332. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/ext/parser/parser.rl +9 -0
  333. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/parser.so +0 -0
  334. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/ext/json/extconf.rb +0 -0
  335. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/json.gemspec +0 -0
  336. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/bigdecimal.rb +0 -0
  337. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/complex.rb +0 -0
  338. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/core.rb +0 -0
  339. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/date.rb +0 -0
  340. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/date_time.rb +0 -0
  341. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/exception.rb +0 -0
  342. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/ostruct.rb +0 -0
  343. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/range.rb +0 -0
  344. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/rational.rb +0 -0
  345. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/regexp.rb +0 -0
  346. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/set.rb +0 -0
  347. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/struct.rb +0 -0
  348. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/symbol.rb +0 -0
  349. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/add/time.rb +0 -0
  350. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/common.rb +0 -0
  351. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/lib/json/ext/generator.so +0 -0
  352. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/lib/json/ext/parser.so +0 -0
  353. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/ext.rb +0 -0
  354. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/generic_object.rb +0 -0
  355. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/pure/generator.rb +0 -0
  356. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/pure/parser.rb +0 -0
  357. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/pure.rb +0 -0
  358. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json/version.rb +1 -1
  359. data/vendor/bundle/ruby/2.6.0/gems/{json-2.6.1 → json-2.6.2}/lib/json.rb +0 -0
  360. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/.github/FUNDING.yml +0 -0
  361. data/vendor/bundle/ruby/2.6.0/gems/public_suffix-4.0.7/.github/dependabot.yml +8 -0
  362. data/vendor/bundle/ruby/2.6.0/gems/public_suffix-4.0.7/.github/workflows/release.yml +16 -0
  363. data/vendor/bundle/ruby/2.6.0/gems/public_suffix-4.0.7/.github/workflows/tests.yml +28 -0
  364. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/.gitignore +0 -0
  365. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/.rubocop.yml +0 -0
  366. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/.rubocop_opinionated.yml +6 -0
  367. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/.yardopts +0 -0
  368. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/2.0-Upgrade.md +0 -0
  369. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/CHANGELOG.md +11 -0
  370. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/Gemfile +0 -1
  371. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/LICENSE.txt +1 -1
  372. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/README.md +12 -2
  373. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/Rakefile +1 -0
  374. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/SECURITY.md +0 -0
  375. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/bin/console +0 -0
  376. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/data/list.txt +1033 -378
  377. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/lib/public_suffix/domain.rb +1 -1
  378. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/lib/public_suffix/errors.rb +1 -1
  379. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/lib/public_suffix/list.rb +3 -3
  380. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/lib/public_suffix/rule.rb +11 -11
  381. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/lib/public_suffix/version.rb +5 -3
  382. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/lib/public_suffix.rb +11 -13
  383. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/public_suffix.gemspec +0 -0
  384. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/.empty +0 -0
  385. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/acceptance_test.rb +0 -0
  386. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/benchmarks/bm_find.rb +0 -0
  387. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/benchmarks/bm_find_all.rb +0 -0
  388. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/benchmarks/bm_names.rb +0 -0
  389. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/benchmarks/bm_select.rb +0 -0
  390. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/benchmarks/bm_select_incremental.rb +0 -0
  391. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/benchmarks/bm_valid.rb +0 -0
  392. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/profilers/domain_profiler.rb +0 -0
  393. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/profilers/find_profiler.rb +0 -0
  394. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/profilers/find_profiler_jp.rb +0 -0
  395. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/profilers/initialization_profiler.rb +0 -0
  396. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/profilers/list_profsize.rb +0 -0
  397. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/profilers/object_binsize.rb +0 -0
  398. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/psl_test.rb +0 -0
  399. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/test_helper.rb +0 -8
  400. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/tests.txt +0 -0
  401. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/unit/domain_test.rb +0 -0
  402. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/unit/errors_test.rb +0 -0
  403. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/unit/list_test.rb +0 -0
  404. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/unit/public_suffix_test.rb +0 -0
  405. data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.6 → public_suffix-4.0.7}/test/unit/rule_test.rb +0 -0
  406. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/CONTRIBUTING.rdoc +11 -4
  407. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/Gemfile +0 -0
  408. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/History.rdoc +107 -10
  409. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/MIT-LICENSE +0 -0
  410. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/README.rdoc +7 -7
  411. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/Rakefile +7 -4
  412. data/vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/azure-pipelines.yml +11 -0
  413. data/vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/bundle +105 -0
  414. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/bin/console +0 -0
  415. data/vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/rake +29 -0
  416. data/vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/rdoc +29 -0
  417. data/vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/rubocop +29 -0
  418. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/bin/setup +0 -0
  419. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/command_line_usage.rdoc +0 -0
  420. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/example/Rakefile1 +0 -0
  421. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/example/Rakefile2 +0 -0
  422. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/example/a.c +0 -0
  423. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/example/b.c +0 -0
  424. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/example/main.c +0 -0
  425. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/glossary.rdoc +0 -0
  426. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/jamis.rb +1 -0
  427. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/proto_rake.rdoc +0 -0
  428. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/rake.1 +0 -0
  429. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/rakefile.rdoc +1 -1
  430. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/doc/rational.rdoc +0 -0
  431. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/exe/rake +0 -0
  432. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/application.rb +54 -15
  433. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/backtrace.rb +1 -0
  434. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/clean.rb +1 -0
  435. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/cloneable.rb +1 -0
  436. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/cpu_counter.rb +2 -1
  437. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/default_loader.rb +1 -0
  438. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/dsl_definition.rb +4 -3
  439. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/early_time.rb +1 -0
  440. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/ext/core.rb +1 -0
  441. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/ext/string.rb +2 -1
  442. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/file_creation_task.rb +2 -1
  443. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/file_list.rb +5 -4
  444. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/file_task.rb +11 -3
  445. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/file_utils.rb +4 -3
  446. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/file_utils_ext.rb +1 -0
  447. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/invocation_chain.rb +1 -0
  448. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/invocation_exception_mixin.rb +1 -0
  449. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/late_time.rb +1 -0
  450. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/linked_list.rb +1 -0
  451. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/loaders/makefile.rb +1 -0
  452. data/vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/multi_task.rb +14 -0
  453. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/name_space.rb +1 -0
  454. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/packagetask.rb +3 -6
  455. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/phony.rb +1 -0
  456. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/private_reader.rb +1 -0
  457. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/promise.rb +3 -2
  458. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/pseudo_status.rb +1 -0
  459. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/rake_module.rb +29 -0
  460. data/vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/rake_test_loader.rb +27 -0
  461. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/rule_recursion_overflow_error.rb +1 -0
  462. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/scope.rb +2 -1
  463. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/task.rb +37 -14
  464. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/task_argument_error.rb +1 -0
  465. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/task_arguments.rb +1 -0
  466. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/task_manager.rb +28 -7
  467. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/tasklib.rb +1 -0
  468. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/testtask.rb +2 -0
  469. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/thread_history_display.rb +1 -0
  470. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/thread_pool.rb +1 -0
  471. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/trace_output.rb +1 -0
  472. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/version.rb +2 -1
  473. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake/win32.rb +1 -0
  474. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/lib/rake.rb +1 -0
  475. data/vendor/bundle/ruby/2.6.0/gems/{rake-12.0.0 → rake-12.3.3}/rake.gemspec +6 -3
  476. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/.document +0 -0
  477. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/.yardopts +0 -0
  478. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/Changelog.md +10 -1
  479. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/LICENSE.md +0 -0
  480. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/README.md +0 -0
  481. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance/chain.rb +0 -0
  482. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance/error_generator.rb +0 -0
  483. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance/expect_chain_chain.rb +0 -0
  484. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -0
  485. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance/message_chains.rb +0 -0
  486. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance/proxy.rb +0 -0
  487. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance/recorder.rb +0 -0
  488. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance/stub_chain.rb +0 -0
  489. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -0
  490. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/any_instance.rb +0 -0
  491. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/argument_list_matcher.rb +2 -1
  492. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/argument_matchers.rb +0 -0
  493. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/configuration.rb +0 -0
  494. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/error_generator.rb +0 -0
  495. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/example_methods.rb +0 -0
  496. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/instance_method_stasher.rb +0 -0
  497. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/marshal_extension.rb +0 -0
  498. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/matchers/expectation_customization.rb +0 -0
  499. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/matchers/have_received.rb +0 -0
  500. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/matchers/receive.rb +1 -1
  501. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/matchers/receive_message_chain.rb +0 -0
  502. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/matchers/receive_messages.rb +0 -0
  503. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/message_chain.rb +0 -0
  504. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/message_expectation.rb +13 -3
  505. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/method_double.rb +3 -0
  506. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/method_reference.rb +0 -0
  507. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/minitest_integration.rb +0 -0
  508. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/mutate_const.rb +0 -0
  509. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/object_reference.rb +0 -0
  510. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/order_group.rb +0 -0
  511. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/proxy.rb +6 -0
  512. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/space.rb +0 -0
  513. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/standalone.rb +0 -0
  514. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/syntax.rb +0 -0
  515. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/targets.rb +0 -0
  516. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/test_double.rb +0 -0
  517. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/verifying_double.rb +0 -0
  518. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/verifying_message_expectation.rb +0 -0
  519. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/verifying_proxy.rb +0 -0
  520. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks/version.rb +1 -1
  521. data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.11.0 → rspec-mocks-3.11.1}/lib/rspec/mocks.rb +0 -0
  522. data/vendor/bundle/ruby/2.6.0/specifications/{json-2.6.1.gemspec → json-2.6.2.gemspec} +0 -0
  523. data/vendor/bundle/ruby/2.6.0/specifications/{public_suffix-4.0.6.gemspec → public_suffix-4.0.7.gemspec} +4 -4
  524. data/vendor/bundle/ruby/2.6.0/specifications/{rake-12.0.0.gemspec → rake-12.3.3.gemspec} +10 -4
  525. data/vendor/bundle/ruby/2.6.0/specifications/{rspec-mocks-3.11.0.gemspec → rspec-mocks-3.11.1.gemspec} +5 -5
  526. metadata +259 -230
  527. data/vendor/bundle/ruby/2.6.0/cache/json-2.6.1.gem +0 -0
  528. data/vendor/bundle/ruby/2.6.0/cache/public_suffix-4.0.6.gem +0 -0
  529. data/vendor/bundle/ruby/2.6.0/cache/rake-12.0.0.gem +0 -0
  530. data/vendor/bundle/ruby/2.6.0/cache/rspec-mocks-3.11.0.gem +0 -0
  531. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.1/json/ext/generator.so +0 -0
  532. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.1/json/ext/parser.so +0 -0
  533. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/VERSION +0 -1
  534. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/generator/generator.so +0 -0
  535. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/parser/parser.so +0 -0
  536. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/ext/generator.so +0 -0
  537. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/ext/parser.so +0 -0
  538. data/vendor/bundle/ruby/2.6.0/gems/public_suffix-4.0.6/.github/workflows/tests.yml +0 -36
  539. data/vendor/bundle/ruby/2.6.0/gems/public_suffix-4.0.6/.travis.yml +0 -23
  540. data/vendor/bundle/ruby/2.6.0/gems/public_suffix-4.0.6/codecov.yml +0 -12
  541. data/vendor/bundle/ruby/2.6.0/gems/rake-12.0.0/.gitignore +0 -14
  542. data/vendor/bundle/ruby/2.6.0/gems/rake-12.0.0/.rubocop.yml +0 -57
  543. data/vendor/bundle/ruby/2.6.0/gems/rake-12.0.0/.travis.yml +0 -21
  544. data/vendor/bundle/ruby/2.6.0/gems/rake-12.0.0/appveyor.yml +0 -21
  545. data/vendor/bundle/ruby/2.6.0/gems/rake-12.0.0/lib/rake/multi_task.rb +0 -49
  546. data/vendor/bundle/ruby/2.6.0/gems/rake-12.0.0/lib/rake/rake_test_loader.rb +0 -21
@@ -6,14 +6,13 @@
6
6
  OpenAPI spec version: v1
7
7
  Contact: support@cloudsmith.io
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.2.3
9
+ Swagger Codegen version: 2.4.26
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module CloudsmithApi
16
-
17
16
  class ConanPackageUpload
18
17
  #
19
18
  attr_accessor :architectures
@@ -81,6 +80,12 @@ module CloudsmithApi
81
80
  #
82
81
  attr_accessor :indexed
83
82
 
83
+ #
84
+ attr_accessor :is_downloadable
85
+
86
+ #
87
+ attr_accessor :is_quarantined
88
+
84
89
  #
85
90
  attr_accessor :is_sync_awaiting
86
91
 
@@ -213,7 +218,6 @@ module CloudsmithApi
213
218
  #
214
219
  attr_accessor :vulnerability_scan_results_url
215
220
 
216
-
217
221
  # Attribute mapping from ruby-style variable name to JSON key.
218
222
  def self.attribute_map
219
223
  {
@@ -239,6 +243,8 @@ module CloudsmithApi
239
243
  :'format_url' => :'format_url',
240
244
  :'identifier_perm' => :'identifier_perm',
241
245
  :'indexed' => :'indexed',
246
+ :'is_downloadable' => :'is_downloadable',
247
+ :'is_quarantined' => :'is_quarantined',
242
248
  :'is_sync_awaiting' => :'is_sync_awaiting',
243
249
  :'is_sync_completed' => :'is_sync_completed',
244
250
  :'is_sync_failed' => :'is_sync_failed',
@@ -311,6 +317,8 @@ module CloudsmithApi
311
317
  :'format_url' => :'String',
312
318
  :'identifier_perm' => :'String',
313
319
  :'indexed' => :'BOOLEAN',
320
+ :'is_downloadable' => :'BOOLEAN',
321
+ :'is_quarantined' => :'BOOLEAN',
314
322
  :'is_sync_awaiting' => :'BOOLEAN',
315
323
  :'is_sync_completed' => :'BOOLEAN',
316
324
  :'is_sync_failed' => :'BOOLEAN',
@@ -321,7 +329,7 @@ module CloudsmithApi
321
329
  :'namespace' => :'String',
322
330
  :'namespace_url' => :'String',
323
331
  :'num_files' => :'Integer',
324
- :'package_type' => :'String',
332
+ :'package_type' => :'Integer',
325
333
  :'release' => :'String',
326
334
  :'repository' => :'String',
327
335
  :'repository_url' => :'String',
@@ -335,10 +343,10 @@ module CloudsmithApi
335
343
  :'size' => :'Integer',
336
344
  :'slug' => :'String',
337
345
  :'slug_perm' => :'String',
338
- :'stage' => :'String',
346
+ :'stage' => :'Integer',
339
347
  :'stage_str' => :'String',
340
348
  :'stage_updated_at' => :'String',
341
- :'status' => :'String',
349
+ :'status' => :'Integer',
342
350
  :'status_reason' => :'String',
343
351
  :'status_str' => :'String',
344
352
  :'status_updated_at' => :'String',
@@ -364,7 +372,7 @@ module CloudsmithApi
364
372
  return unless attributes.is_a?(Hash)
365
373
 
366
374
  # convert string to symbol for hash key
367
- attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
375
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
368
376
 
369
377
  if attributes.has_key?(:'architectures')
370
378
  if (value = attributes[:'architectures']).is_a?(Array)
@@ -458,6 +466,14 @@ module CloudsmithApi
458
466
  self.indexed = attributes[:'indexed']
459
467
  end
460
468
 
469
+ if attributes.has_key?(:'is_downloadable')
470
+ self.is_downloadable = attributes[:'is_downloadable']
471
+ end
472
+
473
+ if attributes.has_key?(:'is_quarantined')
474
+ self.is_quarantined = attributes[:'is_quarantined']
475
+ end
476
+
461
477
  if attributes.has_key?(:'is_sync_awaiting')
462
478
  self.is_sync_awaiting = attributes[:'is_sync_awaiting']
463
479
  end
@@ -633,20 +649,19 @@ module CloudsmithApi
633
649
  if attributes.has_key?(:'vulnerability_scan_results_url')
634
650
  self.vulnerability_scan_results_url = attributes[:'vulnerability_scan_results_url']
635
651
  end
636
-
637
652
  end
638
653
 
639
654
  # Show invalid properties with the reasons. Usually used together with valid?
640
- # @return Array for valid properies with the reasons
655
+ # @return Array for valid properties with the reasons
641
656
  def list_invalid_properties
642
657
  invalid_properties = Array.new
643
- return invalid_properties
658
+ invalid_properties
644
659
  end
645
660
 
646
661
  # Check to see if the all the properties in the model are valid
647
662
  # @return true if the model is valid
648
663
  def valid?
649
- return true
664
+ true
650
665
  end
651
666
 
652
667
  # Checks equality by comparing each attribute.
@@ -676,6 +691,8 @@ module CloudsmithApi
676
691
  format_url == o.format_url &&
677
692
  identifier_perm == o.identifier_perm &&
678
693
  indexed == o.indexed &&
694
+ is_downloadable == o.is_downloadable &&
695
+ is_quarantined == o.is_quarantined &&
679
696
  is_sync_awaiting == o.is_sync_awaiting &&
680
697
  is_sync_completed == o.is_sync_completed &&
681
698
  is_sync_failed == o.is_sync_failed &&
@@ -731,7 +748,7 @@ module CloudsmithApi
731
748
  # Calculates hash code according to all attributes.
732
749
  # @return [Fixnum] Hash code
733
750
  def hash
734
- [architectures, cdn_url, checksum_md5, checksum_sha1, checksum_sha256, checksum_sha512, conan_channel, conan_prefix, dependencies_checksum_md5, dependencies_url, description, distro, distro_version, downloads, epoch, extension, filename, files, format, format_url, identifier_perm, indexed, is_sync_awaiting, is_sync_completed, is_sync_failed, is_sync_in_flight, is_sync_in_progress, license, name, namespace, namespace_url, num_files, package_type, release, repository, repository_url, security_scan_completed_at, security_scan_started_at, security_scan_status, security_scan_status_updated_at, self_html_url, self_url, signature_url, size, slug, slug_perm, stage, stage_str, stage_updated_at, status, status_reason, status_str, status_updated_at, status_url, subtype, summary, sync_finished_at, sync_progress, tags_immutable, type_display, uploaded_at, uploader, uploader_url, version, version_orig, vulnerability_scan_results_url].hash
751
+ [architectures, cdn_url, checksum_md5, checksum_sha1, checksum_sha256, checksum_sha512, conan_channel, conan_prefix, dependencies_checksum_md5, dependencies_url, description, distro, distro_version, downloads, epoch, extension, filename, files, format, format_url, identifier_perm, indexed, is_downloadable, is_quarantined, is_sync_awaiting, is_sync_completed, is_sync_failed, is_sync_in_flight, is_sync_in_progress, license, name, namespace, namespace_url, num_files, package_type, release, repository, repository_url, security_scan_completed_at, security_scan_started_at, security_scan_status, security_scan_status_updated_at, self_html_url, self_url, signature_url, size, slug, slug_perm, stage, stage_str, stage_updated_at, status, status_reason, status_str, status_updated_at, status_url, subtype, summary, sync_finished_at, sync_progress, tags_immutable, type_display, uploaded_at, uploader, uploader_url, version, version_orig, vulnerability_scan_results_url].hash
735
752
  end
736
753
 
737
754
  # Builds the object from hash
@@ -741,10 +758,10 @@ module CloudsmithApi
741
758
  return nil unless attributes.is_a?(Hash)
742
759
  self.class.swagger_types.each_pair do |key, type|
743
760
  if type =~ /\AArray<(.*)>/i
744
- # check to ensure the input is an array given that the the attribute
761
+ # check to ensure the input is an array given that the attribute
745
762
  # is documented as an array but the input is not
746
763
  if attributes[self.class.attribute_map[key]].is_a?(Array)
747
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
764
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
748
765
  end
749
766
  elsif !attributes[self.class.attribute_map[key]].nil?
750
767
  self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
@@ -826,7 +843,7 @@ module CloudsmithApi
826
843
  # @return [Hash] Returns the value in the form of hash
827
844
  def _to_hash(value)
828
845
  if value.is_a?(Array)
829
- value.compact.map{ |v| _to_hash(v) }
846
+ value.compact.map { |v| _to_hash(v) }
830
847
  elsif value.is_a?(Hash)
831
848
  {}.tap do |hash|
832
849
  value.each { |k, v| hash[k] = _to_hash(v) }
@@ -839,5 +856,4 @@ module CloudsmithApi
839
856
  end
840
857
 
841
858
  end
842
-
843
859
  end
@@ -6,14 +6,13 @@
6
6
  OpenAPI spec version: v1
7
7
  Contact: support@cloudsmith.io
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.2.3
9
+ Swagger Codegen version: 2.4.26
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module CloudsmithApi
16
-
17
16
  class Distribution
18
17
  #
19
18
  attr_accessor :format
@@ -36,7 +35,6 @@ module CloudsmithApi
36
35
  # A list of the versions for this distribution
37
36
  attr_accessor :versions
38
37
 
39
-
40
38
  # Attribute mapping from ruby-style variable name to JSON key.
41
39
  def self.attribute_map
42
40
  {
@@ -69,7 +67,7 @@ module CloudsmithApi
69
67
  return unless attributes.is_a?(Hash)
70
68
 
71
69
  # convert string to symbol for hash key
72
- attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
70
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
73
71
 
74
72
  if attributes.has_key?(:'format')
75
73
  self.format = attributes[:'format']
@@ -100,25 +98,24 @@ module CloudsmithApi
100
98
  self.versions = value
101
99
  end
102
100
  end
103
-
104
101
  end
105
102
 
106
103
  # Show invalid properties with the reasons. Usually used together with valid?
107
- # @return Array for valid properies with the reasons
104
+ # @return Array for valid properties with the reasons
108
105
  def list_invalid_properties
109
106
  invalid_properties = Array.new
110
107
  if @name.nil?
111
- invalid_properties.push("invalid value for 'name', name cannot be nil.")
108
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
112
109
  end
113
110
 
114
- return invalid_properties
111
+ invalid_properties
115
112
  end
116
113
 
117
114
  # Check to see if the all the properties in the model are valid
118
115
  # @return true if the model is valid
119
116
  def valid?
120
117
  return false if @name.nil?
121
- return true
118
+ true
122
119
  end
123
120
 
124
121
  # Checks equality by comparing each attribute.
@@ -154,10 +151,10 @@ module CloudsmithApi
154
151
  return nil unless attributes.is_a?(Hash)
155
152
  self.class.swagger_types.each_pair do |key, type|
156
153
  if type =~ /\AArray<(.*)>/i
157
- # check to ensure the input is an array given that the the attribute
154
+ # check to ensure the input is an array given that the attribute
158
155
  # is documented as an array but the input is not
159
156
  if attributes[self.class.attribute_map[key]].is_a?(Array)
160
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
157
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
161
158
  end
162
159
  elsif !attributes[self.class.attribute_map[key]].nil?
163
160
  self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
@@ -239,7 +236,7 @@ module CloudsmithApi
239
236
  # @return [Hash] Returns the value in the form of hash
240
237
  def _to_hash(value)
241
238
  if value.is_a?(Array)
242
- value.compact.map{ |v| _to_hash(v) }
239
+ value.compact.map { |v| _to_hash(v) }
243
240
  elsif value.is_a?(Hash)
244
241
  {}.tap do |hash|
245
242
  value.each { |k, v| hash[k] = _to_hash(v) }
@@ -252,5 +249,4 @@ module CloudsmithApi
252
249
  end
253
250
 
254
251
  end
255
-
256
252
  end
@@ -6,14 +6,13 @@
6
6
  OpenAPI spec version: v1
7
7
  Contact: support@cloudsmith.io
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.2.3
9
+ Swagger Codegen version: 2.4.26
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module CloudsmithApi
16
-
17
16
  class DistrosVersions
18
17
  # The textual name for this version.
19
18
  attr_accessor :name
@@ -21,7 +20,6 @@ module CloudsmithApi
21
20
  # The slug identifier for this version
22
21
  attr_accessor :slug
23
22
 
24
-
25
23
  # Attribute mapping from ruby-style variable name to JSON key.
26
24
  def self.attribute_map
27
25
  {
@@ -44,7 +42,7 @@ module CloudsmithApi
44
42
  return unless attributes.is_a?(Hash)
45
43
 
46
44
  # convert string to symbol for hash key
47
- attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
45
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
48
46
 
49
47
  if attributes.has_key?(:'name')
50
48
  self.name = attributes[:'name']
@@ -53,20 +51,19 @@ module CloudsmithApi
53
51
  if attributes.has_key?(:'slug')
54
52
  self.slug = attributes[:'slug']
55
53
  end
56
-
57
54
  end
58
55
 
59
56
  # Show invalid properties with the reasons. Usually used together with valid?
60
- # @return Array for valid properies with the reasons
57
+ # @return Array for valid properties with the reasons
61
58
  def list_invalid_properties
62
59
  invalid_properties = Array.new
63
- return invalid_properties
60
+ invalid_properties
64
61
  end
65
62
 
66
63
  # Check to see if the all the properties in the model are valid
67
64
  # @return true if the model is valid
68
65
  def valid?
69
- return true
66
+ true
70
67
  end
71
68
 
72
69
  # Checks equality by comparing each attribute.
@@ -97,10 +94,10 @@ module CloudsmithApi
97
94
  return nil unless attributes.is_a?(Hash)
98
95
  self.class.swagger_types.each_pair do |key, type|
99
96
  if type =~ /\AArray<(.*)>/i
100
- # check to ensure the input is an array given that the the attribute
97
+ # check to ensure the input is an array given that the attribute
101
98
  # is documented as an array but the input is not
102
99
  if attributes[self.class.attribute_map[key]].is_a?(Array)
103
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
100
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
104
101
  end
105
102
  elsif !attributes[self.class.attribute_map[key]].nil?
106
103
  self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
@@ -182,7 +179,7 @@ module CloudsmithApi
182
179
  # @return [Hash] Returns the value in the form of hash
183
180
  def _to_hash(value)
184
181
  if value.is_a?(Array)
185
- value.compact.map{ |v| _to_hash(v) }
182
+ value.compact.map { |v| _to_hash(v) }
186
183
  elsif value.is_a?(Hash)
187
184
  {}.tap do |hash|
188
185
  value.each { |k, v| hash[k] = _to_hash(v) }
@@ -195,5 +192,4 @@ module CloudsmithApi
195
192
  end
196
193
 
197
194
  end
198
-
199
195
  end
@@ -6,19 +6,17 @@
6
6
  OpenAPI spec version: v1
7
7
  Contact: support@cloudsmith.io
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.2.3
9
+ Swagger Codegen version: 2.4.26
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module CloudsmithApi
16
-
17
16
  class EntitlementUsageMetrics
18
17
  #
19
18
  attr_accessor :tokens
20
19
 
21
-
22
20
  # Attribute mapping from ruby-style variable name to JSON key.
23
21
  def self.attribute_map
24
22
  {
@@ -39,30 +37,29 @@ module CloudsmithApi
39
37
  return unless attributes.is_a?(Hash)
40
38
 
41
39
  # convert string to symbol for hash key
42
- attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
40
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
43
41
 
44
42
  if attributes.has_key?(:'tokens')
45
43
  self.tokens = attributes[:'tokens']
46
44
  end
47
-
48
45
  end
49
46
 
50
47
  # Show invalid properties with the reasons. Usually used together with valid?
51
- # @return Array for valid properies with the reasons
48
+ # @return Array for valid properties with the reasons
52
49
  def list_invalid_properties
53
50
  invalid_properties = Array.new
54
51
  if @tokens.nil?
55
- invalid_properties.push("invalid value for 'tokens', tokens cannot be nil.")
52
+ invalid_properties.push('invalid value for "tokens", tokens cannot be nil.')
56
53
  end
57
54
 
58
- return invalid_properties
55
+ invalid_properties
59
56
  end
60
57
 
61
58
  # Check to see if the all the properties in the model are valid
62
59
  # @return true if the model is valid
63
60
  def valid?
64
61
  return false if @tokens.nil?
65
- return true
62
+ true
66
63
  end
67
64
 
68
65
  # Checks equality by comparing each attribute.
@@ -92,10 +89,10 @@ module CloudsmithApi
92
89
  return nil unless attributes.is_a?(Hash)
93
90
  self.class.swagger_types.each_pair do |key, type|
94
91
  if type =~ /\AArray<(.*)>/i
95
- # check to ensure the input is an array given that the the attribute
92
+ # check to ensure the input is an array given that the attribute
96
93
  # is documented as an array but the input is not
97
94
  if attributes[self.class.attribute_map[key]].is_a?(Array)
98
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
95
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
99
96
  end
100
97
  elsif !attributes[self.class.attribute_map[key]].nil?
101
98
  self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
@@ -177,7 +174,7 @@ module CloudsmithApi
177
174
  # @return [Hash] Returns the value in the form of hash
178
175
  def _to_hash(value)
179
176
  if value.is_a?(Array)
180
- value.compact.map{ |v| _to_hash(v) }
177
+ value.compact.map { |v| _to_hash(v) }
181
178
  elsif value.is_a?(Hash)
182
179
  {}.tap do |hash|
183
180
  value.each { |k, v| hash[k] = _to_hash(v) }
@@ -190,5 +187,4 @@ module CloudsmithApi
190
187
  end
191
188
 
192
189
  end
193
-
194
190
  end
@@ -6,14 +6,13 @@
6
6
  OpenAPI spec version: v1
7
7
  Contact: support@cloudsmith.io
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.2.3
9
+ Swagger Codegen version: 2.4.26
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module CloudsmithApi
16
-
17
16
  class EntitlementsCreate
18
17
  # If checked, a EULA acceptance is required for this token.
19
18
  attr_accessor :eula_required
@@ -60,7 +59,6 @@ module CloudsmithApi
60
59
  # None
61
60
  attr_accessor :token
62
61
 
63
-
64
62
  # Attribute mapping from ruby-style variable name to JSON key.
65
63
  def self.attribute_map
66
64
  {
@@ -109,7 +107,7 @@ module CloudsmithApi
109
107
  return unless attributes.is_a?(Hash)
110
108
 
111
109
  # convert string to symbol for hash key
112
- attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
110
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
113
111
 
114
112
  if attributes.has_key?(:'eula_required')
115
113
  self.eula_required = attributes[:'eula_required']
@@ -170,25 +168,24 @@ module CloudsmithApi
170
168
  if attributes.has_key?(:'token')
171
169
  self.token = attributes[:'token']
172
170
  end
173
-
174
171
  end
175
172
 
176
173
  # Show invalid properties with the reasons. Usually used together with valid?
177
- # @return Array for valid properies with the reasons
174
+ # @return Array for valid properties with the reasons
178
175
  def list_invalid_properties
179
176
  invalid_properties = Array.new
180
177
  if @name.nil?
181
- invalid_properties.push("invalid value for 'name', name cannot be nil.")
178
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
182
179
  end
183
180
 
184
- return invalid_properties
181
+ invalid_properties
185
182
  end
186
183
 
187
184
  # Check to see if the all the properties in the model are valid
188
185
  # @return true if the model is valid
189
186
  def valid?
190
187
  return false if @name.nil?
191
- return true
188
+ true
192
189
  end
193
190
 
194
191
  # Checks equality by comparing each attribute.
@@ -232,10 +229,10 @@ module CloudsmithApi
232
229
  return nil unless attributes.is_a?(Hash)
233
230
  self.class.swagger_types.each_pair do |key, type|
234
231
  if type =~ /\AArray<(.*)>/i
235
- # check to ensure the input is an array given that the the attribute
232
+ # check to ensure the input is an array given that the attribute
236
233
  # is documented as an array but the input is not
237
234
  if attributes[self.class.attribute_map[key]].is_a?(Array)
238
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
235
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
239
236
  end
240
237
  elsif !attributes[self.class.attribute_map[key]].nil?
241
238
  self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
@@ -317,7 +314,7 @@ module CloudsmithApi
317
314
  # @return [Hash] Returns the value in the form of hash
318
315
  def _to_hash(value)
319
316
  if value.is_a?(Array)
320
- value.compact.map{ |v| _to_hash(v) }
317
+ value.compact.map { |v| _to_hash(v) }
321
318
  elsif value.is_a?(Hash)
322
319
  {}.tap do |hash|
323
320
  value.each { |k, v| hash[k] = _to_hash(v) }
@@ -330,5 +327,4 @@ module CloudsmithApi
330
327
  end
331
328
 
332
329
  end
333
-
334
330
  end
@@ -6,14 +6,13 @@
6
6
  OpenAPI spec version: v1
7
7
  Contact: support@cloudsmith.io
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.2.3
9
+ Swagger Codegen version: 2.4.26
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module CloudsmithApi
16
-
17
16
  class EntitlementsPartialUpdate
18
17
  # If checked, a EULA acceptance is required for this token.
19
18
  attr_accessor :eula_required
@@ -60,7 +59,6 @@ module CloudsmithApi
60
59
  # None
61
60
  attr_accessor :token
62
61
 
63
-
64
62
  # Attribute mapping from ruby-style variable name to JSON key.
65
63
  def self.attribute_map
66
64
  {
@@ -109,7 +107,7 @@ module CloudsmithApi
109
107
  return unless attributes.is_a?(Hash)
110
108
 
111
109
  # convert string to symbol for hash key
112
- attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
110
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
113
111
 
114
112
  if attributes.has_key?(:'eula_required')
115
113
  self.eula_required = attributes[:'eula_required']
@@ -170,20 +168,19 @@ module CloudsmithApi
170
168
  if attributes.has_key?(:'token')
171
169
  self.token = attributes[:'token']
172
170
  end
173
-
174
171
  end
175
172
 
176
173
  # Show invalid properties with the reasons. Usually used together with valid?
177
- # @return Array for valid properies with the reasons
174
+ # @return Array for valid properties with the reasons
178
175
  def list_invalid_properties
179
176
  invalid_properties = Array.new
180
- return invalid_properties
177
+ invalid_properties
181
178
  end
182
179
 
183
180
  # Check to see if the all the properties in the model are valid
184
181
  # @return true if the model is valid
185
182
  def valid?
186
- return true
183
+ true
187
184
  end
188
185
 
189
186
  # Checks equality by comparing each attribute.
@@ -227,10 +224,10 @@ module CloudsmithApi
227
224
  return nil unless attributes.is_a?(Hash)
228
225
  self.class.swagger_types.each_pair do |key, type|
229
226
  if type =~ /\AArray<(.*)>/i
230
- # check to ensure the input is an array given that the the attribute
227
+ # check to ensure the input is an array given that the attribute
231
228
  # is documented as an array but the input is not
232
229
  if attributes[self.class.attribute_map[key]].is_a?(Array)
233
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
230
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
234
231
  end
235
232
  elsif !attributes[self.class.attribute_map[key]].nil?
236
233
  self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
@@ -312,7 +309,7 @@ module CloudsmithApi
312
309
  # @return [Hash] Returns the value in the form of hash
313
310
  def _to_hash(value)
314
311
  if value.is_a?(Array)
315
- value.compact.map{ |v| _to_hash(v) }
312
+ value.compact.map { |v| _to_hash(v) }
316
313
  elsif value.is_a?(Hash)
317
314
  {}.tap do |hash|
318
315
  value.each { |k, v| hash[k] = _to_hash(v) }
@@ -325,5 +322,4 @@ module CloudsmithApi
325
322
  end
326
323
 
327
324
  end
328
-
329
325
  end
@@ -6,14 +6,13 @@
6
6
  OpenAPI spec version: v1
7
7
  Contact: support@cloudsmith.io
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.2.3
9
+ Swagger Codegen version: 2.4.26
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module CloudsmithApi
16
-
17
16
  class EntitlementsRefresh
18
17
  # If checked, a EULA acceptance is required for this token.
19
18
  attr_accessor :eula_required
@@ -57,7 +56,6 @@ module CloudsmithApi
57
56
  # None
58
57
  attr_accessor :token
59
58
 
60
-
61
59
  # Attribute mapping from ruby-style variable name to JSON key.
62
60
  def self.attribute_map
63
61
  {
@@ -104,7 +102,7 @@ module CloudsmithApi
104
102
  return unless attributes.is_a?(Hash)
105
103
 
106
104
  # convert string to symbol for hash key
107
- attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
105
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
108
106
 
109
107
  if attributes.has_key?(:'eula_required')
110
108
  self.eula_required = attributes[:'eula_required']
@@ -161,20 +159,19 @@ module CloudsmithApi
161
159
  if attributes.has_key?(:'token')
162
160
  self.token = attributes[:'token']
163
161
  end
164
-
165
162
  end
166
163
 
167
164
  # Show invalid properties with the reasons. Usually used together with valid?
168
- # @return Array for valid properies with the reasons
165
+ # @return Array for valid properties with the reasons
169
166
  def list_invalid_properties
170
167
  invalid_properties = Array.new
171
- return invalid_properties
168
+ invalid_properties
172
169
  end
173
170
 
174
171
  # Check to see if the all the properties in the model are valid
175
172
  # @return true if the model is valid
176
173
  def valid?
177
- return true
174
+ true
178
175
  end
179
176
 
180
177
  # Checks equality by comparing each attribute.
@@ -217,10 +214,10 @@ module CloudsmithApi
217
214
  return nil unless attributes.is_a?(Hash)
218
215
  self.class.swagger_types.each_pair do |key, type|
219
216
  if type =~ /\AArray<(.*)>/i
220
- # check to ensure the input is an array given that the the attribute
217
+ # check to ensure the input is an array given that the attribute
221
218
  # is documented as an array but the input is not
222
219
  if attributes[self.class.attribute_map[key]].is_a?(Array)
223
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
220
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
224
221
  end
225
222
  elsif !attributes[self.class.attribute_map[key]].nil?
226
223
  self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
@@ -302,7 +299,7 @@ module CloudsmithApi
302
299
  # @return [Hash] Returns the value in the form of hash
303
300
  def _to_hash(value)
304
301
  if value.is_a?(Array)
305
- value.compact.map{ |v| _to_hash(v) }
302
+ value.compact.map { |v| _to_hash(v) }
306
303
  elsif value.is_a?(Hash)
307
304
  {}.tap do |hash|
308
305
  value.each { |k, v| hash[k] = _to_hash(v) }
@@ -315,5 +312,4 @@ module CloudsmithApi
315
312
  end
316
313
 
317
314
  end
318
-
319
315
  end