cloudsmith-api 0.30.7 → 0.44.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +24 -24
- data/README.md +75 -19
- data/build.json +1 -1
- data/docs/BadgesApi.md +88 -0
- data/docs/DistrosApi.md +7 -15
- data/docs/EntitlementsApi.md +13 -51
- data/docs/EntitlementsCreate.md +1 -1
- data/docs/EntitlementsRefresh.md +1 -1
- data/docs/FilesAbort.md +11 -0
- data/docs/FilesApi.md +212 -15
- data/docs/FilesComplete.md +11 -0
- data/docs/FilesCreate.md +3 -1
- data/docs/FilesValidate.md +3 -1
- data/docs/FormatsApi.md +3 -11
- data/docs/MavenPackageUpload.md +1 -1
- data/docs/NamespacesApi.md +3 -11
- data/docs/OrgsApi.md +3 -11
- data/docs/Package.md +1 -1
- data/docs/PackageCopy.md +1 -1
- data/docs/PackageFilePartsUpload.md +10 -0
- data/docs/PackageFileUpload.md +3 -1
- data/docs/PackageMove.md +1 -1
- data/docs/PackagesApi.md +1380 -271
- data/docs/PackagesCopy.md +1 -0
- data/docs/PackagesMove.md +1 -0
- data/docs/PackagesResync.md +8 -0
- data/docs/PackagesUploadAlpine.md +10 -0
- data/docs/PackagesUploadCargo.md +9 -0
- data/docs/PackagesUploadComposer.md +1 -0
- data/docs/PackagesUploadCran.md +9 -0
- data/docs/PackagesUploadDeb.md +1 -0
- data/docs/PackagesUploadDocker.md +9 -0
- data/docs/PackagesUploadGo.md +9 -0
- data/docs/PackagesUploadHelm.md +9 -0
- data/docs/PackagesUploadLuarocks.md +9 -0
- data/docs/PackagesUploadMaven.md +2 -1
- data/docs/PackagesUploadNpm.md +10 -0
- data/docs/PackagesUploadNuget.md +10 -0
- data/docs/PackagesUploadPython.md +1 -0
- data/docs/PackagesUploadRaw.md +4 -1
- data/docs/PackagesUploadRpm.md +1 -0
- data/docs/PackagesUploadRuby.md +1 -0
- data/docs/PackagesUploadVagrant.md +2 -1
- data/docs/PackagesValidateuploadAlpine.md +10 -0
- data/docs/PackagesValidateuploadCargo.md +9 -0
- data/docs/PackagesValidateuploadComposer.md +1 -0
- data/docs/PackagesValidateuploadCran.md +9 -0
- data/docs/PackagesValidateuploadDeb.md +1 -0
- data/docs/PackagesValidateuploadDocker.md +9 -0
- data/docs/PackagesValidateuploadGo.md +9 -0
- data/docs/PackagesValidateuploadHelm.md +9 -0
- data/docs/PackagesValidateuploadLuarocks.md +9 -0
- data/docs/PackagesValidateuploadMaven.md +2 -1
- data/docs/PackagesValidateuploadNpm.md +10 -0
- data/docs/PackagesValidateuploadNuget.md +10 -0
- data/docs/PackagesValidateuploadPython.md +1 -0
- data/docs/PackagesValidateuploadRaw.md +4 -1
- data/docs/PackagesValidateuploadRpm.md +1 -0
- data/docs/PackagesValidateuploadRuby.md +1 -0
- data/docs/PackagesValidateuploadVagrant.md +2 -1
- data/docs/RatesApi.md +2 -6
- data/docs/RawPackageUpload.md +1 -1
- data/docs/ReposApi.md +14 -26
- data/docs/RepositoryToken.md +3 -3
- data/docs/RepositoryTokenRefresh.md +3 -3
- data/docs/RepositoryTokenSyncTokens.md +2 -2
- data/docs/StatusApi.md +1 -1
- data/docs/UserApi.md +3 -11
- data/docs/UsersApi.md +2 -6
- data/docs/VagrantPackageUpload.md +1 -1
- data/docs/WebhooksApi.md +6 -26
- data/lib/cloudsmith-api.rb +23 -0
- data/lib/cloudsmith-api/api/badges_api.rb +109 -0
- data/lib/cloudsmith-api/api/distros_api.rb +6 -6
- data/lib/cloudsmith-api/api/entitlements_api.rb +13 -10
- data/lib/cloudsmith-api/api/files_api.rb +202 -6
- data/lib/cloudsmith-api/api/formats_api.rb +2 -2
- data/lib/cloudsmith-api/api/namespaces_api.rb +2 -2
- data/lib/cloudsmith-api/api/orgs_api.rb +2 -2
- data/lib/cloudsmith-api/api/packages_api.rb +1296 -203
- data/lib/cloudsmith-api/api/rates_api.rb +1 -1
- data/lib/cloudsmith-api/api/repos_api.rb +14 -14
- data/lib/cloudsmith-api/api/user_api.rb +2 -2
- data/lib/cloudsmith-api/api/users_api.rb +1 -1
- data/lib/cloudsmith-api/api/webhooks_api.rb +5 -5
- data/lib/cloudsmith-api/configuration.rb +1 -1
- data/lib/cloudsmith-api/models/entitlements_create.rb +0 -5
- data/lib/cloudsmith-api/models/entitlements_refresh.rb +0 -5
- data/lib/cloudsmith-api/models/files_abort.rb +224 -0
- data/lib/cloudsmith-api/models/files_complete.rb +224 -0
- data/lib/cloudsmith-api/models/files_create.rb +25 -10
- data/lib/cloudsmith-api/models/files_validate.rb +25 -10
- data/lib/cloudsmith-api/models/maven_package_upload.rb +1 -1
- data/lib/cloudsmith-api/models/package.rb +1 -1
- data/lib/cloudsmith-api/models/package_copy.rb +1 -1
- data/lib/cloudsmith-api/models/package_file_parts_upload.rb +209 -0
- data/lib/cloudsmith-api/models/package_file_upload.rb +22 -2
- data/lib/cloudsmith-api/models/package_move.rb +1 -1
- data/lib/cloudsmith-api/models/packages_copy.rb +14 -4
- data/lib/cloudsmith-api/models/packages_move.rb +14 -4
- data/lib/cloudsmith-api/models/packages_resync.rb +189 -0
- data/lib/cloudsmith-api/models/packages_upload_alpine.rb +219 -0
- data/lib/cloudsmith-api/models/packages_upload_cargo.rb +204 -0
- data/lib/cloudsmith-api/models/packages_upload_composer.rb +14 -4
- data/lib/cloudsmith-api/models/packages_upload_cran.rb +204 -0
- data/lib/cloudsmith-api/models/packages_upload_deb.rb +14 -4
- data/lib/cloudsmith-api/models/packages_upload_docker.rb +204 -0
- data/lib/cloudsmith-api/models/packages_upload_go.rb +204 -0
- data/lib/cloudsmith-api/models/packages_upload_helm.rb +204 -0
- data/lib/cloudsmith-api/models/packages_upload_luarocks.rb +204 -0
- data/lib/cloudsmith-api/models/packages_upload_maven.rb +12 -2
- data/lib/cloudsmith-api/models/packages_upload_npm.rb +214 -0
- data/lib/cloudsmith-api/models/packages_upload_nuget.rb +214 -0
- data/lib/cloudsmith-api/models/packages_upload_python.rb +14 -4
- data/lib/cloudsmith-api/models/packages_upload_raw.rb +32 -2
- data/lib/cloudsmith-api/models/packages_upload_rpm.rb +14 -4
- data/lib/cloudsmith-api/models/packages_upload_ruby.rb +14 -4
- data/lib/cloudsmith-api/models/packages_upload_vagrant.rb +12 -2
- data/lib/cloudsmith-api/models/packages_validateupload_alpine.rb +219 -0
- data/lib/cloudsmith-api/models/packages_validateupload_cargo.rb +204 -0
- data/lib/cloudsmith-api/models/packages_validateupload_composer.rb +14 -4
- data/lib/cloudsmith-api/models/packages_validateupload_cran.rb +204 -0
- data/lib/cloudsmith-api/models/packages_validateupload_deb.rb +14 -4
- data/lib/cloudsmith-api/models/packages_validateupload_docker.rb +204 -0
- data/lib/cloudsmith-api/models/packages_validateupload_go.rb +204 -0
- data/lib/cloudsmith-api/models/packages_validateupload_helm.rb +204 -0
- data/lib/cloudsmith-api/models/packages_validateupload_luarocks.rb +204 -0
- data/lib/cloudsmith-api/models/packages_validateupload_maven.rb +12 -2
- data/lib/cloudsmith-api/models/packages_validateupload_npm.rb +214 -0
- data/lib/cloudsmith-api/models/packages_validateupload_nuget.rb +214 -0
- data/lib/cloudsmith-api/models/packages_validateupload_python.rb +14 -4
- data/lib/cloudsmith-api/models/packages_validateupload_raw.rb +32 -2
- data/lib/cloudsmith-api/models/packages_validateupload_rpm.rb +14 -4
- data/lib/cloudsmith-api/models/packages_validateupload_ruby.rb +14 -4
- data/lib/cloudsmith-api/models/packages_validateupload_vagrant.rb +12 -2
- data/lib/cloudsmith-api/models/raw_package_upload.rb +1 -1
- data/lib/cloudsmith-api/models/repository_token.rb +2 -7
- data/lib/cloudsmith-api/models/repository_token_refresh.rb +2 -7
- data/lib/cloudsmith-api/models/repository_token_sync_tokens.rb +2 -2
- data/lib/cloudsmith-api/models/vagrant_package_upload.rb +1 -1
- data/lib/cloudsmith-api/version.rb +1 -1
- data/spec/api/badges_api_spec.rb +54 -0
- data/spec/api/distros_api_spec.rb +2 -2
- data/spec/api/entitlements_api_spec.rb +1 -0
- data/spec/api/files_api_spec.rb +46 -2
- data/spec/api/packages_api_spec.rb +255 -2
- data/spec/api/repos_api_spec.rb +4 -4
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/files_abort_spec.rb +60 -0
- data/spec/models/files_complete_spec.rb +60 -0
- data/spec/models/files_create_spec.rb +12 -0
- data/spec/models/files_validate_spec.rb +12 -0
- data/spec/models/package_file_parts_upload_spec.rb +54 -0
- data/spec/models/package_file_upload_spec.rb +12 -0
- data/spec/models/packages_copy_spec.rb +6 -0
- data/spec/models/packages_move_spec.rb +6 -0
- data/spec/models/packages_resync_spec.rb +42 -0
- data/spec/models/packages_upload_alpine_spec.rb +54 -0
- data/spec/models/packages_upload_cargo_spec.rb +48 -0
- data/spec/models/packages_upload_composer_spec.rb +6 -0
- data/spec/models/packages_upload_cran_spec.rb +48 -0
- data/spec/models/packages_upload_deb_spec.rb +6 -0
- data/spec/models/packages_upload_docker_spec.rb +48 -0
- data/spec/models/packages_upload_go_spec.rb +48 -0
- data/spec/models/packages_upload_helm_spec.rb +48 -0
- data/spec/models/packages_upload_luarocks_spec.rb +48 -0
- data/spec/models/packages_upload_maven_spec.rb +6 -0
- data/spec/models/packages_upload_npm_spec.rb +54 -0
- data/spec/models/packages_upload_nuget_spec.rb +54 -0
- data/spec/models/packages_upload_python_spec.rb +6 -0
- data/spec/models/packages_upload_raw_spec.rb +18 -0
- data/spec/models/packages_upload_rpm_spec.rb +6 -0
- data/spec/models/packages_upload_ruby_spec.rb +6 -0
- data/spec/models/packages_upload_vagrant_spec.rb +6 -0
- data/spec/models/packages_validateupload_alpine_spec.rb +54 -0
- data/spec/models/packages_validateupload_cargo_spec.rb +48 -0
- data/spec/models/packages_validateupload_composer_spec.rb +6 -0
- data/spec/models/packages_validateupload_cran_spec.rb +48 -0
- data/spec/models/packages_validateupload_deb_spec.rb +6 -0
- data/spec/models/packages_validateupload_docker_spec.rb +48 -0
- data/spec/models/packages_validateupload_go_spec.rb +48 -0
- data/spec/models/packages_validateupload_helm_spec.rb +48 -0
- data/spec/models/packages_validateupload_luarocks_spec.rb +48 -0
- data/spec/models/packages_validateupload_maven_spec.rb +6 -0
- data/spec/models/packages_validateupload_npm_spec.rb +54 -0
- data/spec/models/packages_validateupload_nuget_spec.rb +54 -0
- data/spec/models/packages_validateupload_python_spec.rb +6 -0
- data/spec/models/packages_validateupload_raw_spec.rb +18 -0
- data/spec/models/packages_validateupload_rpm_spec.rb +6 -0
- data/spec/models/packages_validateupload_ruby_spec.rb +6 -0
- data/spec/models/packages_validateupload_vagrant_spec.rb +6 -0
- data/vendor/bundle/ruby/2.3.0/cache/ZenTest-4.11.2.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/addressable-2.7.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/autotest-fsevent-0.2.14.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/ethon-0.12.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/ffi-1.11.1.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/hashdiff-1.0.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/json-2.2.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/public_suffix-4.0.1.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-3.8.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-core-3.8.2.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-expectations-3.8.4.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-mocks-3.8.1.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-support-3.8.2.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/safe_yaml-1.0.5.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/sys-uname-1.1.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/typhoeus-1.3.1.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/autotest-fsevent-0.2.14/gem_make.out +14 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/ffi-1.11.1/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/{ffi-1.9.25 → ffi-1.11.1}/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/ffi-1.11.1/gem_make.out +48 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/ffi-1.11.1/mkmf.log +378 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/{json-2.1.0 → json-2.2.0}/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/json-2.2.0/gem_make.out +13 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/json-2.2.0/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/json-2.2.0/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/{json-2.1.0 → json-2.2.0}/mkmf.log +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/.autotest +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ZenTest-4.11.2/History.txt +939 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/Manifest.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/README.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ZenTest-4.11.2/Rakefile +54 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/articles/Article.css +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/articles/getting_started_with_autotest.html +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/articles/how_to_use_zentest.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/bin/autotest +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/bin/multigem +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/bin/multiruby +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/bin/multiruby_setup +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/bin/unit_diff +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/bin/zentest +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/example.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/example1.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/example2.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/example_dot_autotest.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/autotest.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/autotest/autoupdate.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/autotest/bundler.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/autotest/isolate.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/autotest/once.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/autotest/preload.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/autotest/rcov.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/autotest/restart.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/autotest/timestamp.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/focus.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/functional_test_matrix.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/multiruby.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/unit_diff.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ZenTest-4.11.2/lib/zentest.rb +601 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/lib/zentest_mapping.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/test/test_autotest.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/test/test_focus.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/test/test_unit_diff.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/test/test_zentest.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ZenTest-4.11.1 → ZenTest-4.11.2}/test/test_zentest_mapping.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/CHANGELOG.md +235 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/Gemfile +32 -0
- data/vendor/bundle/ruby/2.3.0/gems/{addressable-2.5.2 → addressable-2.7.0}/LICENSE.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/README.md +121 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/Rakefile +34 -0
- data/vendor/bundle/ruby/2.3.0/gems/{addressable-2.5.2 → addressable-2.7.0}/data/unicode.data +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/lib/addressable.rb +4 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/lib/addressable/idna.rb +27 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/lib/addressable/idna/native.rb +61 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/lib/addressable/idna/pure.rb +676 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/lib/addressable/template.rb +1045 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/lib/addressable/uri.rb +2529 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/lib/addressable/version.rb +32 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/spec/addressable/idna_spec.rb +300 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/spec/addressable/net_http_compat_spec.rb +30 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/spec/addressable/rack_mount_compat_spec.rb +106 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/spec/addressable/security_spec.rb +59 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/spec/addressable/template_spec.rb +1451 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/spec/addressable/uri_spec.rb +6603 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/spec/spec_helper.rb +24 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/tasks/clobber.rake +4 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/tasks/gem.rake +93 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/tasks/git.rake +47 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/tasks/metrics.rake +24 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/tasks/rspec.rake +23 -0
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.7.0/tasks/yard.rake +29 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.14/.ruby-version +1 -0
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.14/CHANGELOG.txt +106 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/Gemfile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.14/Gemfile.lock +40 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/PostInstall.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/README.rdoc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/autotest-fsevent.gemspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/ext/fsevent/Makefile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.14/ext/fsevent/extconf.rb +40 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/ext/fsevent/fsevent.dll +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/ext/fsevent/fsevent.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/ext/fsevent/fsevent_sleep.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/ext/fsevent/make +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/ext/fsevent/nmake.bat +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/lib/autotest-fsevent.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.14/lib/autotest-fsevent/version.rb +5 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/lib/autotest/fsevent.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/prebuilt/10.7/fsevent_sleep +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/spec/autotest-fsevent_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{autotest-fsevent-0.2.13 → autotest-fsevent-0.2.14}/spec/spec_helper.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.12.0/.gitignore +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/.rspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.12.0/.travis.yml +30 -0
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.12.0/CHANGELOG.md +365 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/Gemfile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/Guardfile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/README.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/ethon.gemspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/curl.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/curls/classes.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/curls/codes.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/curls/constants.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/curls/form_options.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/curls/functions.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/curls/infos.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/curls/messages.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.12.0/lib/ethon/curls/options.rb +468 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/curls/settings.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/callbacks.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/debug_info.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/features.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/form.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/header.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/actionable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/custom.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/delete.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/get.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/head.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/options.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/patch.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/post.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/postable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/put.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/http/putable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/informations.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/mirror.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/operations.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/options.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/params.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.12.0/lib/ethon/easy/queryable.rb +153 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/response_callbacks.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/easy/util.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors/ethon_error.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors/global_init.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors/invalid_option.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors/invalid_value.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors/multi_add.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors/multi_fdset.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors/multi_remove.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors/multi_timeout.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/errors/select.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/libc.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/loggable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/multi.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/multi/operations.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.12.0/lib/ethon/multi/options.rb +116 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/lib/ethon/multi/stack.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.12.0/lib/ethon/version.rb +5 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/profile/benchmarks.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/profile/memory_leaks.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/profile/perf_spec_helper.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/profile/support/memory_test_helpers.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/profile/support/os_memory_leak_tracker.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/profile/support/ruby_object_leak_tracker.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/curl_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/callbacks_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/debug_info_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/features_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/form_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/header_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/http/custom_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/http/delete_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/http/get_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/http/head_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/http/options_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/http/patch_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/http/post_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/http/put_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/http_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/informations_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/mirror_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/operations_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.12.0/spec/ethon/easy/options_spec.rb +192 -0
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.12.0/spec/ethon/easy/queryable_spec.rb +234 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/response_callbacks_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy/util_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/easy_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/libc_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/loggable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/multi/operations_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/multi/options_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/multi/stack_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/ethon/multi_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/spec_helper.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/support/localhost_server.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ethon-0.11.0 → ethon-0.12.0}/spec/support/server.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/.gitignore +25 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/.gitmodules +4 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/.travis.yml +42 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/CHANGELOG.md +131 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/COPYING +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/Gemfile +15 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/LICENSE.SPECS +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/README.md +115 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/Rakefile +195 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/appveyor.yml +27 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/.RUBYARCHDIR.time +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/AbstractMemory.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/AbstractMemory.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/ArrayType.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/ArrayType.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/Buffer.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Call.c +503 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Call.h +107 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/ClosurePool.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/ClosurePool.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/DynamicLibrary.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/DynamicLibrary.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Function.c +917 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/Function.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/FunctionInfo.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/LastError.c +229 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/LastError.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/LongDouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/LongDouble.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Makefile +260 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/MappedType.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/MappedType.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/MemoryPointer.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/MemoryPointer.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/MethodHandle.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/MethodHandle.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Platform.c +82 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/Platform.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/Pointer.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/Pointer.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/Struct.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/Struct.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/StructByValue.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/StructByValue.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/StructLayout.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Thread.c +137 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Thread.h +84 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Type.c +379 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Type.h +61 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/Types.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/Types.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Variadic.c +298 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/compat.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/extconf.h +13 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/extconf.rb +86 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/ffi.c +93 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi.bsd.mk +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi.darwin.mk +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi.gnu.mk +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi.mk +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi.vc.mk +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi.vc64.mk +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.appveyor.yml +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.github/issue_template.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.gitignore +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.travis.yml +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.travis/ar-lib +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.travis/build.sh +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.travis/compile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.travis/install.sh +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.travis/moxie-sim.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/.travis/site.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/ChangeLog.libffi +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/ChangeLog.libffi-3.1 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/ChangeLog.libgcj +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/ChangeLog.v1 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/LICENSE +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/Makefile.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/README.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/acinclude.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/autogen.sh +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/config.guess +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/config.sub +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/configure +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/configure.ac +394 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/configure.host +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/doc/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/doc/Makefile.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/doc/libffi.texi +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/doc/version.texi +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/fficonfig.h.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/include/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/include/Makefile.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/include/ffi.h.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/include/ffi_cfi.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/include/ffi_common.h +149 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/install-sh +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/libffi.map.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/libffi.pc.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/libtool-ldflags +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/libtool-version +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/ltmain.sh +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/man/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/man/Makefile.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/man/ffi.3 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/man/ffi_call.3 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/missing +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/msvcc.sh +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/aarch64/ffi.c +941 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/aarch64/internal.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/alpha/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/alpha/internal.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/alpha/osf.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/arc/arcompact.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/arc/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/arm/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/arm/internal.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/arm/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/avr32/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/avr32/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/bfin/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/bfin/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/closures.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/cris/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/cris/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/debug.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/dlmalloc.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/frv/eabi.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/ia64/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/ia64/unix.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/java_raw_api.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/m32r/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/m32r/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/m68k/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/m68k/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/m88k/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/m88k/obsd.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/metag/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/mips/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/mips/n32.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/mips/o32.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/moxie/eabi.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/moxie/ffi.c +285 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/nios2/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/nios2/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/or1k/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/or1k/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/pa/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/pa/hpux32.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/pa/linux.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/aix.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/asm.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/prep_cif.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/raw_api.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/riscv/ffi.c +481 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/riscv/ffitarget.h +69 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/riscv/sysv.S +293 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/s390/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/s390/internal.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/s390/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sh/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sh/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sh64/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sh64/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sparc/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sparc/internal.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sparc/v8.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/sparc/v9.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/tile/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/tile/tile.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/types.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/vax/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/x86/asmnames.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/ffi.c +754 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/x86/ffi64.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/ffiw64.c +308 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/x86/internal.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/x86/internal64.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/sysv.S +1129 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/unix64.S +566 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/x86/win64.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/stamp-h.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/Makefile.in +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/config/default.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/closure_simple.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ext/ffi_c/rbffi.h +55 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/rbffi_endian.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/win32/stdbool.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/ext/ffi_c/win32/stdint.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/ffi.gemspec +43 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/autopointer.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/buffer.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/callback.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/data_converter.rb +67 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/enum.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/errno.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/ffi.rb +45 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/io.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/library.rb +588 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/managedstruct.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/memorypointer.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/platform.rb +172 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/platform/aarch64-freebsd12/types.conf +128 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/aarch64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25/lib/ffi/platform/i386-freebsd → ffi-1.11.1/lib/ffi/platform/arm-freebsd}/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/arm-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/i386-cygwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/i386-darwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/i386-gnu/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/i386-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/i386-netbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/i386-openbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/i386-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/i386-windows/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/ia64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/mips-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/mips64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/mips64el-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/mipsel-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/powerpc-aix/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/powerpc-darwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/powerpc-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/powerpc64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/s390-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/s390x-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/sparc-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/sparc-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/sparc64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/sparcv9-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/x86_64-cygwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/x86_64-darwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/platform/x86_64-freebsd12/types.conf +128 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/x86_64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25/lib/ffi/platform/x86_64-freebsd → ffi-1.11.1/lib/ffi/platform/x86_64-netbsd}/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/x86_64-openbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/x86_64-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/platform/x86_64-windows/types.conf +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/pointer.rb +160 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/struct.rb +311 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/struct_by_reference.rb +72 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/struct_layout.rb +96 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/struct_layout_builder.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/tools/const_generator.rb +230 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/tools/generator.rb +105 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/tools/generator_task.rb +32 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/tools/struct_generator.rb +194 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/tools/types_generator.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/types.rb +194 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/union.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/lib/ffi/variadic.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi/version.rb +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.11.1/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/samples/getlogin.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/samples/getpid.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/samples/gettimeofday.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/samples/hello.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/samples/inotify.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/samples/pty.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/samples/qsort.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{ffi-1.9.25 → ffi-1.11.1}/samples/sample_helper.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{hashdiff-0.3.7 → hashdiff-1.0.0}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{hashdiff-0.3.7 → hashdiff-1.0.0}/.rspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/.rubocop.yml +28 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/.travis.yml +11 -0
- data/vendor/bundle/ruby/2.3.0/gems/{hashdiff-0.3.7 → hashdiff-1.0.0}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/Gemfile +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/{hashdiff-0.3.7 → hashdiff-1.0.0}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/README.md +272 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/Rakefile +18 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/changelog.md +96 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/hashdiff.gemspec +39 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/lib/hashdiff.rb +10 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/lib/hashdiff/compare_hashes.rb +56 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/lib/hashdiff/diff.rb +174 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/lib/hashdiff/lcs.rb +66 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/lib/hashdiff/lcs_compare_arrays.rb +32 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/lib/hashdiff/linear_compare_array.rb +159 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/lib/hashdiff/patch.rb +88 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/lib/hashdiff/util.rb +154 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/lib/hashdiff/version.rb +5 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/spec/hashdiff/best_diff_spec.rb +75 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/spec/hashdiff/diff_array_spec.rb +60 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/spec/hashdiff/diff_spec.rb +355 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/spec/hashdiff/lcs_spec.rb +76 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/spec/hashdiff/linear_compare_array_spec.rb +50 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/spec/hashdiff/patch_spec.rb +185 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/spec/hashdiff/util_spec.rb +95 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-1.0.0/spec/spec_helper.rb +15 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/.travis.yml +23 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/CHANGES.md +391 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/Gemfile +14 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/README-json-jruby.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/README.md +409 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/Rakefile +408 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/VERSION +1 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/diagrams/.keep +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/Makefile +196 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/ext/fbuffer/fbuffer.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/ext/generator/.RUBYARCHDIR.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/ext/generator/Makefile +261 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/ext/generator/depend +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/ext/generator/extconf.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/ext/generator/generator.c +1444 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/ext/generator/generator.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/ext/generator/generator.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/ext/parser/.RUBYARCHDIR.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/ext/parser/Makefile +261 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/ext/parser/depend +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/ext/parser/extconf.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/ext/parser/parser.c +2131 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/ext/parser/parser.h +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/ext/parser/parser.rl +891 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/ext/json/ext/parser/parser.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/ext/json/extconf.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/install.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/ByteListTranscoder.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/Generator.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/GeneratorMethods.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/GeneratorService.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/GeneratorState.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/OptionsReader.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/java/src/json/ext/Parser.java +2362 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/java/src/json/ext/Parser.rl +893 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/ParserService.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/RuntimeInfo.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/StringDecoder.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/StringEncoder.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/java/src/json/ext/Utils.java +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/json-java.gemspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/json.gemspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/json_pure.gemspec +38 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/bigdecimal.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/complex.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/core.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/date.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/date_time.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/exception.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/lib/json/add/ostruct.rb +31 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/range.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/rational.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/regexp.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/lib/json/add/set.rb +29 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/struct.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/symbol.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/add/time.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/common.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/ext.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/ext/.keep +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/generic_object.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/pure.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/pure/generator.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/lib/json/pure/parser.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/lib/json/version.rb +9 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/references/rfc7159.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail10.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail11.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail12.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail13.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail14.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail18.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail19.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail2.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail20.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail21.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail22.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail23.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail24.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail25.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail27.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail28.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail3.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail4.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail5.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail6.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail7.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail8.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/fail9.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/obsolete_fail1.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/pass1.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/pass15.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/pass16.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/pass17.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/pass2.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/pass26.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/fixtures/pass3.json +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/tests/json_addition_test.rb +203 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/json_common_interface_test.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/json_encoding_test.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/json_ext_parser_test.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/json_fixtures_test.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/json_generator_test.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/json_generic_object_test.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/tests/json_parser_test.rb +472 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tests/json_string_matching_test.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.2.0/tests/test_helper.rb +17 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tools/diff.sh +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tools/fuzz.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{json-2.1.0 → json-2.2.0}/tools/server.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/.github/FUNDING.yml +12 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/.rubocop.yml +36 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/.rubocop_defaults.yml +179 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/.ruby-gemset +1 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/.travis.yml +25 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/2.0-Upgrade.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/CHANGELOG.md +365 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/Gemfile +12 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/README.md +202 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/Rakefile +51 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/bin/console +15 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/data/list.txt +13001 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/lib/public_suffix.rb +179 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/lib/public_suffix/domain.rb +235 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/lib/public_suffix/errors.rb +41 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/lib/public_suffix/list.rb +247 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/lib/public_suffix/rule.rb +350 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/lib/public_suffix/version.rb +13 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/public_suffix.gemspec +25 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/.empty +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/test/acceptance_test.rb +129 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/benchmarks/bm_find.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/benchmarks/bm_find_all.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/benchmarks/bm_names.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/benchmarks/bm_select.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/benchmarks/bm_select_incremental.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/benchmarks/bm_valid.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/profilers/domain_profiler.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/profilers/find_profiler.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/profilers/find_profiler_jp.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/profilers/initialization_profiler.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/profilers/list_profsize.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/profilers/object_binsize.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/test/psl_test.rb +52 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/test/test_helper.rb +18 -0
- data/vendor/bundle/ruby/2.3.0/gems/{public_suffix-3.0.2 → public_suffix-4.0.1}/test/tests.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/test/unit/domain_test.rb +106 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/test/unit/errors_test.rb +25 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/test/unit/list_test.rb +241 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/test/unit/public_suffix_test.rb +188 -0
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-4.0.1/test/unit/rule_test.rb +222 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-3.7.0 → rspec-3.8.0}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-3.8.0/README.md +43 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-3.7.0 → rspec-3.8.0}/lib/rspec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-3.8.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/.document +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/Changelog.md +2243 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/README.md +384 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/exe/rspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/autorun.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/backtrace_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/bisect/coordinator.rb +62 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/bisect/example_minimizer.rb +173 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/bisect/fork_runner.rb +134 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/bisect/server.rb +61 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/bisect/shell_command.rb +126 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/bisect/shell_runner.rb +73 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/bisect/utilities.rb +58 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb +2308 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/configuration_options.rb +233 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/drb.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/dsl.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb +656 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb +889 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/example_status_persister.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/filter_manager.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/flat_map.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/formatters.rb +269 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/base_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/base_text_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/console_codes.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/documentation_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/formatters/exception_presenter.rb +508 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/fallback_message_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/helpers.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/html_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/formatters/html_printer.rb +414 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/html_snippet_extractor.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/json_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/profile_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/progress_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/formatters/protocol.rb +182 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/formatters/snippet_extractor.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb +624 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/invocations.rb +87 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/memoized_helpers.rb +554 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/metadata.rb +498 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/metadata_filter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/minitest_assertions_adapter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/mocking_adapters/flexmock.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/mocking_adapters/mocha.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/mocking_adapters/null.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/mocking_adapters/rr.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/mocking_adapters/rspec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/notifications.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/option_parser.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/ordering.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/output_wrapper.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/pending.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/profiler.rb +34 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/project_initializer.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/project_initializer/.rspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/project_initializer/spec/spec_helper.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/rake_task.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/reporter.rb +257 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/ruby_project.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb +199 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/sandbox.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/set.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/shared_context.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/shared_example_group.rb +269 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/shell_escape.rb +49 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/test_unit_assertions_adapter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-core-3.7.1 → rspec-core-3.8.2}/lib/rspec/core/warnings.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.8.2/lib/rspec/core/world.rb +275 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/.document +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/Changelog.md +1141 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/README.md +305 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/expectations.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/expectations/configuration.rb +215 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/expectations/expectation_target.rb +127 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/expectations/fail_with.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/expectations/failure_aggregator.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/expectations/handler.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/expectations/minitest_integration.rb +58 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/expectations/syntax.rb +132 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb +1034 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/aliased_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/all.rb +86 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/base_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/be.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/be_between.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/be_within.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/change.rb +428 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/compound.rb +271 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/cover.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/eq.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/eql.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/equal.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/exist.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/has.rb +103 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/have_attributes.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/include.rb +149 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/match.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/operators.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/output.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/raise_error.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/respond_to.rb +165 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/satisfy.rb +60 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/start_or_end_with.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/throw_symbol.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/built_in/yield.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/composable.rb +171 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/dsl.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/english_phrasing.rb +58 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/fail_matchers.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.8.4/lib/rspec/matchers/generated_descriptions.rb +41 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/matcher_delegator.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-expectations-3.7.0 → rspec-expectations-3.8.4}/lib/rspec/matchers/matcher_protocol.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/.document +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/Changelog.md +1108 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/README.md +460 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/any_instance.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/any_instance/chain.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/any_instance/error_generator.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/any_instance/expect_chain_chain.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/any_instance/message_chains.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/any_instance/proxy.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/recorder.rb +289 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/argument_list_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/argument_matchers.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/configuration.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/error_generator.rb +369 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/example_methods.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/instance_method_stasher.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/marshal_extension.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/matchers/expectation_customization.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/matchers/have_received.rb +134 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/matchers/receive.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/matchers/receive_message_chain.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/matchers/receive_messages.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/message_chain.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb +741 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/method_double.rb +287 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/method_reference.rb +202 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/minitest_integration.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/mutate_const.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/object_reference.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/order_group.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/proxy.rb +485 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/space.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/standalone.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/syntax.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/targets.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/test_double.rb +171 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/verifying_double.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/verifying_message_expectation.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-mocks-3.7.0 → rspec-mocks-3.8.1}/lib/rspec/mocks/verifying_proxy.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.8.1/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.8.2/Changelog.md +262 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.8.2/README.md +40 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/caller_filter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/comparable_version.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.8.2/lib/rspec/support/differ.rb +215 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/directory_maker.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/encoded_string.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/fuzzy_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/hunk_generator.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/matcher_definition.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.8.2/lib/rspec/support/method_signature_verifier.rb +428 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/mutex.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.8.2/lib/rspec/support/object_formatter.rb +275 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/recursive_const_methods.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/reentrant_mutex.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.8.2/lib/rspec/support/ruby_features.rb +176 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/source.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/source/location.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/source/node.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/source/token.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/spec/deprecation_helpers.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/spec/formatting_support.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/spec/in_sub_process.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/spec/library_wide_checks.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.8.2/lib/rspec/support/spec/shell_out.rb +89 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/spec/stderr_splitter.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/spec/string_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/spec/with_isolated_directory.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/spec/with_isolated_stderr.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.8.2/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/ruby/2.3.0/gems/{rspec-support-3.7.1 → rspec-support-3.8.2}/lib/rspec/support/warnings.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.5/.gitignore +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/.travis.yml +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.5/CHANGES.md +154 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/Gemfile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/LICENSE.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/README.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/bin/safe_yaml +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/bundle_install_all_ruby_versions.sh +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/deep.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/libyaml_checker.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/load.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/date.rb +37 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/parse/hexadecimal.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/parse/sexagesimal.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/psych_handler.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/psych_resolver.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/resolver.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/safe_to_ruby_visitor.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.5/lib/safe_yaml/store.rb +39 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/syck_hack.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/syck_node_monkeypatch.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/syck_resolver.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/transform.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/transform/to_boolean.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/transform/to_date.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/transform/to_float.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/transform/to_integer.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/transform/to_nil.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/transform/to_symbol.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/lib/safe_yaml/transform/transformation_map.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.5/lib/safe_yaml/version.rb +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/run_specs_all_ruby_versions.sh +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/safe_yaml.gemspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/exploit.1.9.2.yaml +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/exploit.1.9.3.yaml +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/issue48.txt +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/issue49.yml +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/libyaml_checker_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/psych_resolver_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/resolver_specs.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/safe_yaml_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/spec_helper.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.5/spec/store_spec.rb +57 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/support/exploitable_back_door.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/syck_resolver_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/transform/base64_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/transform/to_date_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/transform/to_float_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/transform/to_integer_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/transform/to_symbol_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{safe_yaml-1.0.4 → safe_yaml-1.0.5}/spec/yaml_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.1.0/CHANGES +211 -0
- data/vendor/bundle/ruby/2.3.0/gems/{sys-uname-1.0.3 → sys-uname-1.1.0}/MANIFEST +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{sys-uname-1.0.3 → sys-uname-1.1.0}/README +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{sys-uname-1.0.3 → sys-uname-1.1.0}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.1.0/certs/djberg96_pub.pem +26 -0
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.1.0/doc/uname.txt +127 -0
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.1.0/examples/uname_test.rb +42 -0
- data/vendor/bundle/ruby/2.3.0/gems/{sys-uname-1.0.3 → sys-uname-1.1.0}/lib/sys-uname.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{sys-uname-1.0.3 → sys-uname-1.1.0}/lib/sys/platform.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.1.0/lib/sys/uname.rb +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/{sys-uname-1.0.3 → sys-uname-1.1.0}/lib/sys/unix/uname.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{sys-uname-1.0.3 → sys-uname-1.1.0}/lib/sys/windows/uname.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.1.0/sys-uname.gemspec +35 -0
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.1.0/test/test_sys_platform.rb +80 -0
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.1.0/test/test_sys_uname.rb +464 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/.rspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/.travis.yml +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/CHANGELOG.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/CONTRIBUTING.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/Gemfile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/Guardfile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/README.md +581 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/UPGRADE.md +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/rack/typhoeus.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/rack/typhoeus/middleware/params_decoder.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/rack/typhoeus/middleware/params_decoder/helper.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/adapters/faraday.rb +180 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/cache/dalli.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/cache/rails.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/cache/redis.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/config.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/easy_factory.rb +180 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/errors.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/errors/no_stub.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/errors/typhoeus_error.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/expectation.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/hydra.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/hydra/addable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/hydra/before.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/hydra/block_connection.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/hydra/cacheable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/hydra/memoizable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/hydra/queueable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/hydra/runnable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/hydra/stubbable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/pool.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/railtie.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/request.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/request/actions.rb +125 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/request/before.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/request/block_connection.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/request/cacheable.rb +34 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/request/callbacks.rb +151 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/request/marshal.rb +22 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/request/memoizable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/request/operations.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/request/responseable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/request/streamable.rb +34 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/request/stubbable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/response.rb +68 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/response/cacheable.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/response/header.rb +105 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/lib/typhoeus/response/informations.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/response/status.rb +106 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/version.rb +5 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/perf/profile.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/perf/vs_nethttp.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/rack/typhoeus/middleware/params_decoder/helper_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/rack/typhoeus/middleware/params_decoder_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/spec_helper.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/support/localhost_server.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/support/memory_cache.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/support/server.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/adapters/faraday_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/cache/dalli_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/cache/redis_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/config_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/spec/typhoeus/easy_factory_spec.rb +143 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/errors/no_stub_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/expectation_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/hydra/addable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/hydra/before_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/hydra/block_connection_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/hydra/cacheable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/hydra/memoizable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/hydra/queueable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/hydra/runnable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/hydra/stubbable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/hydra_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/pool_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/request/actions_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/request/before_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/request/block_connection_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/spec/typhoeus/request/cacheable_spec.rb +94 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/spec/typhoeus/request/callbacks_spec.rb +91 -0
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/spec/typhoeus/request/marshal_spec.rb +60 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/request/memoizable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/request/operations_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/request/responseable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/request/stubbable_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/request_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/response/header_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/response/informations_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/response/status_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus/response_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/spec/typhoeus_spec.rb +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/{typhoeus-1.3.0 → typhoeus-1.3.1}/typhoeus.gemspec +0 -0
- data/vendor/bundle/ruby/2.3.0/specifications/ZenTest-4.11.2.gemspec +40 -0
- data/vendor/bundle/ruby/2.3.0/specifications/addressable-2.7.0.gemspec +39 -0
- data/vendor/bundle/ruby/2.3.0/specifications/autotest-fsevent-0.2.14.gemspec +45 -0
- data/vendor/bundle/ruby/2.3.0/specifications/ethon-0.12.0.gemspec +32 -0
- data/vendor/bundle/ruby/2.3.0/specifications/ffi-1.11.1.gemspec +50 -0
- data/vendor/bundle/ruby/2.3.0/specifications/hashdiff-1.0.0.gemspec +46 -0
- data/vendor/bundle/ruby/2.3.0/specifications/json-2.2.0.gemspec +0 -0
- data/vendor/bundle/ruby/2.3.0/specifications/public_suffix-4.0.1.gemspec +41 -0
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-3.8.0.gemspec +42 -0
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-core-3.8.2.gemspec +63 -0
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-expectations-3.8.4.gemspec +51 -0
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-mocks-3.8.1.gemspec +51 -0
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-support-3.8.2.gemspec +39 -0
- data/vendor/bundle/ruby/2.3.0/specifications/safe_yaml-1.0.5.gemspec +23 -0
- data/vendor/bundle/ruby/2.3.0/specifications/sys-uname-1.1.0.gemspec +36 -0
- data/vendor/bundle/ruby/2.3.0/specifications/typhoeus-1.3.1.gemspec +32 -0
- metadata +1464 -1360
- data/vendor/bundle/ruby/2.3.0/cache/ZenTest-4.11.1.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/addressable-2.5.2.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/autotest-fsevent-0.2.13.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/ethon-0.11.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/ffi-1.9.25.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/hashdiff-0.3.7.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/json-2.1.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/public_suffix-3.0.2.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-3.7.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-core-3.7.1.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-expectations-3.7.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-mocks-3.7.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/rspec-support-3.7.1.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/safe_yaml-1.0.4.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/sys-uname-1.0.3.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/cache/typhoeus-1.3.0.gem +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/autotest-fsevent-0.2.13/gem_make.out +0 -14
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/ffi-1.9.25/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/ffi-1.9.25/gem_make.out +0 -51
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/ffi-1.9.25/mkmf.log +0 -417
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/json-2.1.0/gem_make.out +0 -13
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/json-2.1.0/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/json-2.1.0/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ZenTest-4.11.1/History.txt +0 -933
- data/vendor/bundle/ruby/2.3.0/gems/ZenTest-4.11.1/Rakefile +0 -54
- data/vendor/bundle/ruby/2.3.0/gems/ZenTest-4.11.1/lib/zentest.rb +0 -601
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/CHANGELOG.md +0 -216
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/Gemfile +0 -32
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/README.md +0 -121
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/Rakefile +0 -32
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/lib/addressable.rb +0 -2
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/lib/addressable/idna.rb +0 -25
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/lib/addressable/idna/native.rb +0 -59
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/lib/addressable/idna/pure.rb +0 -677
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/lib/addressable/template.rb +0 -1065
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/lib/addressable/uri.rb +0 -2492
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/lib/addressable/version.rb +0 -30
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/spec/addressable/idna_spec.rb +0 -298
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/spec/addressable/net_http_compat_spec.rb +0 -28
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/spec/addressable/rack_mount_compat_spec.rb +0 -104
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/spec/addressable/security_spec.rb +0 -57
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/spec/addressable/template_spec.rb +0 -1419
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/spec/addressable/uri_spec.rb +0 -6468
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/spec/spec_helper.rb +0 -21
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/tasks/clobber.rake +0 -2
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/tasks/gem.rake +0 -91
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/tasks/git.rake +0 -45
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/tasks/metrics.rake +0 -22
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/tasks/rspec.rake +0 -21
- data/vendor/bundle/ruby/2.3.0/gems/addressable-2.5.2/tasks/yard.rake +0 -27
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.13/.ruby-version +0 -1
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.13/CHANGELOG.txt +0 -101
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.13/Gemfile.lock +0 -40
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.13/ext/fsevent/extconf.rb +0 -41
- data/vendor/bundle/ruby/2.3.0/gems/autotest-fsevent-0.2.13/lib/autotest-fsevent/version.rb +0 -5
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.11.0/.gitignore +0 -7
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.11.0/.travis.yml +0 -28
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.11.0/CHANGELOG.md +0 -357
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.11.0/lib/ethon/curls/options.rb +0 -465
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.11.0/lib/ethon/easy/queryable.rb +0 -151
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.11.0/lib/ethon/multi/options.rb +0 -116
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.11.0/lib/ethon/version.rb +0 -5
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.11.0/spec/ethon/easy/options_spec.rb +0 -192
- data/vendor/bundle/ruby/2.3.0/gems/ethon-0.11.0/spec/ethon/easy/queryable_spec.rb +0 -226
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/.gitignore +0 -22
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/.gitmodules +0 -3
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/.travis.yml +0 -52
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/CHANGELOG.md +0 -74
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/Gemfile +0 -15
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/README.md +0 -112
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/Rakefile +0 -268
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/appveyor.yml +0 -22
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Call.c +0 -520
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Call.h +0 -110
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/DataConverter.c +0 -91
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/DataConverter.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Function.c +0 -1001
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/LastError.c +0 -184
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Makefile +0 -260
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Platform.c +0 -129
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/StructByReference.c +0 -190
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/StructByReference.h +0 -50
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/StructByReference.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Thread.c +0 -353
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Thread.h +0 -95
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Type.c +0 -397
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Type.h +0 -62
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Variadic.c +0 -304
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/extconf.h +0 -13
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/extconf.rb +0 -72
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/ffi.c +0 -98
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/configure.ac +0 -390
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/include/ffi_common.h +0 -149
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -941
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/frv/ffi.c +0 -292
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/metag/ffi.c +0 -330
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/moxie/ffi.c +0 -285
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/riscv/ffi.c +0 -445
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -68
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/riscv/sysv.S +0 -214
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/x86/ffi.c +0 -753
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -308
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/x86/sysv.S +0 -1043
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/libffi/src/x86/unix64.S +0 -525
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ext/ffi_c/rbffi.h +0 -57
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/ffi.gemspec +0 -36
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/ffi.rb +0 -44
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/library.rb +0 -588
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/platform.rb +0 -164
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/platform/x86_64-netbsd/types.conf +0 -128
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/pointer.rb +0 -161
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/struct.rb +0 -371
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/tools/const_generator.rb +0 -229
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/tools/generator.rb +0 -60
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/tools/generator_task.rb +0 -36
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/tools/struct_generator.rb +0 -194
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/types.rb +0 -194
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi/version.rb +0 -3
- data/vendor/bundle/ruby/2.3.0/gems/ffi-1.9.25/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/.travis.yml +0 -13
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/Gemfile +0 -6
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/README.md +0 -265
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/Rakefile +0 -13
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/changelog.md +0 -72
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/hashdiff.gemspec +0 -25
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/lib/hashdiff.rb +0 -6
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/lib/hashdiff/diff.rb +0 -232
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/lib/hashdiff/lcs.rb +0 -69
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/lib/hashdiff/linear_compare_array.rb +0 -155
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/lib/hashdiff/patch.rb +0 -88
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/lib/hashdiff/util.rb +0 -146
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/lib/hashdiff/version.rb +0 -3
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/spec/hashdiff/best_diff_spec.rb +0 -74
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/spec/hashdiff/diff_array_spec.rb +0 -60
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/spec/hashdiff/diff_spec.rb +0 -339
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/spec/hashdiff/lcs_spec.rb +0 -75
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/spec/hashdiff/linear_compare_array_spec.rb +0 -48
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/spec/hashdiff/patch_spec.rb +0 -183
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/spec/hashdiff/util_spec.rb +0 -78
- data/vendor/bundle/ruby/2.3.0/gems/hashdiff-0.3.7/spec/spec_helper.rb +0 -13
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/.travis.yml +0 -19
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/CHANGES.md +0 -388
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/Gemfile +0 -16
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/README.md +0 -392
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/Rakefile +0 -408
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/VERSION +0 -1
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/data/example.json +0 -1
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/data/index.html +0 -38
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/data/prototype.js +0 -4184
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/Makefile +0 -196
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/ext/generator/Makefile +0 -261
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/ext/generator/generator.c +0 -1443
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/ext/generator/generator.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/ext/parser/Makefile +0 -261
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/ext/parser/parser.c +0 -2109
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/ext/parser/parser.rl +0 -869
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/ext/json/ext/parser/parser.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/java/src/json/ext/Parser.java +0 -2362
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/java/src/json/ext/Parser.rl +0 -893
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/json.gemspec +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/json_pure.gemspec +0 -38
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/lib/json/add/ostruct.rb +0 -31
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/lib/json/version.rb +0 -9
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/tests/json_addition_test.rb +0 -193
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/tests/json_parser_test.rb +0 -471
- data/vendor/bundle/ruby/2.3.0/gems/json-2.1.0/tests/test_helper.rb +0 -21
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/.rubocop.yml +0 -32
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/.rubocop_defaults.yml +0 -182
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/.ruby-gemset +0 -1
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/.travis.yml +0 -25
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/CHANGELOG.md +0 -335
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/Gemfile +0 -10
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/LICENSE.txt +0 -22
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/README.md +0 -202
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/Rakefile +0 -49
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/bin/console +0 -14
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/data/list.txt +0 -12370
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/lib/public_suffix.rb +0 -175
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/lib/public_suffix/domain.rb +0 -235
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/lib/public_suffix/errors.rb +0 -39
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/lib/public_suffix/list.rb +0 -243
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/lib/public_suffix/rule.rb +0 -348
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/lib/public_suffix/version.rb +0 -10
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/public_suffix.gemspec +0 -25
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/test/acceptance_test.rb +0 -127
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/test/psl_test.rb +0 -49
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/test/test_helper.rb +0 -13
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/test/unit/domain_test.rb +0 -104
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/test/unit/errors_test.rb +0 -23
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/test/unit/list_test.rb +0 -239
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/test/unit/public_suffix_test.rb +0 -186
- data/vendor/bundle/ruby/2.3.0/gems/public_suffix-3.0.2/test/unit/rule_test.rb +0 -220
- data/vendor/bundle/ruby/2.3.0/gems/rspec-3.7.0/README.md +0 -39
- data/vendor/bundle/ruby/2.3.0/gems/rspec-3.7.0/lib/rspec/version.rb +0 -5
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/Changelog.md +0 -2192
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/README.md +0 -384
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/bisect/coordinator.rb +0 -66
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/bisect/example_minimizer.rb +0 -169
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/bisect/runner.rb +0 -169
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/bisect/server.rb +0 -70
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/configuration.rb +0 -2209
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/configuration_options.rb +0 -196
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb +0 -653
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb +0 -884
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/formatters.rb +0 -265
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/formatters/bisect_formatter.rb +0 -69
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/formatters/bisect_progress_formatter.rb +0 -144
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/formatters/deprecation_formatter.rb +0 -221
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/formatters/exception_presenter.rb +0 -496
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/formatters/html_printer.rb +0 -416
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/formatters/protocol.rb +0 -182
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/formatters/syntax_highlighter.rb +0 -91
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb +0 -626
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/invocations.rb +0 -85
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/memoized_helpers.rb +0 -535
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/metadata.rb +0 -499
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/profiler.rb +0 -32
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/reporter.rb +0 -260
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb +0 -193
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/shared_example_group.rb +0 -271
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/shell_escape.rb +0 -49
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/version.rb +0 -9
- data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/world.rb +0 -264
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/Changelog.md +0 -1083
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/README.md +0 -305
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/block_snippet_extractor.rb +0 -253
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/configuration.rb +0 -201
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/expectation_target.rb +0 -127
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/minitest_integration.rb +0 -58
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/syntax.rb +0 -132
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/version.rb +0 -8
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers.rb +0 -1031
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/all.rb +0 -85
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/be_instance_of.rb +0 -22
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/be_kind_of.rb +0 -16
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/change.rb +0 -387
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/compound.rb +0 -272
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/contain_exactly.rb +0 -301
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/has.rb +0 -103
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/include.rb +0 -143
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/respond_to.rb +0 -165
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/satisfy.rb +0 -60
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/composable.rb +0 -169
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/english_phrasing.rb +0 -58
- data/vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/generated_descriptions.rb +0 -42
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/Changelog.md +0 -1089
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/README.md +0 -460
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/any_instance/recorder.rb +0 -289
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/any_instance/stub_chain.rb +0 -51
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/error_generator.rb +0 -369
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/matchers/have_received.rb +0 -130
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/message_expectation.rb +0 -740
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/method_double.rb +0 -287
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/method_reference.rb +0 -202
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/proxy.rb +0 -484
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/test_double.rb +0 -171
- data/vendor/bundle/ruby/2.3.0/gems/rspec-mocks-3.7.0/lib/rspec/mocks/version.rb +0 -9
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.7.1/Changelog.md +0 -234
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.7.1/README.md +0 -40
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.7.1/lib/rspec/support/differ.rb +0 -215
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.7.1/lib/rspec/support/method_signature_verifier.rb +0 -392
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.7.1/lib/rspec/support/object_formatter.rb +0 -267
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.7.1/lib/rspec/support/ruby_features.rb +0 -162
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.7.1/lib/rspec/support/spec/shell_out.rb +0 -84
- data/vendor/bundle/ruby/2.3.0/gems/rspec-support-3.7.1/lib/rspec/support/version.rb +0 -7
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/.gitignore +0 -1
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/CHANGES.md +0 -149
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/lib/safe_yaml/parse/date.rb +0 -35
- data/vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/lib/safe_yaml/version.rb +0 -3
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.0.3/CHANGES +0 -202
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.0.3/certs/djberg96_pub.pem +0 -21
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.0.3/doc/uname.txt +0 -127
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.0.3/examples/uname_test.rb +0 -42
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.0.3/lib/sys/uname.rb +0 -19
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.0.3/sys-uname.gemspec +0 -26
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.0.3/test/test_sys_platform.rb +0 -79
- data/vendor/bundle/ruby/2.3.0/gems/sys-uname-1.0.3/test/test_sys_uname.rb +0 -463
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/README.md +0 -533
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/adapters/faraday.rb +0 -180
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/easy_factory.rb +0 -175
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/request/actions.rb +0 -125
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/request/cacheable.rb +0 -27
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/request/callbacks.rb +0 -133
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/request/marshal.rb +0 -22
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/request/streamable.rb +0 -34
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/response.rb +0 -68
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/response/header.rb +0 -103
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/response/status.rb +0 -107
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/version.rb +0 -5
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/spec/typhoeus/easy_factory_spec.rb +0 -137
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/spec/typhoeus/request/cacheable_spec.rb +0 -70
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/spec/typhoeus/request/callbacks_spec.rb +0 -91
- data/vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/spec/typhoeus/request/marshal_spec.rb +0 -60
- data/vendor/bundle/ruby/2.3.0/specifications/ZenTest-4.11.1.gemspec +0 -40
- data/vendor/bundle/ruby/2.3.0/specifications/addressable-2.5.2.gemspec +0 -39
- data/vendor/bundle/ruby/2.3.0/specifications/autotest-fsevent-0.2.13.gemspec +0 -45
- data/vendor/bundle/ruby/2.3.0/specifications/ethon-0.11.0.gemspec +0 -32
- data/vendor/bundle/ruby/2.3.0/specifications/ffi-1.9.25.gemspec +0 -49
- data/vendor/bundle/ruby/2.3.0/specifications/hashdiff-0.3.7.gemspec +0 -39
- data/vendor/bundle/ruby/2.3.0/specifications/json-2.1.0.gemspec +0 -0
- data/vendor/bundle/ruby/2.3.0/specifications/public_suffix-3.0.2.gemspec +0 -41
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-3.7.0.gemspec +0 -42
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-core-3.7.1.gemspec +0 -62
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-expectations-3.7.0.gemspec +0 -50
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-mocks-3.7.0.gemspec +0 -50
- data/vendor/bundle/ruby/2.3.0/specifications/rspec-support-3.7.1.gemspec +0 -41
- data/vendor/bundle/ruby/2.3.0/specifications/safe_yaml-1.0.4.gemspec +0 -23
- data/vendor/bundle/ruby/2.3.0/specifications/sys-uname-1.0.3.gemspec +0 -35
- data/vendor/bundle/ruby/2.3.0/specifications/typhoeus-1.3.0.gemspec +0 -32
@@ -70,7 +70,7 @@ module CloudsmithApi
|
|
70
70
|
|
71
71
|
# http body (model)
|
72
72
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
73
|
-
auth_names = ['apikey', '
|
73
|
+
auth_names = ['apikey', 'csrf_token']
|
74
74
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
75
75
|
:header_params => header_params,
|
76
76
|
:query_params => query_params,
|
@@ -133,7 +133,7 @@ module CloudsmithApi
|
|
133
133
|
|
134
134
|
# http body (model)
|
135
135
|
post_body = nil
|
136
|
-
auth_names = ['apikey', '
|
136
|
+
auth_names = ['apikey', 'csrf_token']
|
137
137
|
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
|
138
138
|
:header_params => header_params,
|
139
139
|
:query_params => query_params,
|
@@ -195,7 +195,7 @@ module CloudsmithApi
|
|
195
195
|
|
196
196
|
# http body (model)
|
197
197
|
post_body = nil
|
198
|
-
auth_names = ['apikey', '
|
198
|
+
auth_names = ['apikey', 'csrf_token']
|
199
199
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
200
200
|
:header_params => header_params,
|
201
201
|
:query_params => query_params,
|
@@ -257,7 +257,7 @@ module CloudsmithApi
|
|
257
257
|
|
258
258
|
# http body (model)
|
259
259
|
post_body = nil
|
260
|
-
auth_names = ['apikey', '
|
260
|
+
auth_names = ['apikey', 'csrf_token']
|
261
261
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
262
262
|
:header_params => header_params,
|
263
263
|
:query_params => query_params,
|
@@ -322,7 +322,7 @@ module CloudsmithApi
|
|
322
322
|
|
323
323
|
# http body (model)
|
324
324
|
post_body = nil
|
325
|
-
auth_names = ['apikey', '
|
325
|
+
auth_names = ['apikey', 'csrf_token']
|
326
326
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
327
327
|
:header_params => header_params,
|
328
328
|
:query_params => query_params,
|
@@ -392,7 +392,7 @@ module CloudsmithApi
|
|
392
392
|
|
393
393
|
# http body (model)
|
394
394
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
395
|
-
auth_names = ['apikey', '
|
395
|
+
auth_names = ['apikey', 'csrf_token']
|
396
396
|
data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
|
397
397
|
:header_params => header_params,
|
398
398
|
:query_params => query_params,
|
@@ -458,7 +458,7 @@ module CloudsmithApi
|
|
458
458
|
|
459
459
|
# http body (model)
|
460
460
|
post_body = nil
|
461
|
-
auth_names = ['apikey', '
|
461
|
+
auth_names = ['apikey', 'csrf_token']
|
462
462
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
463
463
|
:header_params => header_params,
|
464
464
|
:query_params => query_params,
|
@@ -528,7 +528,7 @@ module CloudsmithApi
|
|
528
528
|
|
529
529
|
# http body (model)
|
530
530
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
531
|
-
auth_names = ['apikey', '
|
531
|
+
auth_names = ['apikey', 'csrf_token']
|
532
532
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
533
533
|
:header_params => header_params,
|
534
534
|
:query_params => query_params,
|
@@ -591,7 +591,7 @@ module CloudsmithApi
|
|
591
591
|
|
592
592
|
# http body (model)
|
593
593
|
post_body = nil
|
594
|
-
auth_names = ['apikey', '
|
594
|
+
auth_names = ['apikey', 'csrf_token']
|
595
595
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
596
596
|
:header_params => header_params,
|
597
597
|
:query_params => query_params,
|
@@ -609,6 +609,7 @@ module CloudsmithApi
|
|
609
609
|
# @param owner
|
610
610
|
# @param repo
|
611
611
|
# @param [Hash] opts the optional parameters
|
612
|
+
# @option opts [BOOLEAN] :show_tokens Show entitlement token strings in results
|
612
613
|
# @option opts [EntitlementsSync] :data
|
613
614
|
# @return [RepositoryTokenSync]
|
614
615
|
def entitlements_sync(owner, repo, opts = {})
|
@@ -621,6 +622,7 @@ module CloudsmithApi
|
|
621
622
|
# @param owner
|
622
623
|
# @param repo
|
623
624
|
# @param [Hash] opts the optional parameters
|
625
|
+
# @option opts [BOOLEAN] :show_tokens Show entitlement token strings in results
|
624
626
|
# @option opts [EntitlementsSync] :data
|
625
627
|
# @return [Array<(RepositoryTokenSync, Fixnum, Hash)>] RepositoryTokenSync data, response status code and response headers
|
626
628
|
def entitlements_sync_with_http_info(owner, repo, opts = {})
|
@@ -640,6 +642,7 @@ module CloudsmithApi
|
|
640
642
|
|
641
643
|
# query parameters
|
642
644
|
query_params = {}
|
645
|
+
query_params[:'show_tokens'] = opts[:'show_tokens'] if !opts[:'show_tokens'].nil?
|
643
646
|
|
644
647
|
# header parameters
|
645
648
|
header_params = {}
|
@@ -651,7 +654,7 @@ module CloudsmithApi
|
|
651
654
|
|
652
655
|
# http body (model)
|
653
656
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
654
|
-
auth_names = ['apikey', '
|
657
|
+
auth_names = ['apikey', 'csrf_token']
|
655
658
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
656
659
|
:header_params => header_params,
|
657
660
|
:query_params => query_params,
|
@@ -20,8 +20,141 @@ module CloudsmithApi
|
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
22
|
|
23
|
-
#
|
24
|
-
#
|
23
|
+
# Abort a multipart file upload.
|
24
|
+
# Abort a multipart file upload.
|
25
|
+
# @param owner
|
26
|
+
# @param repo
|
27
|
+
# @param identifier
|
28
|
+
# @param [Hash] opts the optional parameters
|
29
|
+
# @option opts [FilesAbort] :data
|
30
|
+
# @return [nil]
|
31
|
+
def files_abort(owner, repo, identifier, opts = {})
|
32
|
+
files_abort_with_http_info(owner, repo, identifier, opts)
|
33
|
+
return nil
|
34
|
+
end
|
35
|
+
|
36
|
+
# Abort a multipart file upload.
|
37
|
+
# Abort a multipart file upload.
|
38
|
+
# @param owner
|
39
|
+
# @param repo
|
40
|
+
# @param identifier
|
41
|
+
# @param [Hash] opts the optional parameters
|
42
|
+
# @option opts [FilesAbort] :data
|
43
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
44
|
+
def files_abort_with_http_info(owner, repo, identifier, opts = {})
|
45
|
+
if @api_client.config.debugging
|
46
|
+
@api_client.config.logger.debug "Calling API: FilesApi.files_abort ..."
|
47
|
+
end
|
48
|
+
# verify the required parameter 'owner' is set
|
49
|
+
if @api_client.config.client_side_validation && owner.nil?
|
50
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling FilesApi.files_abort"
|
51
|
+
end
|
52
|
+
# verify the required parameter 'repo' is set
|
53
|
+
if @api_client.config.client_side_validation && repo.nil?
|
54
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling FilesApi.files_abort"
|
55
|
+
end
|
56
|
+
# verify the required parameter 'identifier' is set
|
57
|
+
if @api_client.config.client_side_validation && identifier.nil?
|
58
|
+
fail ArgumentError, "Missing the required parameter 'identifier' when calling FilesApi.files_abort"
|
59
|
+
end
|
60
|
+
# resource path
|
61
|
+
local_var_path = "/files/{owner}/{repo}/{identifier}/abort/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s).sub('{' + 'identifier' + '}', identifier.to_s)
|
62
|
+
|
63
|
+
# query parameters
|
64
|
+
query_params = {}
|
65
|
+
|
66
|
+
# header parameters
|
67
|
+
header_params = {}
|
68
|
+
# HTTP header 'Content-Type'
|
69
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
70
|
+
|
71
|
+
# form parameters
|
72
|
+
form_params = {}
|
73
|
+
|
74
|
+
# http body (model)
|
75
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
76
|
+
auth_names = ['apikey', 'csrf_token']
|
77
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
78
|
+
:header_params => header_params,
|
79
|
+
:query_params => query_params,
|
80
|
+
:form_params => form_params,
|
81
|
+
:body => post_body,
|
82
|
+
:auth_names => auth_names)
|
83
|
+
if @api_client.config.debugging
|
84
|
+
@api_client.config.logger.debug "API called: FilesApi#files_abort\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
85
|
+
end
|
86
|
+
return data, status_code, headers
|
87
|
+
end
|
88
|
+
|
89
|
+
# Complete a multipart file upload.
|
90
|
+
# Complete a multipart file upload.
|
91
|
+
# @param owner
|
92
|
+
# @param repo
|
93
|
+
# @param identifier
|
94
|
+
# @param [Hash] opts the optional parameters
|
95
|
+
# @option opts [FilesComplete] :data
|
96
|
+
# @return [PackageFileUpload]
|
97
|
+
def files_complete(owner, repo, identifier, opts = {})
|
98
|
+
data, _status_code, _headers = files_complete_with_http_info(owner, repo, identifier, opts)
|
99
|
+
return data
|
100
|
+
end
|
101
|
+
|
102
|
+
# Complete a multipart file upload.
|
103
|
+
# Complete a multipart file upload.
|
104
|
+
# @param owner
|
105
|
+
# @param repo
|
106
|
+
# @param identifier
|
107
|
+
# @param [Hash] opts the optional parameters
|
108
|
+
# @option opts [FilesComplete] :data
|
109
|
+
# @return [Array<(PackageFileUpload, Fixnum, Hash)>] PackageFileUpload data, response status code and response headers
|
110
|
+
def files_complete_with_http_info(owner, repo, identifier, opts = {})
|
111
|
+
if @api_client.config.debugging
|
112
|
+
@api_client.config.logger.debug "Calling API: FilesApi.files_complete ..."
|
113
|
+
end
|
114
|
+
# verify the required parameter 'owner' is set
|
115
|
+
if @api_client.config.client_side_validation && owner.nil?
|
116
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling FilesApi.files_complete"
|
117
|
+
end
|
118
|
+
# verify the required parameter 'repo' is set
|
119
|
+
if @api_client.config.client_side_validation && repo.nil?
|
120
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling FilesApi.files_complete"
|
121
|
+
end
|
122
|
+
# verify the required parameter 'identifier' is set
|
123
|
+
if @api_client.config.client_side_validation && identifier.nil?
|
124
|
+
fail ArgumentError, "Missing the required parameter 'identifier' when calling FilesApi.files_complete"
|
125
|
+
end
|
126
|
+
# resource path
|
127
|
+
local_var_path = "/files/{owner}/{repo}/{identifier}/complete/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s).sub('{' + 'identifier' + '}', identifier.to_s)
|
128
|
+
|
129
|
+
# query parameters
|
130
|
+
query_params = {}
|
131
|
+
|
132
|
+
# header parameters
|
133
|
+
header_params = {}
|
134
|
+
# HTTP header 'Content-Type'
|
135
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
136
|
+
|
137
|
+
# form parameters
|
138
|
+
form_params = {}
|
139
|
+
|
140
|
+
# http body (model)
|
141
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
142
|
+
auth_names = ['apikey', 'csrf_token']
|
143
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
144
|
+
:header_params => header_params,
|
145
|
+
:query_params => query_params,
|
146
|
+
:form_params => form_params,
|
147
|
+
:body => post_body,
|
148
|
+
:auth_names => auth_names,
|
149
|
+
:return_type => 'PackageFileUpload')
|
150
|
+
if @api_client.config.debugging
|
151
|
+
@api_client.config.logger.debug "API called: FilesApi#files_complete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
152
|
+
end
|
153
|
+
return data, status_code, headers
|
154
|
+
end
|
155
|
+
|
156
|
+
# Request URL(s) to upload new package file upload(s) to.
|
157
|
+
# Request URL(s) to upload new package file upload(s) to.
|
25
158
|
# @param owner
|
26
159
|
# @param repo
|
27
160
|
# @param [Hash] opts the optional parameters
|
@@ -32,8 +165,8 @@ module CloudsmithApi
|
|
32
165
|
return data
|
33
166
|
end
|
34
167
|
|
35
|
-
# Request URL(s) to
|
36
|
-
# Request URL(s) to
|
168
|
+
# Request URL(s) to upload new package file upload(s) to.
|
169
|
+
# Request URL(s) to upload new package file upload(s) to.
|
37
170
|
# @param owner
|
38
171
|
# @param repo
|
39
172
|
# @param [Hash] opts the optional parameters
|
@@ -67,7 +200,7 @@ module CloudsmithApi
|
|
67
200
|
|
68
201
|
# http body (model)
|
69
202
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
70
|
-
auth_names = ['apikey', '
|
203
|
+
auth_names = ['apikey', 'csrf_token']
|
71
204
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
72
205
|
:header_params => header_params,
|
73
206
|
:query_params => query_params,
|
@@ -81,6 +214,69 @@ module CloudsmithApi
|
|
81
214
|
return data, status_code, headers
|
82
215
|
end
|
83
216
|
|
217
|
+
# Get upload information for a multipart file upload.
|
218
|
+
# Get upload information for a multipart file upload.
|
219
|
+
# @param owner
|
220
|
+
# @param repo
|
221
|
+
# @param identifier
|
222
|
+
# @param [Hash] opts the optional parameters
|
223
|
+
# @return [PackageFilePartsUpload]
|
224
|
+
def files_info(owner, repo, identifier, opts = {})
|
225
|
+
data, _status_code, _headers = files_info_with_http_info(owner, repo, identifier, opts)
|
226
|
+
return data
|
227
|
+
end
|
228
|
+
|
229
|
+
# Get upload information for a multipart file upload.
|
230
|
+
# Get upload information for a multipart file upload.
|
231
|
+
# @param owner
|
232
|
+
# @param repo
|
233
|
+
# @param identifier
|
234
|
+
# @param [Hash] opts the optional parameters
|
235
|
+
# @return [Array<(PackageFilePartsUpload, Fixnum, Hash)>] PackageFilePartsUpload data, response status code and response headers
|
236
|
+
def files_info_with_http_info(owner, repo, identifier, opts = {})
|
237
|
+
if @api_client.config.debugging
|
238
|
+
@api_client.config.logger.debug "Calling API: FilesApi.files_info ..."
|
239
|
+
end
|
240
|
+
# verify the required parameter 'owner' is set
|
241
|
+
if @api_client.config.client_side_validation && owner.nil?
|
242
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling FilesApi.files_info"
|
243
|
+
end
|
244
|
+
# verify the required parameter 'repo' is set
|
245
|
+
if @api_client.config.client_side_validation && repo.nil?
|
246
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling FilesApi.files_info"
|
247
|
+
end
|
248
|
+
# verify the required parameter 'identifier' is set
|
249
|
+
if @api_client.config.client_side_validation && identifier.nil?
|
250
|
+
fail ArgumentError, "Missing the required parameter 'identifier' when calling FilesApi.files_info"
|
251
|
+
end
|
252
|
+
# resource path
|
253
|
+
local_var_path = "/files/{owner}/{repo}/{identifier}/info/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s).sub('{' + 'identifier' + '}', identifier.to_s)
|
254
|
+
|
255
|
+
# query parameters
|
256
|
+
query_params = {}
|
257
|
+
|
258
|
+
# header parameters
|
259
|
+
header_params = {}
|
260
|
+
|
261
|
+
# form parameters
|
262
|
+
form_params = {}
|
263
|
+
|
264
|
+
# http body (model)
|
265
|
+
post_body = nil
|
266
|
+
auth_names = ['apikey', 'csrf_token']
|
267
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
268
|
+
:header_params => header_params,
|
269
|
+
:query_params => query_params,
|
270
|
+
:form_params => form_params,
|
271
|
+
:body => post_body,
|
272
|
+
:auth_names => auth_names,
|
273
|
+
:return_type => 'PackageFilePartsUpload')
|
274
|
+
if @api_client.config.debugging
|
275
|
+
@api_client.config.logger.debug "API called: FilesApi#files_info\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
276
|
+
end
|
277
|
+
return data, status_code, headers
|
278
|
+
end
|
279
|
+
|
84
280
|
# Validate parameters used for create.
|
85
281
|
# Validate parameters used for create.
|
86
282
|
# @param owner
|
@@ -128,7 +324,7 @@ module CloudsmithApi
|
|
128
324
|
|
129
325
|
# http body (model)
|
130
326
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
131
|
-
auth_names = ['apikey', '
|
327
|
+
auth_names = ['apikey', 'csrf_token']
|
132
328
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
133
329
|
:header_params => header_params,
|
134
330
|
:query_params => query_params,
|
@@ -51,7 +51,7 @@ module CloudsmithApi
|
|
51
51
|
|
52
52
|
# http body (model)
|
53
53
|
post_body = nil
|
54
|
-
auth_names = ['apikey', '
|
54
|
+
auth_names = ['apikey', 'csrf_token']
|
55
55
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
56
56
|
:header_params => header_params,
|
57
57
|
:query_params => query_params,
|
@@ -102,7 +102,7 @@ module CloudsmithApi
|
|
102
102
|
|
103
103
|
# http body (model)
|
104
104
|
post_body = nil
|
105
|
-
auth_names = ['apikey', '
|
105
|
+
auth_names = ['apikey', 'csrf_token']
|
106
106
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
107
107
|
:header_params => header_params,
|
108
108
|
:query_params => query_params,
|
@@ -57,7 +57,7 @@ module CloudsmithApi
|
|
57
57
|
|
58
58
|
# http body (model)
|
59
59
|
post_body = nil
|
60
|
-
auth_names = ['apikey', '
|
60
|
+
auth_names = ['apikey', 'csrf_token']
|
61
61
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
62
62
|
:header_params => header_params,
|
63
63
|
:query_params => query_params,
|
@@ -108,7 +108,7 @@ module CloudsmithApi
|
|
108
108
|
|
109
109
|
# http body (model)
|
110
110
|
post_body = nil
|
111
|
-
auth_names = ['apikey', '
|
111
|
+
auth_names = ['apikey', 'csrf_token']
|
112
112
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
113
113
|
:header_params => header_params,
|
114
114
|
:query_params => query_params,
|
@@ -57,7 +57,7 @@ module CloudsmithApi
|
|
57
57
|
|
58
58
|
# http body (model)
|
59
59
|
post_body = nil
|
60
|
-
auth_names = ['apikey', '
|
60
|
+
auth_names = ['apikey', 'csrf_token']
|
61
61
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
62
62
|
:header_params => header_params,
|
63
63
|
:query_params => query_params,
|
@@ -108,7 +108,7 @@ module CloudsmithApi
|
|
108
108
|
|
109
109
|
# http body (model)
|
110
110
|
post_body = nil
|
111
|
-
auth_names = ['apikey', '
|
111
|
+
auth_names = ['apikey', 'csrf_token']
|
112
112
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
113
113
|
:header_params => header_params,
|
114
114
|
:query_params => query_params,
|
@@ -73,7 +73,7 @@ module CloudsmithApi
|
|
73
73
|
|
74
74
|
# http body (model)
|
75
75
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
76
|
-
auth_names = ['apikey', '
|
76
|
+
auth_names = ['apikey', 'csrf_token']
|
77
77
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
78
78
|
:header_params => header_params,
|
79
79
|
:query_params => query_params,
|
@@ -136,7 +136,7 @@ module CloudsmithApi
|
|
136
136
|
|
137
137
|
# http body (model)
|
138
138
|
post_body = nil
|
139
|
-
auth_names = ['apikey', '
|
139
|
+
auth_names = ['apikey', 'csrf_token']
|
140
140
|
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
|
141
141
|
:header_params => header_params,
|
142
142
|
:query_params => query_params,
|
@@ -149,8 +149,8 @@ module CloudsmithApi
|
|
149
149
|
return data, status_code, headers
|
150
150
|
end
|
151
151
|
|
152
|
-
#
|
153
|
-
#
|
152
|
+
# Get a list of all packages associated with repository.
|
153
|
+
# Get a list of all packages associated with repository.
|
154
154
|
# @param owner
|
155
155
|
# @param repo
|
156
156
|
# @param [Hash] opts the optional parameters
|
@@ -163,8 +163,8 @@ module CloudsmithApi
|
|
163
163
|
return data
|
164
164
|
end
|
165
165
|
|
166
|
-
#
|
167
|
-
#
|
166
|
+
# Get a list of all packages associated with repository.
|
167
|
+
# Get a list of all packages associated with repository.
|
168
168
|
# @param owner
|
169
169
|
# @param repo
|
170
170
|
# @param [Hash] opts the optional parameters
|
@@ -201,7 +201,7 @@ module CloudsmithApi
|
|
201
201
|
|
202
202
|
# http body (model)
|
203
203
|
post_body = nil
|
204
|
-
auth_names = ['apikey', '
|
204
|
+
auth_names = ['apikey', 'csrf_token']
|
205
205
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
206
206
|
:header_params => header_params,
|
207
207
|
:query_params => query_params,
|
@@ -268,7 +268,7 @@ module CloudsmithApi
|
|
268
268
|
|
269
269
|
# http body (model)
|
270
270
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
271
|
-
auth_names = ['apikey', '
|
271
|
+
auth_names = ['apikey', 'csrf_token']
|
272
272
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
273
273
|
:header_params => header_params,
|
274
274
|
:query_params => query_params,
|
@@ -331,7 +331,7 @@ module CloudsmithApi
|
|
331
331
|
|
332
332
|
# http body (model)
|
333
333
|
post_body = nil
|
334
|
-
auth_names = ['apikey', '
|
334
|
+
auth_names = ['apikey', 'csrf_token']
|
335
335
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
336
336
|
:header_params => header_params,
|
337
337
|
:query_params => query_params,
|
@@ -351,6 +351,7 @@ module CloudsmithApi
|
|
351
351
|
# @param repo
|
352
352
|
# @param identifier
|
353
353
|
# @param [Hash] opts the optional parameters
|
354
|
+
# @option opts [PackagesResync] :data
|
354
355
|
# @return [Package]
|
355
356
|
def packages_resync(owner, repo, identifier, opts = {})
|
356
357
|
data, _status_code, _headers = packages_resync_with_http_info(owner, repo, identifier, opts)
|
@@ -363,6 +364,7 @@ module CloudsmithApi
|
|
363
364
|
# @param repo
|
364
365
|
# @param identifier
|
365
366
|
# @param [Hash] opts the optional parameters
|
367
|
+
# @option opts [PackagesResync] :data
|
366
368
|
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
367
369
|
def packages_resync_with_http_info(owner, repo, identifier, opts = {})
|
368
370
|
if @api_client.config.debugging
|
@@ -388,13 +390,15 @@ module CloudsmithApi
|
|
388
390
|
|
389
391
|
# header parameters
|
390
392
|
header_params = {}
|
393
|
+
# HTTP header 'Content-Type'
|
394
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
391
395
|
|
392
396
|
# form parameters
|
393
397
|
form_params = {}
|
394
398
|
|
395
399
|
# http body (model)
|
396
|
-
post_body =
|
397
|
-
auth_names = ['apikey', '
|
400
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
401
|
+
auth_names = ['apikey', 'csrf_token']
|
398
402
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
399
403
|
:header_params => header_params,
|
400
404
|
:query_params => query_params,
|
@@ -457,7 +461,7 @@ module CloudsmithApi
|
|
457
461
|
|
458
462
|
# http body (model)
|
459
463
|
post_body = nil
|
460
|
-
auth_names = ['apikey', '
|
464
|
+
auth_names = ['apikey', 'csrf_token']
|
461
465
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
462
466
|
:header_params => header_params,
|
463
467
|
:query_params => query_params,
|
@@ -471,39 +475,39 @@ module CloudsmithApi
|
|
471
475
|
return data, status_code, headers
|
472
476
|
end
|
473
477
|
|
474
|
-
# Create a new
|
475
|
-
# Create a new
|
478
|
+
# Create a new Alpine package
|
479
|
+
# Create a new Alpine package
|
476
480
|
# @param owner
|
477
481
|
# @param repo
|
478
482
|
# @param [Hash] opts the optional parameters
|
479
|
-
# @option opts [
|
483
|
+
# @option opts [PackagesUploadAlpine] :data
|
480
484
|
# @return [Package]
|
481
|
-
def
|
482
|
-
data, _status_code, _headers =
|
485
|
+
def packages_upload_alpine(owner, repo, opts = {})
|
486
|
+
data, _status_code, _headers = packages_upload_alpine_with_http_info(owner, repo, opts)
|
483
487
|
return data
|
484
488
|
end
|
485
489
|
|
486
|
-
# Create a new
|
487
|
-
# Create a new
|
490
|
+
# Create a new Alpine package
|
491
|
+
# Create a new Alpine package
|
488
492
|
# @param owner
|
489
493
|
# @param repo
|
490
494
|
# @param [Hash] opts the optional parameters
|
491
|
-
# @option opts [
|
495
|
+
# @option opts [PackagesUploadAlpine] :data
|
492
496
|
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
493
|
-
def
|
497
|
+
def packages_upload_alpine_with_http_info(owner, repo, opts = {})
|
494
498
|
if @api_client.config.debugging
|
495
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
499
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_alpine ..."
|
496
500
|
end
|
497
501
|
# verify the required parameter 'owner' is set
|
498
502
|
if @api_client.config.client_side_validation && owner.nil?
|
499
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
503
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_alpine"
|
500
504
|
end
|
501
505
|
# verify the required parameter 'repo' is set
|
502
506
|
if @api_client.config.client_side_validation && repo.nil?
|
503
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
507
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_alpine"
|
504
508
|
end
|
505
509
|
# resource path
|
506
|
-
local_var_path = "/packages/{owner}/{repo}/upload/
|
510
|
+
local_var_path = "/packages/{owner}/{repo}/upload/alpine/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
507
511
|
|
508
512
|
# query parameters
|
509
513
|
query_params = {}
|
@@ -518,7 +522,7 @@ module CloudsmithApi
|
|
518
522
|
|
519
523
|
# http body (model)
|
520
524
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
521
|
-
auth_names = ['apikey', '
|
525
|
+
auth_names = ['apikey', 'csrf_token']
|
522
526
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
523
527
|
:header_params => header_params,
|
524
528
|
:query_params => query_params,
|
@@ -527,44 +531,44 @@ module CloudsmithApi
|
|
527
531
|
:auth_names => auth_names,
|
528
532
|
:return_type => 'Package')
|
529
533
|
if @api_client.config.debugging
|
530
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
534
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_alpine\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
531
535
|
end
|
532
536
|
return data, status_code, headers
|
533
537
|
end
|
534
538
|
|
535
|
-
# Create a new
|
536
|
-
# Create a new
|
539
|
+
# Create a new Cargo package
|
540
|
+
# Create a new Cargo package
|
537
541
|
# @param owner
|
538
542
|
# @param repo
|
539
543
|
# @param [Hash] opts the optional parameters
|
540
|
-
# @option opts [
|
544
|
+
# @option opts [PackagesUploadCargo] :data
|
541
545
|
# @return [Package]
|
542
|
-
def
|
543
|
-
data, _status_code, _headers =
|
546
|
+
def packages_upload_cargo(owner, repo, opts = {})
|
547
|
+
data, _status_code, _headers = packages_upload_cargo_with_http_info(owner, repo, opts)
|
544
548
|
return data
|
545
549
|
end
|
546
550
|
|
547
|
-
# Create a new
|
548
|
-
# Create a new
|
551
|
+
# Create a new Cargo package
|
552
|
+
# Create a new Cargo package
|
549
553
|
# @param owner
|
550
554
|
# @param repo
|
551
555
|
# @param [Hash] opts the optional parameters
|
552
|
-
# @option opts [
|
556
|
+
# @option opts [PackagesUploadCargo] :data
|
553
557
|
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
554
|
-
def
|
558
|
+
def packages_upload_cargo_with_http_info(owner, repo, opts = {})
|
555
559
|
if @api_client.config.debugging
|
556
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
560
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_cargo ..."
|
557
561
|
end
|
558
562
|
# verify the required parameter 'owner' is set
|
559
563
|
if @api_client.config.client_side_validation && owner.nil?
|
560
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
564
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_cargo"
|
561
565
|
end
|
562
566
|
# verify the required parameter 'repo' is set
|
563
567
|
if @api_client.config.client_side_validation && repo.nil?
|
564
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
568
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_cargo"
|
565
569
|
end
|
566
570
|
# resource path
|
567
|
-
local_var_path = "/packages/{owner}/{repo}/upload/
|
571
|
+
local_var_path = "/packages/{owner}/{repo}/upload/cargo/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
568
572
|
|
569
573
|
# query parameters
|
570
574
|
query_params = {}
|
@@ -579,7 +583,7 @@ module CloudsmithApi
|
|
579
583
|
|
580
584
|
# http body (model)
|
581
585
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
582
|
-
auth_names = ['apikey', '
|
586
|
+
auth_names = ['apikey', 'csrf_token']
|
583
587
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
584
588
|
:header_params => header_params,
|
585
589
|
:query_params => query_params,
|
@@ -588,44 +592,44 @@ module CloudsmithApi
|
|
588
592
|
:auth_names => auth_names,
|
589
593
|
:return_type => 'Package')
|
590
594
|
if @api_client.config.debugging
|
591
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
595
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_cargo\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
592
596
|
end
|
593
597
|
return data, status_code, headers
|
594
598
|
end
|
595
599
|
|
596
|
-
# Create a new
|
597
|
-
# Create a new
|
600
|
+
# Create a new Composer package
|
601
|
+
# Create a new Composer package
|
598
602
|
# @param owner
|
599
603
|
# @param repo
|
600
604
|
# @param [Hash] opts the optional parameters
|
601
|
-
# @option opts [
|
602
|
-
# @return [
|
603
|
-
def
|
604
|
-
data, _status_code, _headers =
|
605
|
+
# @option opts [PackagesUploadComposer] :data
|
606
|
+
# @return [Package]
|
607
|
+
def packages_upload_composer(owner, repo, opts = {})
|
608
|
+
data, _status_code, _headers = packages_upload_composer_with_http_info(owner, repo, opts)
|
605
609
|
return data
|
606
610
|
end
|
607
611
|
|
608
|
-
# Create a new
|
609
|
-
# Create a new
|
612
|
+
# Create a new Composer package
|
613
|
+
# Create a new Composer package
|
610
614
|
# @param owner
|
611
615
|
# @param repo
|
612
616
|
# @param [Hash] opts the optional parameters
|
613
|
-
# @option opts [
|
614
|
-
# @return [Array<(
|
615
|
-
def
|
617
|
+
# @option opts [PackagesUploadComposer] :data
|
618
|
+
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
619
|
+
def packages_upload_composer_with_http_info(owner, repo, opts = {})
|
616
620
|
if @api_client.config.debugging
|
617
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
621
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_composer ..."
|
618
622
|
end
|
619
623
|
# verify the required parameter 'owner' is set
|
620
624
|
if @api_client.config.client_side_validation && owner.nil?
|
621
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
625
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_composer"
|
622
626
|
end
|
623
627
|
# verify the required parameter 'repo' is set
|
624
628
|
if @api_client.config.client_side_validation && repo.nil?
|
625
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
629
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_composer"
|
626
630
|
end
|
627
631
|
# resource path
|
628
|
-
local_var_path = "/packages/{owner}/{repo}/upload/
|
632
|
+
local_var_path = "/packages/{owner}/{repo}/upload/composer/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
629
633
|
|
630
634
|
# query parameters
|
631
635
|
query_params = {}
|
@@ -640,53 +644,53 @@ module CloudsmithApi
|
|
640
644
|
|
641
645
|
# http body (model)
|
642
646
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
643
|
-
auth_names = ['apikey', '
|
647
|
+
auth_names = ['apikey', 'csrf_token']
|
644
648
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
645
649
|
:header_params => header_params,
|
646
650
|
:query_params => query_params,
|
647
651
|
:form_params => form_params,
|
648
652
|
:body => post_body,
|
649
653
|
:auth_names => auth_names,
|
650
|
-
:return_type => '
|
654
|
+
:return_type => 'Package')
|
651
655
|
if @api_client.config.debugging
|
652
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
656
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_composer\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
653
657
|
end
|
654
658
|
return data, status_code, headers
|
655
659
|
end
|
656
660
|
|
657
|
-
# Create a new
|
658
|
-
# Create a new
|
661
|
+
# Create a new CRAN package
|
662
|
+
# Create a new CRAN package
|
659
663
|
# @param owner
|
660
664
|
# @param repo
|
661
665
|
# @param [Hash] opts the optional parameters
|
662
|
-
# @option opts [
|
666
|
+
# @option opts [PackagesUploadCran] :data
|
663
667
|
# @return [Package]
|
664
|
-
def
|
665
|
-
data, _status_code, _headers =
|
668
|
+
def packages_upload_cran(owner, repo, opts = {})
|
669
|
+
data, _status_code, _headers = packages_upload_cran_with_http_info(owner, repo, opts)
|
666
670
|
return data
|
667
671
|
end
|
668
672
|
|
669
|
-
# Create a new
|
670
|
-
# Create a new
|
673
|
+
# Create a new CRAN package
|
674
|
+
# Create a new CRAN package
|
671
675
|
# @param owner
|
672
676
|
# @param repo
|
673
677
|
# @param [Hash] opts the optional parameters
|
674
|
-
# @option opts [
|
678
|
+
# @option opts [PackagesUploadCran] :data
|
675
679
|
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
676
|
-
def
|
680
|
+
def packages_upload_cran_with_http_info(owner, repo, opts = {})
|
677
681
|
if @api_client.config.debugging
|
678
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
682
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_cran ..."
|
679
683
|
end
|
680
684
|
# verify the required parameter 'owner' is set
|
681
685
|
if @api_client.config.client_side_validation && owner.nil?
|
682
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
686
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_cran"
|
683
687
|
end
|
684
688
|
# verify the required parameter 'repo' is set
|
685
689
|
if @api_client.config.client_side_validation && repo.nil?
|
686
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
690
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_cran"
|
687
691
|
end
|
688
692
|
# resource path
|
689
|
-
local_var_path = "/packages/{owner}/{repo}/upload/
|
693
|
+
local_var_path = "/packages/{owner}/{repo}/upload/cran/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
690
694
|
|
691
695
|
# query parameters
|
692
696
|
query_params = {}
|
@@ -701,7 +705,7 @@ module CloudsmithApi
|
|
701
705
|
|
702
706
|
# http body (model)
|
703
707
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
704
|
-
auth_names = ['apikey', '
|
708
|
+
auth_names = ['apikey', 'csrf_token']
|
705
709
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
706
710
|
:header_params => header_params,
|
707
711
|
:query_params => query_params,
|
@@ -710,44 +714,44 @@ module CloudsmithApi
|
|
710
714
|
:auth_names => auth_names,
|
711
715
|
:return_type => 'Package')
|
712
716
|
if @api_client.config.debugging
|
713
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
717
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_cran\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
714
718
|
end
|
715
719
|
return data, status_code, headers
|
716
720
|
end
|
717
721
|
|
718
|
-
# Create a new
|
719
|
-
# Create a new
|
722
|
+
# Create a new Debian package
|
723
|
+
# Create a new Debian package
|
720
724
|
# @param owner
|
721
725
|
# @param repo
|
722
726
|
# @param [Hash] opts the optional parameters
|
723
|
-
# @option opts [
|
724
|
-
# @return [
|
725
|
-
def
|
726
|
-
data, _status_code, _headers =
|
727
|
+
# @option opts [PackagesUploadDeb] :data
|
728
|
+
# @return [Package]
|
729
|
+
def packages_upload_deb(owner, repo, opts = {})
|
730
|
+
data, _status_code, _headers = packages_upload_deb_with_http_info(owner, repo, opts)
|
727
731
|
return data
|
728
732
|
end
|
729
733
|
|
730
|
-
# Create a new
|
731
|
-
# Create a new
|
734
|
+
# Create a new Debian package
|
735
|
+
# Create a new Debian package
|
732
736
|
# @param owner
|
733
737
|
# @param repo
|
734
738
|
# @param [Hash] opts the optional parameters
|
735
|
-
# @option opts [
|
736
|
-
# @return [Array<(
|
737
|
-
def
|
739
|
+
# @option opts [PackagesUploadDeb] :data
|
740
|
+
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
741
|
+
def packages_upload_deb_with_http_info(owner, repo, opts = {})
|
738
742
|
if @api_client.config.debugging
|
739
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
743
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_deb ..."
|
740
744
|
end
|
741
745
|
# verify the required parameter 'owner' is set
|
742
746
|
if @api_client.config.client_side_validation && owner.nil?
|
743
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
747
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_deb"
|
744
748
|
end
|
745
749
|
# verify the required parameter 'repo' is set
|
746
750
|
if @api_client.config.client_side_validation && repo.nil?
|
747
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
751
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_deb"
|
748
752
|
end
|
749
753
|
# resource path
|
750
|
-
local_var_path = "/packages/{owner}/{repo}/upload/
|
754
|
+
local_var_path = "/packages/{owner}/{repo}/upload/deb/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
751
755
|
|
752
756
|
# query parameters
|
753
757
|
query_params = {}
|
@@ -762,53 +766,53 @@ module CloudsmithApi
|
|
762
766
|
|
763
767
|
# http body (model)
|
764
768
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
765
|
-
auth_names = ['apikey', '
|
769
|
+
auth_names = ['apikey', 'csrf_token']
|
766
770
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
767
771
|
:header_params => header_params,
|
768
772
|
:query_params => query_params,
|
769
773
|
:form_params => form_params,
|
770
774
|
:body => post_body,
|
771
775
|
:auth_names => auth_names,
|
772
|
-
:return_type => '
|
776
|
+
:return_type => 'Package')
|
773
777
|
if @api_client.config.debugging
|
774
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
778
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_deb\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
775
779
|
end
|
776
780
|
return data, status_code, headers
|
777
781
|
end
|
778
782
|
|
779
|
-
# Create a new
|
780
|
-
# Create a new
|
783
|
+
# Create a new Docker package
|
784
|
+
# Create a new Docker package
|
781
785
|
# @param owner
|
782
786
|
# @param repo
|
783
787
|
# @param [Hash] opts the optional parameters
|
784
|
-
# @option opts [
|
788
|
+
# @option opts [PackagesUploadDocker] :data
|
785
789
|
# @return [Package]
|
786
|
-
def
|
787
|
-
data, _status_code, _headers =
|
790
|
+
def packages_upload_docker(owner, repo, opts = {})
|
791
|
+
data, _status_code, _headers = packages_upload_docker_with_http_info(owner, repo, opts)
|
788
792
|
return data
|
789
793
|
end
|
790
794
|
|
791
|
-
# Create a new
|
792
|
-
# Create a new
|
795
|
+
# Create a new Docker package
|
796
|
+
# Create a new Docker package
|
793
797
|
# @param owner
|
794
798
|
# @param repo
|
795
799
|
# @param [Hash] opts the optional parameters
|
796
|
-
# @option opts [
|
800
|
+
# @option opts [PackagesUploadDocker] :data
|
797
801
|
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
798
|
-
def
|
802
|
+
def packages_upload_docker_with_http_info(owner, repo, opts = {})
|
799
803
|
if @api_client.config.debugging
|
800
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
804
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_docker ..."
|
801
805
|
end
|
802
806
|
# verify the required parameter 'owner' is set
|
803
807
|
if @api_client.config.client_side_validation && owner.nil?
|
804
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
808
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_docker"
|
805
809
|
end
|
806
810
|
# verify the required parameter 'repo' is set
|
807
811
|
if @api_client.config.client_side_validation && repo.nil?
|
808
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
812
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_docker"
|
809
813
|
end
|
810
814
|
# resource path
|
811
|
-
local_var_path = "/packages/{owner}/{repo}/upload/
|
815
|
+
local_var_path = "/packages/{owner}/{repo}/upload/docker/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
812
816
|
|
813
817
|
# query parameters
|
814
818
|
query_params = {}
|
@@ -823,7 +827,7 @@ module CloudsmithApi
|
|
823
827
|
|
824
828
|
# http body (model)
|
825
829
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
826
|
-
auth_names = ['apikey', '
|
830
|
+
auth_names = ['apikey', 'csrf_token']
|
827
831
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
828
832
|
:header_params => header_params,
|
829
833
|
:query_params => query_params,
|
@@ -832,44 +836,44 @@ module CloudsmithApi
|
|
832
836
|
:auth_names => auth_names,
|
833
837
|
:return_type => 'Package')
|
834
838
|
if @api_client.config.debugging
|
835
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
839
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_docker\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
836
840
|
end
|
837
841
|
return data, status_code, headers
|
838
842
|
end
|
839
843
|
|
840
|
-
# Create a new
|
841
|
-
# Create a new
|
844
|
+
# Create a new Go package
|
845
|
+
# Create a new Go package
|
842
846
|
# @param owner
|
843
847
|
# @param repo
|
844
848
|
# @param [Hash] opts the optional parameters
|
845
|
-
# @option opts [
|
849
|
+
# @option opts [PackagesUploadGo] :data
|
846
850
|
# @return [Package]
|
847
|
-
def
|
848
|
-
data, _status_code, _headers =
|
851
|
+
def packages_upload_go(owner, repo, opts = {})
|
852
|
+
data, _status_code, _headers = packages_upload_go_with_http_info(owner, repo, opts)
|
849
853
|
return data
|
850
854
|
end
|
851
855
|
|
852
|
-
# Create a new
|
853
|
-
# Create a new
|
856
|
+
# Create a new Go package
|
857
|
+
# Create a new Go package
|
854
858
|
# @param owner
|
855
859
|
# @param repo
|
856
860
|
# @param [Hash] opts the optional parameters
|
857
|
-
# @option opts [
|
861
|
+
# @option opts [PackagesUploadGo] :data
|
858
862
|
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
859
|
-
def
|
863
|
+
def packages_upload_go_with_http_info(owner, repo, opts = {})
|
860
864
|
if @api_client.config.debugging
|
861
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
865
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_go ..."
|
862
866
|
end
|
863
867
|
# verify the required parameter 'owner' is set
|
864
868
|
if @api_client.config.client_side_validation && owner.nil?
|
865
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
869
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_go"
|
866
870
|
end
|
867
871
|
# verify the required parameter 'repo' is set
|
868
872
|
if @api_client.config.client_side_validation && repo.nil?
|
869
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
873
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_go"
|
870
874
|
end
|
871
875
|
# resource path
|
872
|
-
local_var_path = "/packages/{owner}/{repo}/upload/
|
876
|
+
local_var_path = "/packages/{owner}/{repo}/upload/go/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
873
877
|
|
874
878
|
# query parameters
|
875
879
|
query_params = {}
|
@@ -884,7 +888,7 @@ module CloudsmithApi
|
|
884
888
|
|
885
889
|
# http body (model)
|
886
890
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
887
|
-
auth_names = ['apikey', '
|
891
|
+
auth_names = ['apikey', 'csrf_token']
|
888
892
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
889
893
|
:header_params => header_params,
|
890
894
|
:query_params => query_params,
|
@@ -893,44 +897,44 @@ module CloudsmithApi
|
|
893
897
|
:auth_names => auth_names,
|
894
898
|
:return_type => 'Package')
|
895
899
|
if @api_client.config.debugging
|
896
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
900
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_go\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
897
901
|
end
|
898
902
|
return data, status_code, headers
|
899
903
|
end
|
900
904
|
|
901
|
-
# Create a new
|
902
|
-
# Create a new
|
905
|
+
# Create a new Helm package
|
906
|
+
# Create a new Helm package
|
903
907
|
# @param owner
|
904
908
|
# @param repo
|
905
909
|
# @param [Hash] opts the optional parameters
|
906
|
-
# @option opts [
|
907
|
-
# @return [
|
908
|
-
def
|
909
|
-
data, _status_code, _headers =
|
910
|
+
# @option opts [PackagesUploadHelm] :data
|
911
|
+
# @return [Package]
|
912
|
+
def packages_upload_helm(owner, repo, opts = {})
|
913
|
+
data, _status_code, _headers = packages_upload_helm_with_http_info(owner, repo, opts)
|
910
914
|
return data
|
911
915
|
end
|
912
916
|
|
913
|
-
# Create a new
|
914
|
-
# Create a new
|
917
|
+
# Create a new Helm package
|
918
|
+
# Create a new Helm package
|
915
919
|
# @param owner
|
916
920
|
# @param repo
|
917
921
|
# @param [Hash] opts the optional parameters
|
918
|
-
# @option opts [
|
919
|
-
# @return [Array<(
|
920
|
-
def
|
922
|
+
# @option opts [PackagesUploadHelm] :data
|
923
|
+
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
924
|
+
def packages_upload_helm_with_http_info(owner, repo, opts = {})
|
921
925
|
if @api_client.config.debugging
|
922
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
926
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_helm ..."
|
923
927
|
end
|
924
928
|
# verify the required parameter 'owner' is set
|
925
929
|
if @api_client.config.client_side_validation && owner.nil?
|
926
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
930
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_helm"
|
927
931
|
end
|
928
932
|
# verify the required parameter 'repo' is set
|
929
933
|
if @api_client.config.client_side_validation && repo.nil?
|
930
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
934
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_helm"
|
931
935
|
end
|
932
936
|
# resource path
|
933
|
-
local_var_path = "/packages/{owner}/{repo}/upload/
|
937
|
+
local_var_path = "/packages/{owner}/{repo}/upload/helm/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
934
938
|
|
935
939
|
# query parameters
|
936
940
|
query_params = {}
|
@@ -945,53 +949,53 @@ module CloudsmithApi
|
|
945
949
|
|
946
950
|
# http body (model)
|
947
951
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
948
|
-
auth_names = ['apikey', '
|
952
|
+
auth_names = ['apikey', 'csrf_token']
|
949
953
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
950
954
|
:header_params => header_params,
|
951
955
|
:query_params => query_params,
|
952
956
|
:form_params => form_params,
|
953
957
|
:body => post_body,
|
954
958
|
:auth_names => auth_names,
|
955
|
-
:return_type => '
|
959
|
+
:return_type => 'Package')
|
956
960
|
if @api_client.config.debugging
|
957
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
961
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_helm\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
958
962
|
end
|
959
963
|
return data, status_code, headers
|
960
964
|
end
|
961
965
|
|
962
|
-
#
|
963
|
-
#
|
966
|
+
# Create a new LuaRocks package
|
967
|
+
# Create a new LuaRocks package
|
964
968
|
# @param owner
|
965
969
|
# @param repo
|
966
970
|
# @param [Hash] opts the optional parameters
|
967
|
-
# @option opts [
|
968
|
-
# @return [
|
969
|
-
def
|
970
|
-
|
971
|
-
return
|
971
|
+
# @option opts [PackagesUploadLuarocks] :data
|
972
|
+
# @return [Package]
|
973
|
+
def packages_upload_luarocks(owner, repo, opts = {})
|
974
|
+
data, _status_code, _headers = packages_upload_luarocks_with_http_info(owner, repo, opts)
|
975
|
+
return data
|
972
976
|
end
|
973
977
|
|
974
|
-
#
|
975
|
-
#
|
978
|
+
# Create a new LuaRocks package
|
979
|
+
# Create a new LuaRocks package
|
976
980
|
# @param owner
|
977
981
|
# @param repo
|
978
982
|
# @param [Hash] opts the optional parameters
|
979
|
-
# @option opts [
|
980
|
-
# @return [Array<(
|
981
|
-
def
|
983
|
+
# @option opts [PackagesUploadLuarocks] :data
|
984
|
+
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
985
|
+
def packages_upload_luarocks_with_http_info(owner, repo, opts = {})
|
982
986
|
if @api_client.config.debugging
|
983
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
987
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_luarocks ..."
|
984
988
|
end
|
985
989
|
# verify the required parameter 'owner' is set
|
986
990
|
if @api_client.config.client_side_validation && owner.nil?
|
987
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
991
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_luarocks"
|
988
992
|
end
|
989
993
|
# verify the required parameter 'repo' is set
|
990
994
|
if @api_client.config.client_side_validation && repo.nil?
|
991
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
995
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_luarocks"
|
992
996
|
end
|
993
997
|
# resource path
|
994
|
-
local_var_path = "/packages/{owner}/{repo}/
|
998
|
+
local_var_path = "/packages/{owner}/{repo}/upload/luarocks/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
995
999
|
|
996
1000
|
# query parameters
|
997
1001
|
query_params = {}
|
@@ -1006,52 +1010,53 @@ module CloudsmithApi
|
|
1006
1010
|
|
1007
1011
|
# http body (model)
|
1008
1012
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1009
|
-
auth_names = ['apikey', '
|
1013
|
+
auth_names = ['apikey', 'csrf_token']
|
1010
1014
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1011
1015
|
:header_params => header_params,
|
1012
1016
|
:query_params => query_params,
|
1013
1017
|
:form_params => form_params,
|
1014
1018
|
:body => post_body,
|
1015
|
-
:auth_names => auth_names
|
1019
|
+
:auth_names => auth_names,
|
1020
|
+
:return_type => 'Package')
|
1016
1021
|
if @api_client.config.debugging
|
1017
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
1022
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_luarocks\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1018
1023
|
end
|
1019
1024
|
return data, status_code, headers
|
1020
1025
|
end
|
1021
1026
|
|
1022
|
-
#
|
1023
|
-
#
|
1027
|
+
# Create a new Maven package
|
1028
|
+
# Create a new Maven package
|
1024
1029
|
# @param owner
|
1025
1030
|
# @param repo
|
1026
1031
|
# @param [Hash] opts the optional parameters
|
1027
|
-
# @option opts [
|
1028
|
-
# @return [
|
1029
|
-
def
|
1030
|
-
|
1031
|
-
return
|
1032
|
+
# @option opts [PackagesUploadMaven] :data
|
1033
|
+
# @return [MavenPackageUpload]
|
1034
|
+
def packages_upload_maven(owner, repo, opts = {})
|
1035
|
+
data, _status_code, _headers = packages_upload_maven_with_http_info(owner, repo, opts)
|
1036
|
+
return data
|
1032
1037
|
end
|
1033
1038
|
|
1034
|
-
#
|
1035
|
-
#
|
1039
|
+
# Create a new Maven package
|
1040
|
+
# Create a new Maven package
|
1036
1041
|
# @param owner
|
1037
1042
|
# @param repo
|
1038
1043
|
# @param [Hash] opts the optional parameters
|
1039
|
-
# @option opts [
|
1040
|
-
# @return [Array<(
|
1041
|
-
def
|
1044
|
+
# @option opts [PackagesUploadMaven] :data
|
1045
|
+
# @return [Array<(MavenPackageUpload, Fixnum, Hash)>] MavenPackageUpload data, response status code and response headers
|
1046
|
+
def packages_upload_maven_with_http_info(owner, repo, opts = {})
|
1042
1047
|
if @api_client.config.debugging
|
1043
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
1048
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_maven ..."
|
1044
1049
|
end
|
1045
1050
|
# verify the required parameter 'owner' is set
|
1046
1051
|
if @api_client.config.client_side_validation && owner.nil?
|
1047
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
1052
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_maven"
|
1048
1053
|
end
|
1049
1054
|
# verify the required parameter 'repo' is set
|
1050
1055
|
if @api_client.config.client_side_validation && repo.nil?
|
1051
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
1056
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_maven"
|
1052
1057
|
end
|
1053
1058
|
# resource path
|
1054
|
-
local_var_path = "/packages/{owner}/{repo}/
|
1059
|
+
local_var_path = "/packages/{owner}/{repo}/upload/maven/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1055
1060
|
|
1056
1061
|
# query parameters
|
1057
1062
|
query_params = {}
|
@@ -1066,52 +1071,53 @@ module CloudsmithApi
|
|
1066
1071
|
|
1067
1072
|
# http body (model)
|
1068
1073
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1069
|
-
auth_names = ['apikey', '
|
1074
|
+
auth_names = ['apikey', 'csrf_token']
|
1070
1075
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1071
1076
|
:header_params => header_params,
|
1072
1077
|
:query_params => query_params,
|
1073
1078
|
:form_params => form_params,
|
1074
1079
|
:body => post_body,
|
1075
|
-
:auth_names => auth_names
|
1080
|
+
:auth_names => auth_names,
|
1081
|
+
:return_type => 'MavenPackageUpload')
|
1076
1082
|
if @api_client.config.debugging
|
1077
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
1083
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_maven\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1078
1084
|
end
|
1079
1085
|
return data, status_code, headers
|
1080
1086
|
end
|
1081
1087
|
|
1082
|
-
#
|
1083
|
-
#
|
1088
|
+
# Create a new npm package
|
1089
|
+
# Create a new npm package
|
1084
1090
|
# @param owner
|
1085
1091
|
# @param repo
|
1086
1092
|
# @param [Hash] opts the optional parameters
|
1087
|
-
# @option opts [
|
1088
|
-
# @return [
|
1089
|
-
def
|
1090
|
-
|
1091
|
-
return
|
1093
|
+
# @option opts [PackagesUploadNpm] :data
|
1094
|
+
# @return [Package]
|
1095
|
+
def packages_upload_npm(owner, repo, opts = {})
|
1096
|
+
data, _status_code, _headers = packages_upload_npm_with_http_info(owner, repo, opts)
|
1097
|
+
return data
|
1092
1098
|
end
|
1093
1099
|
|
1094
|
-
#
|
1095
|
-
#
|
1100
|
+
# Create a new npm package
|
1101
|
+
# Create a new npm package
|
1096
1102
|
# @param owner
|
1097
1103
|
# @param repo
|
1098
1104
|
# @param [Hash] opts the optional parameters
|
1099
|
-
# @option opts [
|
1100
|
-
# @return [Array<(
|
1101
|
-
def
|
1105
|
+
# @option opts [PackagesUploadNpm] :data
|
1106
|
+
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
1107
|
+
def packages_upload_npm_with_http_info(owner, repo, opts = {})
|
1102
1108
|
if @api_client.config.debugging
|
1103
|
-
@api_client.config.logger.debug "Calling API: PackagesApi.
|
1109
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_npm ..."
|
1104
1110
|
end
|
1105
1111
|
# verify the required parameter 'owner' is set
|
1106
1112
|
if @api_client.config.client_side_validation && owner.nil?
|
1107
|
-
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.
|
1113
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_npm"
|
1108
1114
|
end
|
1109
1115
|
# verify the required parameter 'repo' is set
|
1110
1116
|
if @api_client.config.client_side_validation && repo.nil?
|
1111
|
-
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.
|
1117
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_npm"
|
1112
1118
|
end
|
1113
1119
|
# resource path
|
1114
|
-
local_var_path = "/packages/{owner}/{repo}/
|
1120
|
+
local_var_path = "/packages/{owner}/{repo}/upload/npm/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1115
1121
|
|
1116
1122
|
# query parameters
|
1117
1123
|
query_params = {}
|
@@ -1126,15 +1132,1102 @@ module CloudsmithApi
|
|
1126
1132
|
|
1127
1133
|
# http body (model)
|
1128
1134
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1129
|
-
auth_names = ['apikey', '
|
1135
|
+
auth_names = ['apikey', 'csrf_token']
|
1130
1136
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1131
1137
|
:header_params => header_params,
|
1132
1138
|
:query_params => query_params,
|
1133
1139
|
:form_params => form_params,
|
1134
1140
|
:body => post_body,
|
1135
|
-
:auth_names => auth_names
|
1141
|
+
:auth_names => auth_names,
|
1142
|
+
:return_type => 'Package')
|
1136
1143
|
if @api_client.config.debugging
|
1137
|
-
@api_client.config.logger.debug "API called: PackagesApi#
|
1144
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_npm\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1145
|
+
end
|
1146
|
+
return data, status_code, headers
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
# Create a new NuGet package
|
1150
|
+
# Create a new NuGet package
|
1151
|
+
# @param owner
|
1152
|
+
# @param repo
|
1153
|
+
# @param [Hash] opts the optional parameters
|
1154
|
+
# @option opts [PackagesUploadNuget] :data
|
1155
|
+
# @return [Package]
|
1156
|
+
def packages_upload_nuget(owner, repo, opts = {})
|
1157
|
+
data, _status_code, _headers = packages_upload_nuget_with_http_info(owner, repo, opts)
|
1158
|
+
return data
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
# Create a new NuGet package
|
1162
|
+
# Create a new NuGet package
|
1163
|
+
# @param owner
|
1164
|
+
# @param repo
|
1165
|
+
# @param [Hash] opts the optional parameters
|
1166
|
+
# @option opts [PackagesUploadNuget] :data
|
1167
|
+
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
1168
|
+
def packages_upload_nuget_with_http_info(owner, repo, opts = {})
|
1169
|
+
if @api_client.config.debugging
|
1170
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_nuget ..."
|
1171
|
+
end
|
1172
|
+
# verify the required parameter 'owner' is set
|
1173
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1174
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_nuget"
|
1175
|
+
end
|
1176
|
+
# verify the required parameter 'repo' is set
|
1177
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1178
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_nuget"
|
1179
|
+
end
|
1180
|
+
# resource path
|
1181
|
+
local_var_path = "/packages/{owner}/{repo}/upload/nuget/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1182
|
+
|
1183
|
+
# query parameters
|
1184
|
+
query_params = {}
|
1185
|
+
|
1186
|
+
# header parameters
|
1187
|
+
header_params = {}
|
1188
|
+
# HTTP header 'Content-Type'
|
1189
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1190
|
+
|
1191
|
+
# form parameters
|
1192
|
+
form_params = {}
|
1193
|
+
|
1194
|
+
# http body (model)
|
1195
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1196
|
+
auth_names = ['apikey', 'csrf_token']
|
1197
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1198
|
+
:header_params => header_params,
|
1199
|
+
:query_params => query_params,
|
1200
|
+
:form_params => form_params,
|
1201
|
+
:body => post_body,
|
1202
|
+
:auth_names => auth_names,
|
1203
|
+
:return_type => 'Package')
|
1204
|
+
if @api_client.config.debugging
|
1205
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_nuget\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1206
|
+
end
|
1207
|
+
return data, status_code, headers
|
1208
|
+
end
|
1209
|
+
|
1210
|
+
# Create a new Python package
|
1211
|
+
# Create a new Python package
|
1212
|
+
# @param owner
|
1213
|
+
# @param repo
|
1214
|
+
# @param [Hash] opts the optional parameters
|
1215
|
+
# @option opts [PackagesUploadPython] :data
|
1216
|
+
# @return [Package]
|
1217
|
+
def packages_upload_python(owner, repo, opts = {})
|
1218
|
+
data, _status_code, _headers = packages_upload_python_with_http_info(owner, repo, opts)
|
1219
|
+
return data
|
1220
|
+
end
|
1221
|
+
|
1222
|
+
# Create a new Python package
|
1223
|
+
# Create a new Python package
|
1224
|
+
# @param owner
|
1225
|
+
# @param repo
|
1226
|
+
# @param [Hash] opts the optional parameters
|
1227
|
+
# @option opts [PackagesUploadPython] :data
|
1228
|
+
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
1229
|
+
def packages_upload_python_with_http_info(owner, repo, opts = {})
|
1230
|
+
if @api_client.config.debugging
|
1231
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_python ..."
|
1232
|
+
end
|
1233
|
+
# verify the required parameter 'owner' is set
|
1234
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1235
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_python"
|
1236
|
+
end
|
1237
|
+
# verify the required parameter 'repo' is set
|
1238
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1239
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_python"
|
1240
|
+
end
|
1241
|
+
# resource path
|
1242
|
+
local_var_path = "/packages/{owner}/{repo}/upload/python/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1243
|
+
|
1244
|
+
# query parameters
|
1245
|
+
query_params = {}
|
1246
|
+
|
1247
|
+
# header parameters
|
1248
|
+
header_params = {}
|
1249
|
+
# HTTP header 'Content-Type'
|
1250
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1251
|
+
|
1252
|
+
# form parameters
|
1253
|
+
form_params = {}
|
1254
|
+
|
1255
|
+
# http body (model)
|
1256
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1257
|
+
auth_names = ['apikey', 'csrf_token']
|
1258
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1259
|
+
:header_params => header_params,
|
1260
|
+
:query_params => query_params,
|
1261
|
+
:form_params => form_params,
|
1262
|
+
:body => post_body,
|
1263
|
+
:auth_names => auth_names,
|
1264
|
+
:return_type => 'Package')
|
1265
|
+
if @api_client.config.debugging
|
1266
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_python\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1267
|
+
end
|
1268
|
+
return data, status_code, headers
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
# Create a new Raw package
|
1272
|
+
# Create a new Raw package
|
1273
|
+
# @param owner
|
1274
|
+
# @param repo
|
1275
|
+
# @param [Hash] opts the optional parameters
|
1276
|
+
# @option opts [PackagesUploadRaw] :data
|
1277
|
+
# @return [RawPackageUpload]
|
1278
|
+
def packages_upload_raw(owner, repo, opts = {})
|
1279
|
+
data, _status_code, _headers = packages_upload_raw_with_http_info(owner, repo, opts)
|
1280
|
+
return data
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
# Create a new Raw package
|
1284
|
+
# Create a new Raw package
|
1285
|
+
# @param owner
|
1286
|
+
# @param repo
|
1287
|
+
# @param [Hash] opts the optional parameters
|
1288
|
+
# @option opts [PackagesUploadRaw] :data
|
1289
|
+
# @return [Array<(RawPackageUpload, Fixnum, Hash)>] RawPackageUpload data, response status code and response headers
|
1290
|
+
def packages_upload_raw_with_http_info(owner, repo, opts = {})
|
1291
|
+
if @api_client.config.debugging
|
1292
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_raw ..."
|
1293
|
+
end
|
1294
|
+
# verify the required parameter 'owner' is set
|
1295
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1296
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_raw"
|
1297
|
+
end
|
1298
|
+
# verify the required parameter 'repo' is set
|
1299
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1300
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_raw"
|
1301
|
+
end
|
1302
|
+
# resource path
|
1303
|
+
local_var_path = "/packages/{owner}/{repo}/upload/raw/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1304
|
+
|
1305
|
+
# query parameters
|
1306
|
+
query_params = {}
|
1307
|
+
|
1308
|
+
# header parameters
|
1309
|
+
header_params = {}
|
1310
|
+
# HTTP header 'Content-Type'
|
1311
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1312
|
+
|
1313
|
+
# form parameters
|
1314
|
+
form_params = {}
|
1315
|
+
|
1316
|
+
# http body (model)
|
1317
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1318
|
+
auth_names = ['apikey', 'csrf_token']
|
1319
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1320
|
+
:header_params => header_params,
|
1321
|
+
:query_params => query_params,
|
1322
|
+
:form_params => form_params,
|
1323
|
+
:body => post_body,
|
1324
|
+
:auth_names => auth_names,
|
1325
|
+
:return_type => 'RawPackageUpload')
|
1326
|
+
if @api_client.config.debugging
|
1327
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_raw\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1328
|
+
end
|
1329
|
+
return data, status_code, headers
|
1330
|
+
end
|
1331
|
+
|
1332
|
+
# Create a new RedHat package
|
1333
|
+
# Create a new RedHat package
|
1334
|
+
# @param owner
|
1335
|
+
# @param repo
|
1336
|
+
# @param [Hash] opts the optional parameters
|
1337
|
+
# @option opts [PackagesUploadRpm] :data
|
1338
|
+
# @return [Package]
|
1339
|
+
def packages_upload_rpm(owner, repo, opts = {})
|
1340
|
+
data, _status_code, _headers = packages_upload_rpm_with_http_info(owner, repo, opts)
|
1341
|
+
return data
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
# Create a new RedHat package
|
1345
|
+
# Create a new RedHat package
|
1346
|
+
# @param owner
|
1347
|
+
# @param repo
|
1348
|
+
# @param [Hash] opts the optional parameters
|
1349
|
+
# @option opts [PackagesUploadRpm] :data
|
1350
|
+
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
1351
|
+
def packages_upload_rpm_with_http_info(owner, repo, opts = {})
|
1352
|
+
if @api_client.config.debugging
|
1353
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_rpm ..."
|
1354
|
+
end
|
1355
|
+
# verify the required parameter 'owner' is set
|
1356
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1357
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_rpm"
|
1358
|
+
end
|
1359
|
+
# verify the required parameter 'repo' is set
|
1360
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1361
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_rpm"
|
1362
|
+
end
|
1363
|
+
# resource path
|
1364
|
+
local_var_path = "/packages/{owner}/{repo}/upload/rpm/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1365
|
+
|
1366
|
+
# query parameters
|
1367
|
+
query_params = {}
|
1368
|
+
|
1369
|
+
# header parameters
|
1370
|
+
header_params = {}
|
1371
|
+
# HTTP header 'Content-Type'
|
1372
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1373
|
+
|
1374
|
+
# form parameters
|
1375
|
+
form_params = {}
|
1376
|
+
|
1377
|
+
# http body (model)
|
1378
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1379
|
+
auth_names = ['apikey', 'csrf_token']
|
1380
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1381
|
+
:header_params => header_params,
|
1382
|
+
:query_params => query_params,
|
1383
|
+
:form_params => form_params,
|
1384
|
+
:body => post_body,
|
1385
|
+
:auth_names => auth_names,
|
1386
|
+
:return_type => 'Package')
|
1387
|
+
if @api_client.config.debugging
|
1388
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_rpm\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1389
|
+
end
|
1390
|
+
return data, status_code, headers
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
# Create a new Ruby package
|
1394
|
+
# Create a new Ruby package
|
1395
|
+
# @param owner
|
1396
|
+
# @param repo
|
1397
|
+
# @param [Hash] opts the optional parameters
|
1398
|
+
# @option opts [PackagesUploadRuby] :data
|
1399
|
+
# @return [Package]
|
1400
|
+
def packages_upload_ruby(owner, repo, opts = {})
|
1401
|
+
data, _status_code, _headers = packages_upload_ruby_with_http_info(owner, repo, opts)
|
1402
|
+
return data
|
1403
|
+
end
|
1404
|
+
|
1405
|
+
# Create a new Ruby package
|
1406
|
+
# Create a new Ruby package
|
1407
|
+
# @param owner
|
1408
|
+
# @param repo
|
1409
|
+
# @param [Hash] opts the optional parameters
|
1410
|
+
# @option opts [PackagesUploadRuby] :data
|
1411
|
+
# @return [Array<(Package, Fixnum, Hash)>] Package data, response status code and response headers
|
1412
|
+
def packages_upload_ruby_with_http_info(owner, repo, opts = {})
|
1413
|
+
if @api_client.config.debugging
|
1414
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_ruby ..."
|
1415
|
+
end
|
1416
|
+
# verify the required parameter 'owner' is set
|
1417
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1418
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_ruby"
|
1419
|
+
end
|
1420
|
+
# verify the required parameter 'repo' is set
|
1421
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1422
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_ruby"
|
1423
|
+
end
|
1424
|
+
# resource path
|
1425
|
+
local_var_path = "/packages/{owner}/{repo}/upload/ruby/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1426
|
+
|
1427
|
+
# query parameters
|
1428
|
+
query_params = {}
|
1429
|
+
|
1430
|
+
# header parameters
|
1431
|
+
header_params = {}
|
1432
|
+
# HTTP header 'Content-Type'
|
1433
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1434
|
+
|
1435
|
+
# form parameters
|
1436
|
+
form_params = {}
|
1437
|
+
|
1438
|
+
# http body (model)
|
1439
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1440
|
+
auth_names = ['apikey', 'csrf_token']
|
1441
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1442
|
+
:header_params => header_params,
|
1443
|
+
:query_params => query_params,
|
1444
|
+
:form_params => form_params,
|
1445
|
+
:body => post_body,
|
1446
|
+
:auth_names => auth_names,
|
1447
|
+
:return_type => 'Package')
|
1448
|
+
if @api_client.config.debugging
|
1449
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_ruby\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1450
|
+
end
|
1451
|
+
return data, status_code, headers
|
1452
|
+
end
|
1453
|
+
|
1454
|
+
# Create a new Vagrant package
|
1455
|
+
# Create a new Vagrant package
|
1456
|
+
# @param owner
|
1457
|
+
# @param repo
|
1458
|
+
# @param [Hash] opts the optional parameters
|
1459
|
+
# @option opts [PackagesUploadVagrant] :data
|
1460
|
+
# @return [VagrantPackageUpload]
|
1461
|
+
def packages_upload_vagrant(owner, repo, opts = {})
|
1462
|
+
data, _status_code, _headers = packages_upload_vagrant_with_http_info(owner, repo, opts)
|
1463
|
+
return data
|
1464
|
+
end
|
1465
|
+
|
1466
|
+
# Create a new Vagrant package
|
1467
|
+
# Create a new Vagrant package
|
1468
|
+
# @param owner
|
1469
|
+
# @param repo
|
1470
|
+
# @param [Hash] opts the optional parameters
|
1471
|
+
# @option opts [PackagesUploadVagrant] :data
|
1472
|
+
# @return [Array<(VagrantPackageUpload, Fixnum, Hash)>] VagrantPackageUpload data, response status code and response headers
|
1473
|
+
def packages_upload_vagrant_with_http_info(owner, repo, opts = {})
|
1474
|
+
if @api_client.config.debugging
|
1475
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_upload_vagrant ..."
|
1476
|
+
end
|
1477
|
+
# verify the required parameter 'owner' is set
|
1478
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1479
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_upload_vagrant"
|
1480
|
+
end
|
1481
|
+
# verify the required parameter 'repo' is set
|
1482
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1483
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_upload_vagrant"
|
1484
|
+
end
|
1485
|
+
# resource path
|
1486
|
+
local_var_path = "/packages/{owner}/{repo}/upload/vagrant/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1487
|
+
|
1488
|
+
# query parameters
|
1489
|
+
query_params = {}
|
1490
|
+
|
1491
|
+
# header parameters
|
1492
|
+
header_params = {}
|
1493
|
+
# HTTP header 'Content-Type'
|
1494
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1495
|
+
|
1496
|
+
# form parameters
|
1497
|
+
form_params = {}
|
1498
|
+
|
1499
|
+
# http body (model)
|
1500
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1501
|
+
auth_names = ['apikey', 'csrf_token']
|
1502
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1503
|
+
:header_params => header_params,
|
1504
|
+
:query_params => query_params,
|
1505
|
+
:form_params => form_params,
|
1506
|
+
:body => post_body,
|
1507
|
+
:auth_names => auth_names,
|
1508
|
+
:return_type => 'VagrantPackageUpload')
|
1509
|
+
if @api_client.config.debugging
|
1510
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_upload_vagrant\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1511
|
+
end
|
1512
|
+
return data, status_code, headers
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
# Validate parameters for create Alpine package
|
1516
|
+
# Validate parameters for create Alpine package
|
1517
|
+
# @param owner
|
1518
|
+
# @param repo
|
1519
|
+
# @param [Hash] opts the optional parameters
|
1520
|
+
# @option opts [PackagesValidateuploadAlpine] :data
|
1521
|
+
# @return [nil]
|
1522
|
+
def packages_validate_upload_alpine(owner, repo, opts = {})
|
1523
|
+
packages_validate_upload_alpine_with_http_info(owner, repo, opts)
|
1524
|
+
return nil
|
1525
|
+
end
|
1526
|
+
|
1527
|
+
# Validate parameters for create Alpine package
|
1528
|
+
# Validate parameters for create Alpine package
|
1529
|
+
# @param owner
|
1530
|
+
# @param repo
|
1531
|
+
# @param [Hash] opts the optional parameters
|
1532
|
+
# @option opts [PackagesValidateuploadAlpine] :data
|
1533
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1534
|
+
def packages_validate_upload_alpine_with_http_info(owner, repo, opts = {})
|
1535
|
+
if @api_client.config.debugging
|
1536
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_alpine ..."
|
1537
|
+
end
|
1538
|
+
# verify the required parameter 'owner' is set
|
1539
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1540
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_alpine"
|
1541
|
+
end
|
1542
|
+
# verify the required parameter 'repo' is set
|
1543
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1544
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_alpine"
|
1545
|
+
end
|
1546
|
+
# resource path
|
1547
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/alpine/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1548
|
+
|
1549
|
+
# query parameters
|
1550
|
+
query_params = {}
|
1551
|
+
|
1552
|
+
# header parameters
|
1553
|
+
header_params = {}
|
1554
|
+
# HTTP header 'Content-Type'
|
1555
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1556
|
+
|
1557
|
+
# form parameters
|
1558
|
+
form_params = {}
|
1559
|
+
|
1560
|
+
# http body (model)
|
1561
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1562
|
+
auth_names = ['apikey', 'csrf_token']
|
1563
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1564
|
+
:header_params => header_params,
|
1565
|
+
:query_params => query_params,
|
1566
|
+
:form_params => form_params,
|
1567
|
+
:body => post_body,
|
1568
|
+
:auth_names => auth_names)
|
1569
|
+
if @api_client.config.debugging
|
1570
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_alpine\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1571
|
+
end
|
1572
|
+
return data, status_code, headers
|
1573
|
+
end
|
1574
|
+
|
1575
|
+
# Validate parameters for create Cargo package
|
1576
|
+
# Validate parameters for create Cargo package
|
1577
|
+
# @param owner
|
1578
|
+
# @param repo
|
1579
|
+
# @param [Hash] opts the optional parameters
|
1580
|
+
# @option opts [PackagesValidateuploadCargo] :data
|
1581
|
+
# @return [nil]
|
1582
|
+
def packages_validate_upload_cargo(owner, repo, opts = {})
|
1583
|
+
packages_validate_upload_cargo_with_http_info(owner, repo, opts)
|
1584
|
+
return nil
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
# Validate parameters for create Cargo package
|
1588
|
+
# Validate parameters for create Cargo package
|
1589
|
+
# @param owner
|
1590
|
+
# @param repo
|
1591
|
+
# @param [Hash] opts the optional parameters
|
1592
|
+
# @option opts [PackagesValidateuploadCargo] :data
|
1593
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1594
|
+
def packages_validate_upload_cargo_with_http_info(owner, repo, opts = {})
|
1595
|
+
if @api_client.config.debugging
|
1596
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_cargo ..."
|
1597
|
+
end
|
1598
|
+
# verify the required parameter 'owner' is set
|
1599
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1600
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_cargo"
|
1601
|
+
end
|
1602
|
+
# verify the required parameter 'repo' is set
|
1603
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1604
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_cargo"
|
1605
|
+
end
|
1606
|
+
# resource path
|
1607
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/cargo/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1608
|
+
|
1609
|
+
# query parameters
|
1610
|
+
query_params = {}
|
1611
|
+
|
1612
|
+
# header parameters
|
1613
|
+
header_params = {}
|
1614
|
+
# HTTP header 'Content-Type'
|
1615
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1616
|
+
|
1617
|
+
# form parameters
|
1618
|
+
form_params = {}
|
1619
|
+
|
1620
|
+
# http body (model)
|
1621
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1622
|
+
auth_names = ['apikey', 'csrf_token']
|
1623
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1624
|
+
:header_params => header_params,
|
1625
|
+
:query_params => query_params,
|
1626
|
+
:form_params => form_params,
|
1627
|
+
:body => post_body,
|
1628
|
+
:auth_names => auth_names)
|
1629
|
+
if @api_client.config.debugging
|
1630
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_cargo\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1631
|
+
end
|
1632
|
+
return data, status_code, headers
|
1633
|
+
end
|
1634
|
+
|
1635
|
+
# Validate parameters for create Composer package
|
1636
|
+
# Validate parameters for create Composer package
|
1637
|
+
# @param owner
|
1638
|
+
# @param repo
|
1639
|
+
# @param [Hash] opts the optional parameters
|
1640
|
+
# @option opts [PackagesValidateuploadComposer] :data
|
1641
|
+
# @return [nil]
|
1642
|
+
def packages_validate_upload_composer(owner, repo, opts = {})
|
1643
|
+
packages_validate_upload_composer_with_http_info(owner, repo, opts)
|
1644
|
+
return nil
|
1645
|
+
end
|
1646
|
+
|
1647
|
+
# Validate parameters for create Composer package
|
1648
|
+
# Validate parameters for create Composer package
|
1649
|
+
# @param owner
|
1650
|
+
# @param repo
|
1651
|
+
# @param [Hash] opts the optional parameters
|
1652
|
+
# @option opts [PackagesValidateuploadComposer] :data
|
1653
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1654
|
+
def packages_validate_upload_composer_with_http_info(owner, repo, opts = {})
|
1655
|
+
if @api_client.config.debugging
|
1656
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_composer ..."
|
1657
|
+
end
|
1658
|
+
# verify the required parameter 'owner' is set
|
1659
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1660
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_composer"
|
1661
|
+
end
|
1662
|
+
# verify the required parameter 'repo' is set
|
1663
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1664
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_composer"
|
1665
|
+
end
|
1666
|
+
# resource path
|
1667
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/composer/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1668
|
+
|
1669
|
+
# query parameters
|
1670
|
+
query_params = {}
|
1671
|
+
|
1672
|
+
# header parameters
|
1673
|
+
header_params = {}
|
1674
|
+
# HTTP header 'Content-Type'
|
1675
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1676
|
+
|
1677
|
+
# form parameters
|
1678
|
+
form_params = {}
|
1679
|
+
|
1680
|
+
# http body (model)
|
1681
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1682
|
+
auth_names = ['apikey', 'csrf_token']
|
1683
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1684
|
+
:header_params => header_params,
|
1685
|
+
:query_params => query_params,
|
1686
|
+
:form_params => form_params,
|
1687
|
+
:body => post_body,
|
1688
|
+
:auth_names => auth_names)
|
1689
|
+
if @api_client.config.debugging
|
1690
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_composer\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1691
|
+
end
|
1692
|
+
return data, status_code, headers
|
1693
|
+
end
|
1694
|
+
|
1695
|
+
# Validate parameters for create CRAN package
|
1696
|
+
# Validate parameters for create CRAN package
|
1697
|
+
# @param owner
|
1698
|
+
# @param repo
|
1699
|
+
# @param [Hash] opts the optional parameters
|
1700
|
+
# @option opts [PackagesValidateuploadCran] :data
|
1701
|
+
# @return [nil]
|
1702
|
+
def packages_validate_upload_cran(owner, repo, opts = {})
|
1703
|
+
packages_validate_upload_cran_with_http_info(owner, repo, opts)
|
1704
|
+
return nil
|
1705
|
+
end
|
1706
|
+
|
1707
|
+
# Validate parameters for create CRAN package
|
1708
|
+
# Validate parameters for create CRAN package
|
1709
|
+
# @param owner
|
1710
|
+
# @param repo
|
1711
|
+
# @param [Hash] opts the optional parameters
|
1712
|
+
# @option opts [PackagesValidateuploadCran] :data
|
1713
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1714
|
+
def packages_validate_upload_cran_with_http_info(owner, repo, opts = {})
|
1715
|
+
if @api_client.config.debugging
|
1716
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_cran ..."
|
1717
|
+
end
|
1718
|
+
# verify the required parameter 'owner' is set
|
1719
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1720
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_cran"
|
1721
|
+
end
|
1722
|
+
# verify the required parameter 'repo' is set
|
1723
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1724
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_cran"
|
1725
|
+
end
|
1726
|
+
# resource path
|
1727
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/cran/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1728
|
+
|
1729
|
+
# query parameters
|
1730
|
+
query_params = {}
|
1731
|
+
|
1732
|
+
# header parameters
|
1733
|
+
header_params = {}
|
1734
|
+
# HTTP header 'Content-Type'
|
1735
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1736
|
+
|
1737
|
+
# form parameters
|
1738
|
+
form_params = {}
|
1739
|
+
|
1740
|
+
# http body (model)
|
1741
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1742
|
+
auth_names = ['apikey', 'csrf_token']
|
1743
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1744
|
+
:header_params => header_params,
|
1745
|
+
:query_params => query_params,
|
1746
|
+
:form_params => form_params,
|
1747
|
+
:body => post_body,
|
1748
|
+
:auth_names => auth_names)
|
1749
|
+
if @api_client.config.debugging
|
1750
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_cran\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1751
|
+
end
|
1752
|
+
return data, status_code, headers
|
1753
|
+
end
|
1754
|
+
|
1755
|
+
# Validate parameters for create Debian package
|
1756
|
+
# Validate parameters for create Debian package
|
1757
|
+
# @param owner
|
1758
|
+
# @param repo
|
1759
|
+
# @param [Hash] opts the optional parameters
|
1760
|
+
# @option opts [PackagesValidateuploadDeb] :data
|
1761
|
+
# @return [nil]
|
1762
|
+
def packages_validate_upload_deb(owner, repo, opts = {})
|
1763
|
+
packages_validate_upload_deb_with_http_info(owner, repo, opts)
|
1764
|
+
return nil
|
1765
|
+
end
|
1766
|
+
|
1767
|
+
# Validate parameters for create Debian package
|
1768
|
+
# Validate parameters for create Debian package
|
1769
|
+
# @param owner
|
1770
|
+
# @param repo
|
1771
|
+
# @param [Hash] opts the optional parameters
|
1772
|
+
# @option opts [PackagesValidateuploadDeb] :data
|
1773
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1774
|
+
def packages_validate_upload_deb_with_http_info(owner, repo, opts = {})
|
1775
|
+
if @api_client.config.debugging
|
1776
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_deb ..."
|
1777
|
+
end
|
1778
|
+
# verify the required parameter 'owner' is set
|
1779
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1780
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_deb"
|
1781
|
+
end
|
1782
|
+
# verify the required parameter 'repo' is set
|
1783
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1784
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_deb"
|
1785
|
+
end
|
1786
|
+
# resource path
|
1787
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/deb/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1788
|
+
|
1789
|
+
# query parameters
|
1790
|
+
query_params = {}
|
1791
|
+
|
1792
|
+
# header parameters
|
1793
|
+
header_params = {}
|
1794
|
+
# HTTP header 'Content-Type'
|
1795
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1796
|
+
|
1797
|
+
# form parameters
|
1798
|
+
form_params = {}
|
1799
|
+
|
1800
|
+
# http body (model)
|
1801
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1802
|
+
auth_names = ['apikey', 'csrf_token']
|
1803
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1804
|
+
:header_params => header_params,
|
1805
|
+
:query_params => query_params,
|
1806
|
+
:form_params => form_params,
|
1807
|
+
:body => post_body,
|
1808
|
+
:auth_names => auth_names)
|
1809
|
+
if @api_client.config.debugging
|
1810
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_deb\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1811
|
+
end
|
1812
|
+
return data, status_code, headers
|
1813
|
+
end
|
1814
|
+
|
1815
|
+
# Validate parameters for create Docker package
|
1816
|
+
# Validate parameters for create Docker package
|
1817
|
+
# @param owner
|
1818
|
+
# @param repo
|
1819
|
+
# @param [Hash] opts the optional parameters
|
1820
|
+
# @option opts [PackagesValidateuploadDocker] :data
|
1821
|
+
# @return [nil]
|
1822
|
+
def packages_validate_upload_docker(owner, repo, opts = {})
|
1823
|
+
packages_validate_upload_docker_with_http_info(owner, repo, opts)
|
1824
|
+
return nil
|
1825
|
+
end
|
1826
|
+
|
1827
|
+
# Validate parameters for create Docker package
|
1828
|
+
# Validate parameters for create Docker package
|
1829
|
+
# @param owner
|
1830
|
+
# @param repo
|
1831
|
+
# @param [Hash] opts the optional parameters
|
1832
|
+
# @option opts [PackagesValidateuploadDocker] :data
|
1833
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1834
|
+
def packages_validate_upload_docker_with_http_info(owner, repo, opts = {})
|
1835
|
+
if @api_client.config.debugging
|
1836
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_docker ..."
|
1837
|
+
end
|
1838
|
+
# verify the required parameter 'owner' is set
|
1839
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1840
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_docker"
|
1841
|
+
end
|
1842
|
+
# verify the required parameter 'repo' is set
|
1843
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1844
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_docker"
|
1845
|
+
end
|
1846
|
+
# resource path
|
1847
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/docker/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1848
|
+
|
1849
|
+
# query parameters
|
1850
|
+
query_params = {}
|
1851
|
+
|
1852
|
+
# header parameters
|
1853
|
+
header_params = {}
|
1854
|
+
# HTTP header 'Content-Type'
|
1855
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1856
|
+
|
1857
|
+
# form parameters
|
1858
|
+
form_params = {}
|
1859
|
+
|
1860
|
+
# http body (model)
|
1861
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1862
|
+
auth_names = ['apikey', 'csrf_token']
|
1863
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1864
|
+
:header_params => header_params,
|
1865
|
+
:query_params => query_params,
|
1866
|
+
:form_params => form_params,
|
1867
|
+
:body => post_body,
|
1868
|
+
:auth_names => auth_names)
|
1869
|
+
if @api_client.config.debugging
|
1870
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_docker\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1871
|
+
end
|
1872
|
+
return data, status_code, headers
|
1873
|
+
end
|
1874
|
+
|
1875
|
+
# Validate parameters for create Go package
|
1876
|
+
# Validate parameters for create Go package
|
1877
|
+
# @param owner
|
1878
|
+
# @param repo
|
1879
|
+
# @param [Hash] opts the optional parameters
|
1880
|
+
# @option opts [PackagesValidateuploadGo] :data
|
1881
|
+
# @return [nil]
|
1882
|
+
def packages_validate_upload_go(owner, repo, opts = {})
|
1883
|
+
packages_validate_upload_go_with_http_info(owner, repo, opts)
|
1884
|
+
return nil
|
1885
|
+
end
|
1886
|
+
|
1887
|
+
# Validate parameters for create Go package
|
1888
|
+
# Validate parameters for create Go package
|
1889
|
+
# @param owner
|
1890
|
+
# @param repo
|
1891
|
+
# @param [Hash] opts the optional parameters
|
1892
|
+
# @option opts [PackagesValidateuploadGo] :data
|
1893
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1894
|
+
def packages_validate_upload_go_with_http_info(owner, repo, opts = {})
|
1895
|
+
if @api_client.config.debugging
|
1896
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_go ..."
|
1897
|
+
end
|
1898
|
+
# verify the required parameter 'owner' is set
|
1899
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1900
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_go"
|
1901
|
+
end
|
1902
|
+
# verify the required parameter 'repo' is set
|
1903
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1904
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_go"
|
1905
|
+
end
|
1906
|
+
# resource path
|
1907
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/go/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1908
|
+
|
1909
|
+
# query parameters
|
1910
|
+
query_params = {}
|
1911
|
+
|
1912
|
+
# header parameters
|
1913
|
+
header_params = {}
|
1914
|
+
# HTTP header 'Content-Type'
|
1915
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1916
|
+
|
1917
|
+
# form parameters
|
1918
|
+
form_params = {}
|
1919
|
+
|
1920
|
+
# http body (model)
|
1921
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1922
|
+
auth_names = ['apikey', 'csrf_token']
|
1923
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1924
|
+
:header_params => header_params,
|
1925
|
+
:query_params => query_params,
|
1926
|
+
:form_params => form_params,
|
1927
|
+
:body => post_body,
|
1928
|
+
:auth_names => auth_names)
|
1929
|
+
if @api_client.config.debugging
|
1930
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_go\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1931
|
+
end
|
1932
|
+
return data, status_code, headers
|
1933
|
+
end
|
1934
|
+
|
1935
|
+
# Validate parameters for create Helm package
|
1936
|
+
# Validate parameters for create Helm package
|
1937
|
+
# @param owner
|
1938
|
+
# @param repo
|
1939
|
+
# @param [Hash] opts the optional parameters
|
1940
|
+
# @option opts [PackagesValidateuploadHelm] :data
|
1941
|
+
# @return [nil]
|
1942
|
+
def packages_validate_upload_helm(owner, repo, opts = {})
|
1943
|
+
packages_validate_upload_helm_with_http_info(owner, repo, opts)
|
1944
|
+
return nil
|
1945
|
+
end
|
1946
|
+
|
1947
|
+
# Validate parameters for create Helm package
|
1948
|
+
# Validate parameters for create Helm package
|
1949
|
+
# @param owner
|
1950
|
+
# @param repo
|
1951
|
+
# @param [Hash] opts the optional parameters
|
1952
|
+
# @option opts [PackagesValidateuploadHelm] :data
|
1953
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1954
|
+
def packages_validate_upload_helm_with_http_info(owner, repo, opts = {})
|
1955
|
+
if @api_client.config.debugging
|
1956
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_helm ..."
|
1957
|
+
end
|
1958
|
+
# verify the required parameter 'owner' is set
|
1959
|
+
if @api_client.config.client_side_validation && owner.nil?
|
1960
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_helm"
|
1961
|
+
end
|
1962
|
+
# verify the required parameter 'repo' is set
|
1963
|
+
if @api_client.config.client_side_validation && repo.nil?
|
1964
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_helm"
|
1965
|
+
end
|
1966
|
+
# resource path
|
1967
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/helm/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
1968
|
+
|
1969
|
+
# query parameters
|
1970
|
+
query_params = {}
|
1971
|
+
|
1972
|
+
# header parameters
|
1973
|
+
header_params = {}
|
1974
|
+
# HTTP header 'Content-Type'
|
1975
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1976
|
+
|
1977
|
+
# form parameters
|
1978
|
+
form_params = {}
|
1979
|
+
|
1980
|
+
# http body (model)
|
1981
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1982
|
+
auth_names = ['apikey', 'csrf_token']
|
1983
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1984
|
+
:header_params => header_params,
|
1985
|
+
:query_params => query_params,
|
1986
|
+
:form_params => form_params,
|
1987
|
+
:body => post_body,
|
1988
|
+
:auth_names => auth_names)
|
1989
|
+
if @api_client.config.debugging
|
1990
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_helm\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1991
|
+
end
|
1992
|
+
return data, status_code, headers
|
1993
|
+
end
|
1994
|
+
|
1995
|
+
# Validate parameters for create LuaRocks package
|
1996
|
+
# Validate parameters for create LuaRocks package
|
1997
|
+
# @param owner
|
1998
|
+
# @param repo
|
1999
|
+
# @param [Hash] opts the optional parameters
|
2000
|
+
# @option opts [PackagesValidateuploadLuarocks] :data
|
2001
|
+
# @return [nil]
|
2002
|
+
def packages_validate_upload_luarocks(owner, repo, opts = {})
|
2003
|
+
packages_validate_upload_luarocks_with_http_info(owner, repo, opts)
|
2004
|
+
return nil
|
2005
|
+
end
|
2006
|
+
|
2007
|
+
# Validate parameters for create LuaRocks package
|
2008
|
+
# Validate parameters for create LuaRocks package
|
2009
|
+
# @param owner
|
2010
|
+
# @param repo
|
2011
|
+
# @param [Hash] opts the optional parameters
|
2012
|
+
# @option opts [PackagesValidateuploadLuarocks] :data
|
2013
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
2014
|
+
def packages_validate_upload_luarocks_with_http_info(owner, repo, opts = {})
|
2015
|
+
if @api_client.config.debugging
|
2016
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_luarocks ..."
|
2017
|
+
end
|
2018
|
+
# verify the required parameter 'owner' is set
|
2019
|
+
if @api_client.config.client_side_validation && owner.nil?
|
2020
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_luarocks"
|
2021
|
+
end
|
2022
|
+
# verify the required parameter 'repo' is set
|
2023
|
+
if @api_client.config.client_side_validation && repo.nil?
|
2024
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_luarocks"
|
2025
|
+
end
|
2026
|
+
# resource path
|
2027
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/luarocks/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
2028
|
+
|
2029
|
+
# query parameters
|
2030
|
+
query_params = {}
|
2031
|
+
|
2032
|
+
# header parameters
|
2033
|
+
header_params = {}
|
2034
|
+
# HTTP header 'Content-Type'
|
2035
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
2036
|
+
|
2037
|
+
# form parameters
|
2038
|
+
form_params = {}
|
2039
|
+
|
2040
|
+
# http body (model)
|
2041
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
2042
|
+
auth_names = ['apikey', 'csrf_token']
|
2043
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
2044
|
+
:header_params => header_params,
|
2045
|
+
:query_params => query_params,
|
2046
|
+
:form_params => form_params,
|
2047
|
+
:body => post_body,
|
2048
|
+
:auth_names => auth_names)
|
2049
|
+
if @api_client.config.debugging
|
2050
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_luarocks\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
2051
|
+
end
|
2052
|
+
return data, status_code, headers
|
2053
|
+
end
|
2054
|
+
|
2055
|
+
# Validate parameters for create Maven package
|
2056
|
+
# Validate parameters for create Maven package
|
2057
|
+
# @param owner
|
2058
|
+
# @param repo
|
2059
|
+
# @param [Hash] opts the optional parameters
|
2060
|
+
# @option opts [PackagesValidateuploadMaven] :data
|
2061
|
+
# @return [nil]
|
2062
|
+
def packages_validate_upload_maven(owner, repo, opts = {})
|
2063
|
+
packages_validate_upload_maven_with_http_info(owner, repo, opts)
|
2064
|
+
return nil
|
2065
|
+
end
|
2066
|
+
|
2067
|
+
# Validate parameters for create Maven package
|
2068
|
+
# Validate parameters for create Maven package
|
2069
|
+
# @param owner
|
2070
|
+
# @param repo
|
2071
|
+
# @param [Hash] opts the optional parameters
|
2072
|
+
# @option opts [PackagesValidateuploadMaven] :data
|
2073
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
2074
|
+
def packages_validate_upload_maven_with_http_info(owner, repo, opts = {})
|
2075
|
+
if @api_client.config.debugging
|
2076
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_maven ..."
|
2077
|
+
end
|
2078
|
+
# verify the required parameter 'owner' is set
|
2079
|
+
if @api_client.config.client_side_validation && owner.nil?
|
2080
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_maven"
|
2081
|
+
end
|
2082
|
+
# verify the required parameter 'repo' is set
|
2083
|
+
if @api_client.config.client_side_validation && repo.nil?
|
2084
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_maven"
|
2085
|
+
end
|
2086
|
+
# resource path
|
2087
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/maven/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
2088
|
+
|
2089
|
+
# query parameters
|
2090
|
+
query_params = {}
|
2091
|
+
|
2092
|
+
# header parameters
|
2093
|
+
header_params = {}
|
2094
|
+
# HTTP header 'Content-Type'
|
2095
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
2096
|
+
|
2097
|
+
# form parameters
|
2098
|
+
form_params = {}
|
2099
|
+
|
2100
|
+
# http body (model)
|
2101
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
2102
|
+
auth_names = ['apikey', 'csrf_token']
|
2103
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
2104
|
+
:header_params => header_params,
|
2105
|
+
:query_params => query_params,
|
2106
|
+
:form_params => form_params,
|
2107
|
+
:body => post_body,
|
2108
|
+
:auth_names => auth_names)
|
2109
|
+
if @api_client.config.debugging
|
2110
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_maven\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
2111
|
+
end
|
2112
|
+
return data, status_code, headers
|
2113
|
+
end
|
2114
|
+
|
2115
|
+
# Validate parameters for create npm package
|
2116
|
+
# Validate parameters for create npm package
|
2117
|
+
# @param owner
|
2118
|
+
# @param repo
|
2119
|
+
# @param [Hash] opts the optional parameters
|
2120
|
+
# @option opts [PackagesValidateuploadNpm] :data
|
2121
|
+
# @return [nil]
|
2122
|
+
def packages_validate_upload_npm(owner, repo, opts = {})
|
2123
|
+
packages_validate_upload_npm_with_http_info(owner, repo, opts)
|
2124
|
+
return nil
|
2125
|
+
end
|
2126
|
+
|
2127
|
+
# Validate parameters for create npm package
|
2128
|
+
# Validate parameters for create npm package
|
2129
|
+
# @param owner
|
2130
|
+
# @param repo
|
2131
|
+
# @param [Hash] opts the optional parameters
|
2132
|
+
# @option opts [PackagesValidateuploadNpm] :data
|
2133
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
2134
|
+
def packages_validate_upload_npm_with_http_info(owner, repo, opts = {})
|
2135
|
+
if @api_client.config.debugging
|
2136
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_npm ..."
|
2137
|
+
end
|
2138
|
+
# verify the required parameter 'owner' is set
|
2139
|
+
if @api_client.config.client_side_validation && owner.nil?
|
2140
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_npm"
|
2141
|
+
end
|
2142
|
+
# verify the required parameter 'repo' is set
|
2143
|
+
if @api_client.config.client_side_validation && repo.nil?
|
2144
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_npm"
|
2145
|
+
end
|
2146
|
+
# resource path
|
2147
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/npm/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
2148
|
+
|
2149
|
+
# query parameters
|
2150
|
+
query_params = {}
|
2151
|
+
|
2152
|
+
# header parameters
|
2153
|
+
header_params = {}
|
2154
|
+
# HTTP header 'Content-Type'
|
2155
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
2156
|
+
|
2157
|
+
# form parameters
|
2158
|
+
form_params = {}
|
2159
|
+
|
2160
|
+
# http body (model)
|
2161
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
2162
|
+
auth_names = ['apikey', 'csrf_token']
|
2163
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
2164
|
+
:header_params => header_params,
|
2165
|
+
:query_params => query_params,
|
2166
|
+
:form_params => form_params,
|
2167
|
+
:body => post_body,
|
2168
|
+
:auth_names => auth_names)
|
2169
|
+
if @api_client.config.debugging
|
2170
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_npm\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
2171
|
+
end
|
2172
|
+
return data, status_code, headers
|
2173
|
+
end
|
2174
|
+
|
2175
|
+
# Validate parameters for create NuGet package
|
2176
|
+
# Validate parameters for create NuGet package
|
2177
|
+
# @param owner
|
2178
|
+
# @param repo
|
2179
|
+
# @param [Hash] opts the optional parameters
|
2180
|
+
# @option opts [PackagesValidateuploadNuget] :data
|
2181
|
+
# @return [nil]
|
2182
|
+
def packages_validate_upload_nuget(owner, repo, opts = {})
|
2183
|
+
packages_validate_upload_nuget_with_http_info(owner, repo, opts)
|
2184
|
+
return nil
|
2185
|
+
end
|
2186
|
+
|
2187
|
+
# Validate parameters for create NuGet package
|
2188
|
+
# Validate parameters for create NuGet package
|
2189
|
+
# @param owner
|
2190
|
+
# @param repo
|
2191
|
+
# @param [Hash] opts the optional parameters
|
2192
|
+
# @option opts [PackagesValidateuploadNuget] :data
|
2193
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
2194
|
+
def packages_validate_upload_nuget_with_http_info(owner, repo, opts = {})
|
2195
|
+
if @api_client.config.debugging
|
2196
|
+
@api_client.config.logger.debug "Calling API: PackagesApi.packages_validate_upload_nuget ..."
|
2197
|
+
end
|
2198
|
+
# verify the required parameter 'owner' is set
|
2199
|
+
if @api_client.config.client_side_validation && owner.nil?
|
2200
|
+
fail ArgumentError, "Missing the required parameter 'owner' when calling PackagesApi.packages_validate_upload_nuget"
|
2201
|
+
end
|
2202
|
+
# verify the required parameter 'repo' is set
|
2203
|
+
if @api_client.config.client_side_validation && repo.nil?
|
2204
|
+
fail ArgumentError, "Missing the required parameter 'repo' when calling PackagesApi.packages_validate_upload_nuget"
|
2205
|
+
end
|
2206
|
+
# resource path
|
2207
|
+
local_var_path = "/packages/{owner}/{repo}/validate-upload/nuget/".sub('{' + 'owner' + '}', owner.to_s).sub('{' + 'repo' + '}', repo.to_s)
|
2208
|
+
|
2209
|
+
# query parameters
|
2210
|
+
query_params = {}
|
2211
|
+
|
2212
|
+
# header parameters
|
2213
|
+
header_params = {}
|
2214
|
+
# HTTP header 'Content-Type'
|
2215
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
2216
|
+
|
2217
|
+
# form parameters
|
2218
|
+
form_params = {}
|
2219
|
+
|
2220
|
+
# http body (model)
|
2221
|
+
post_body = @api_client.object_to_http_body(opts[:'data'])
|
2222
|
+
auth_names = ['apikey', 'csrf_token']
|
2223
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
2224
|
+
:header_params => header_params,
|
2225
|
+
:query_params => query_params,
|
2226
|
+
:form_params => form_params,
|
2227
|
+
:body => post_body,
|
2228
|
+
:auth_names => auth_names)
|
2229
|
+
if @api_client.config.debugging
|
2230
|
+
@api_client.config.logger.debug "API called: PackagesApi#packages_validate_upload_nuget\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1138
2231
|
end
|
1139
2232
|
return data, status_code, headers
|
1140
2233
|
end
|
@@ -1186,7 +2279,7 @@ module CloudsmithApi
|
|
1186
2279
|
|
1187
2280
|
# http body (model)
|
1188
2281
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1189
|
-
auth_names = ['apikey', '
|
2282
|
+
auth_names = ['apikey', 'csrf_token']
|
1190
2283
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1191
2284
|
:header_params => header_params,
|
1192
2285
|
:query_params => query_params,
|
@@ -1246,7 +2339,7 @@ module CloudsmithApi
|
|
1246
2339
|
|
1247
2340
|
# http body (model)
|
1248
2341
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1249
|
-
auth_names = ['apikey', '
|
2342
|
+
auth_names = ['apikey', 'csrf_token']
|
1250
2343
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1251
2344
|
:header_params => header_params,
|
1252
2345
|
:query_params => query_params,
|
@@ -1306,7 +2399,7 @@ module CloudsmithApi
|
|
1306
2399
|
|
1307
2400
|
# http body (model)
|
1308
2401
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1309
|
-
auth_names = ['apikey', '
|
2402
|
+
auth_names = ['apikey', 'csrf_token']
|
1310
2403
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1311
2404
|
:header_params => header_params,
|
1312
2405
|
:query_params => query_params,
|
@@ -1366,7 +2459,7 @@ module CloudsmithApi
|
|
1366
2459
|
|
1367
2460
|
# http body (model)
|
1368
2461
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1369
|
-
auth_names = ['apikey', '
|
2462
|
+
auth_names = ['apikey', 'csrf_token']
|
1370
2463
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1371
2464
|
:header_params => header_params,
|
1372
2465
|
:query_params => query_params,
|
@@ -1426,7 +2519,7 @@ module CloudsmithApi
|
|
1426
2519
|
|
1427
2520
|
# http body (model)
|
1428
2521
|
post_body = @api_client.object_to_http_body(opts[:'data'])
|
1429
|
-
auth_names = ['apikey', '
|
2522
|
+
auth_names = ['apikey', 'csrf_token']
|
1430
2523
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
1431
2524
|
:header_params => header_params,
|
1432
2525
|
:query_params => query_params,
|