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
@@ -0,0 +1,11 @@
|
|
1
|
+
# CloudsmithApi::FilesComplete
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**filename** | **String** | Filename for the package file upload. |
|
7
|
+
**md5_checksum** | **String** | MD5 checksum for a POST-based package file upload. | [optional]
|
8
|
+
**method** | **String** | The method to use for package file upload. | [optional]
|
9
|
+
**sha256_checksum** | **String** | SHA256 checksum for a PUT-based package file upload. | [optional]
|
10
|
+
|
11
|
+
|
data/docs/FilesCreate.md
CHANGED
@@ -4,6 +4,8 @@
|
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**filename** | **String** | Filename for the package file upload. |
|
7
|
-
**md5_checksum** | **String** | MD5 checksum for
|
7
|
+
**md5_checksum** | **String** | MD5 checksum for a POST-based package file upload. | [optional]
|
8
|
+
**method** | **String** | The method to use for package file upload. | [optional]
|
9
|
+
**sha256_checksum** | **String** | SHA256 checksum for a PUT-based package file upload. | [optional]
|
8
10
|
|
9
11
|
|
data/docs/FilesValidate.md
CHANGED
@@ -4,6 +4,8 @@
|
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**filename** | **String** | Filename for the package file upload. |
|
7
|
-
**md5_checksum** | **String** | MD5 checksum for
|
7
|
+
**md5_checksum** | **String** | MD5 checksum for a POST-based package file upload. | [optional]
|
8
|
+
**method** | **String** | The method to use for package file upload. | [optional]
|
9
|
+
**sha256_checksum** | **String** | SHA256 checksum for a PUT-based package file upload. | [optional]
|
8
10
|
|
9
11
|
|
data/docs/FormatsApi.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# CloudsmithApi::FormatsApi
|
2
2
|
|
3
|
-
All URIs are relative to *https://api.cloudsmith.io
|
3
|
+
All URIs are relative to *https://api.cloudsmith.io*
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
@@ -26,10 +26,6 @@ CloudsmithApi.configure do |config|
|
|
26
26
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
27
27
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
28
28
|
|
29
|
-
# Configure HTTP basic authorization: basic
|
30
|
-
config.username = 'YOUR USERNAME'
|
31
|
-
config.password = 'YOUR PASSWORD'
|
32
|
-
|
33
29
|
# Configure API key authorization: csrf_token
|
34
30
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
35
31
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -56,7 +52,7 @@ This endpoint does not need any parameter.
|
|
56
52
|
|
57
53
|
### Authorization
|
58
54
|
|
59
|
-
[apikey](../README.md#apikey), [
|
55
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
60
56
|
|
61
57
|
### HTTP request headers
|
62
58
|
|
@@ -83,10 +79,6 @@ CloudsmithApi.configure do |config|
|
|
83
79
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
84
80
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
85
81
|
|
86
|
-
# Configure HTTP basic authorization: basic
|
87
|
-
config.username = 'YOUR USERNAME'
|
88
|
-
config.password = 'YOUR PASSWORD'
|
89
|
-
|
90
82
|
# Configure API key authorization: csrf_token
|
91
83
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
92
84
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -119,7 +111,7 @@ Name | Type | Description | Notes
|
|
119
111
|
|
120
112
|
### Authorization
|
121
113
|
|
122
|
-
[apikey](../README.md#apikey), [
|
114
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
123
115
|
|
124
116
|
### HTTP request headers
|
125
117
|
|
data/docs/MavenPackageUpload.md
CHANGED
@@ -59,7 +59,7 @@ Name | Type | Description | Notes
|
|
59
59
|
**uploaded_at** | **String** | The date this package was uploaded. | [optional]
|
60
60
|
**uploader** | **String** | | [optional]
|
61
61
|
**uploader_url** | **String** | | [optional]
|
62
|
-
**version** | **String** | The version
|
62
|
+
**version** | **String** | The raw version for this package. | [optional]
|
63
63
|
**version_orig** | **String** | | [optional]
|
64
64
|
|
65
65
|
|
data/docs/NamespacesApi.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# CloudsmithApi::NamespacesApi
|
2
2
|
|
3
|
-
All URIs are relative to *https://api.cloudsmith.io
|
3
|
+
All URIs are relative to *https://api.cloudsmith.io*
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
@@ -26,10 +26,6 @@ CloudsmithApi.configure do |config|
|
|
26
26
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
27
27
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
28
28
|
|
29
|
-
# Configure HTTP basic authorization: basic
|
30
|
-
config.username = 'YOUR USERNAME'
|
31
|
-
config.password = 'YOUR PASSWORD'
|
32
|
-
|
33
29
|
# Configure API key authorization: csrf_token
|
34
30
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
35
31
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -65,7 +61,7 @@ Name | Type | Description | Notes
|
|
65
61
|
|
66
62
|
### Authorization
|
67
63
|
|
68
|
-
[apikey](../README.md#apikey), [
|
64
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
69
65
|
|
70
66
|
### HTTP request headers
|
71
67
|
|
@@ -92,10 +88,6 @@ CloudsmithApi.configure do |config|
|
|
92
88
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
93
89
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
94
90
|
|
95
|
-
# Configure HTTP basic authorization: basic
|
96
|
-
config.username = 'YOUR USERNAME'
|
97
|
-
config.password = 'YOUR PASSWORD'
|
98
|
-
|
99
91
|
# Configure API key authorization: csrf_token
|
100
92
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
101
93
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -128,7 +120,7 @@ Name | Type | Description | Notes
|
|
128
120
|
|
129
121
|
### Authorization
|
130
122
|
|
131
|
-
[apikey](../README.md#apikey), [
|
123
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
132
124
|
|
133
125
|
### HTTP request headers
|
134
126
|
|
data/docs/OrgsApi.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# CloudsmithApi::OrgsApi
|
2
2
|
|
3
|
-
All URIs are relative to *https://api.cloudsmith.io
|
3
|
+
All URIs are relative to *https://api.cloudsmith.io*
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
@@ -26,10 +26,6 @@ CloudsmithApi.configure do |config|
|
|
26
26
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
27
27
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
28
28
|
|
29
|
-
# Configure HTTP basic authorization: basic
|
30
|
-
config.username = 'YOUR USERNAME'
|
31
|
-
config.password = 'YOUR PASSWORD'
|
32
|
-
|
33
29
|
# Configure API key authorization: csrf_token
|
34
30
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
35
31
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -65,7 +61,7 @@ Name | Type | Description | Notes
|
|
65
61
|
|
66
62
|
### Authorization
|
67
63
|
|
68
|
-
[apikey](../README.md#apikey), [
|
64
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
69
65
|
|
70
66
|
### HTTP request headers
|
71
67
|
|
@@ -92,10 +88,6 @@ CloudsmithApi.configure do |config|
|
|
92
88
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
93
89
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
94
90
|
|
95
|
-
# Configure HTTP basic authorization: basic
|
96
|
-
config.username = 'YOUR USERNAME'
|
97
|
-
config.password = 'YOUR PASSWORD'
|
98
|
-
|
99
91
|
# Configure API key authorization: csrf_token
|
100
92
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
101
93
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -128,7 +120,7 @@ Name | Type | Description | Notes
|
|
128
120
|
|
129
121
|
### Authorization
|
130
122
|
|
131
|
-
[apikey](../README.md#apikey), [
|
123
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
132
124
|
|
133
125
|
### HTTP request headers
|
134
126
|
|
data/docs/Package.md
CHANGED
@@ -56,7 +56,7 @@ Name | Type | Description | Notes
|
|
56
56
|
**uploaded_at** | **String** | The date this package was uploaded. | [optional]
|
57
57
|
**uploader** | **String** | | [optional]
|
58
58
|
**uploader_url** | **String** | | [optional]
|
59
|
-
**version** | **String** | The version
|
59
|
+
**version** | **String** | The raw version for this package. | [optional]
|
60
60
|
**version_orig** | **String** | | [optional]
|
61
61
|
|
62
62
|
|
data/docs/PackageCopy.md
CHANGED
@@ -56,7 +56,7 @@ Name | Type | Description | Notes
|
|
56
56
|
**uploaded_at** | **String** | The date this package was uploaded. | [optional]
|
57
57
|
**uploader** | **String** | | [optional]
|
58
58
|
**uploader_url** | **String** | | [optional]
|
59
|
-
**version** | **String** | The version
|
59
|
+
**version** | **String** | The raw version for this package. | [optional]
|
60
60
|
**version_orig** | **String** | | [optional]
|
61
61
|
|
62
62
|
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# CloudsmithApi::PackageFilePartsUpload
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**identifier** | **String** | The identifier for the file to use uploading parts. | [optional]
|
7
|
+
**upload_querystring** | **String** | The querystring to use for the next-step PUT upload. | [optional]
|
8
|
+
**upload_url** | **String** | The URL to use for the next-step PUT upload | [optional]
|
9
|
+
|
10
|
+
|
data/docs/PackageFileUpload.md
CHANGED
@@ -5,6 +5,8 @@ Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**identifier** | **String** | The identifier for the file to use when creating packages | [optional]
|
7
7
|
**upload_fields** | **Object** | The dictionary of fields that must be sent with POST uploads | [optional]
|
8
|
-
**
|
8
|
+
**upload_headers** | **Object** | The dictionary of headers that must be sent with uploads | [optional]
|
9
|
+
**upload_querystring** | **String** | The querystring to use for the next-step POST or PUT upload | [optional]
|
10
|
+
**upload_url** | **String** | The URL to use for the next-step POST or PUT upload | [optional]
|
9
11
|
|
10
12
|
|
data/docs/PackageMove.md
CHANGED
@@ -56,7 +56,7 @@ Name | Type | Description | Notes
|
|
56
56
|
**uploaded_at** | **String** | The date this package was uploaded. | [optional]
|
57
57
|
**uploader** | **String** | | [optional]
|
58
58
|
**uploader_url** | **String** | | [optional]
|
59
|
-
**version** | **String** | The version
|
59
|
+
**version** | **String** | The raw version for this package. | [optional]
|
60
60
|
**version_orig** | **String** | | [optional]
|
61
61
|
|
62
62
|
|
data/docs/PackagesApi.md
CHANGED
@@ -1,27 +1,45 @@
|
|
1
1
|
# CloudsmithApi::PackagesApi
|
2
2
|
|
3
|
-
All URIs are relative to *https://api.cloudsmith.io
|
3
|
+
All URIs are relative to *https://api.cloudsmith.io*
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
7
|
[**packages_copy**](PackagesApi.md#packages_copy) | **POST** /packages/{owner}/{repo}/{identifier}/copy/ | Copy a package to another repository.
|
8
8
|
[**packages_delete**](PackagesApi.md#packages_delete) | **DELETE** /packages/{owner}/{repo}/{identifier}/ | Delete a specific package in a repository.
|
9
|
-
[**packages_list**](PackagesApi.md#packages_list) | **GET** /packages/{owner}/{repo}/ |
|
9
|
+
[**packages_list**](PackagesApi.md#packages_list) | **GET** /packages/{owner}/{repo}/ | Get a list of all packages associated with repository.
|
10
10
|
[**packages_move**](PackagesApi.md#packages_move) | **POST** /packages/{owner}/{repo}/{identifier}/move/ | Move a package to another repository.
|
11
11
|
[**packages_read**](PackagesApi.md#packages_read) | **GET** /packages/{owner}/{repo}/{identifier}/ | Get a specific package in a repository.
|
12
12
|
[**packages_resync**](PackagesApi.md#packages_resync) | **POST** /packages/{owner}/{repo}/{identifier}/resync/ | Schedule a package for resynchronisation.
|
13
13
|
[**packages_status**](PackagesApi.md#packages_status) | **GET** /packages/{owner}/{repo}/{identifier}/status/ | Get the synchronisation status for a package.
|
14
|
+
[**packages_upload_alpine**](PackagesApi.md#packages_upload_alpine) | **POST** /packages/{owner}/{repo}/upload/alpine/ | Create a new Alpine package
|
15
|
+
[**packages_upload_cargo**](PackagesApi.md#packages_upload_cargo) | **POST** /packages/{owner}/{repo}/upload/cargo/ | Create a new Cargo package
|
14
16
|
[**packages_upload_composer**](PackagesApi.md#packages_upload_composer) | **POST** /packages/{owner}/{repo}/upload/composer/ | Create a new Composer package
|
17
|
+
[**packages_upload_cran**](PackagesApi.md#packages_upload_cran) | **POST** /packages/{owner}/{repo}/upload/cran/ | Create a new CRAN package
|
15
18
|
[**packages_upload_deb**](PackagesApi.md#packages_upload_deb) | **POST** /packages/{owner}/{repo}/upload/deb/ | Create a new Debian package
|
19
|
+
[**packages_upload_docker**](PackagesApi.md#packages_upload_docker) | **POST** /packages/{owner}/{repo}/upload/docker/ | Create a new Docker package
|
20
|
+
[**packages_upload_go**](PackagesApi.md#packages_upload_go) | **POST** /packages/{owner}/{repo}/upload/go/ | Create a new Go package
|
21
|
+
[**packages_upload_helm**](PackagesApi.md#packages_upload_helm) | **POST** /packages/{owner}/{repo}/upload/helm/ | Create a new Helm package
|
22
|
+
[**packages_upload_luarocks**](PackagesApi.md#packages_upload_luarocks) | **POST** /packages/{owner}/{repo}/upload/luarocks/ | Create a new LuaRocks package
|
16
23
|
[**packages_upload_maven**](PackagesApi.md#packages_upload_maven) | **POST** /packages/{owner}/{repo}/upload/maven/ | Create a new Maven package
|
24
|
+
[**packages_upload_npm**](PackagesApi.md#packages_upload_npm) | **POST** /packages/{owner}/{repo}/upload/npm/ | Create a new npm package
|
25
|
+
[**packages_upload_nuget**](PackagesApi.md#packages_upload_nuget) | **POST** /packages/{owner}/{repo}/upload/nuget/ | Create a new NuGet package
|
17
26
|
[**packages_upload_python**](PackagesApi.md#packages_upload_python) | **POST** /packages/{owner}/{repo}/upload/python/ | Create a new Python package
|
18
27
|
[**packages_upload_raw**](PackagesApi.md#packages_upload_raw) | **POST** /packages/{owner}/{repo}/upload/raw/ | Create a new Raw package
|
19
28
|
[**packages_upload_rpm**](PackagesApi.md#packages_upload_rpm) | **POST** /packages/{owner}/{repo}/upload/rpm/ | Create a new RedHat package
|
20
29
|
[**packages_upload_ruby**](PackagesApi.md#packages_upload_ruby) | **POST** /packages/{owner}/{repo}/upload/ruby/ | Create a new Ruby package
|
21
30
|
[**packages_upload_vagrant**](PackagesApi.md#packages_upload_vagrant) | **POST** /packages/{owner}/{repo}/upload/vagrant/ | Create a new Vagrant package
|
31
|
+
[**packages_validate_upload_alpine**](PackagesApi.md#packages_validate_upload_alpine) | **POST** /packages/{owner}/{repo}/validate-upload/alpine/ | Validate parameters for create Alpine package
|
32
|
+
[**packages_validate_upload_cargo**](PackagesApi.md#packages_validate_upload_cargo) | **POST** /packages/{owner}/{repo}/validate-upload/cargo/ | Validate parameters for create Cargo package
|
22
33
|
[**packages_validate_upload_composer**](PackagesApi.md#packages_validate_upload_composer) | **POST** /packages/{owner}/{repo}/validate-upload/composer/ | Validate parameters for create Composer package
|
34
|
+
[**packages_validate_upload_cran**](PackagesApi.md#packages_validate_upload_cran) | **POST** /packages/{owner}/{repo}/validate-upload/cran/ | Validate parameters for create CRAN package
|
23
35
|
[**packages_validate_upload_deb**](PackagesApi.md#packages_validate_upload_deb) | **POST** /packages/{owner}/{repo}/validate-upload/deb/ | Validate parameters for create Debian package
|
36
|
+
[**packages_validate_upload_docker**](PackagesApi.md#packages_validate_upload_docker) | **POST** /packages/{owner}/{repo}/validate-upload/docker/ | Validate parameters for create Docker package
|
37
|
+
[**packages_validate_upload_go**](PackagesApi.md#packages_validate_upload_go) | **POST** /packages/{owner}/{repo}/validate-upload/go/ | Validate parameters for create Go package
|
38
|
+
[**packages_validate_upload_helm**](PackagesApi.md#packages_validate_upload_helm) | **POST** /packages/{owner}/{repo}/validate-upload/helm/ | Validate parameters for create Helm package
|
39
|
+
[**packages_validate_upload_luarocks**](PackagesApi.md#packages_validate_upload_luarocks) | **POST** /packages/{owner}/{repo}/validate-upload/luarocks/ | Validate parameters for create LuaRocks package
|
24
40
|
[**packages_validate_upload_maven**](PackagesApi.md#packages_validate_upload_maven) | **POST** /packages/{owner}/{repo}/validate-upload/maven/ | Validate parameters for create Maven package
|
41
|
+
[**packages_validate_upload_npm**](PackagesApi.md#packages_validate_upload_npm) | **POST** /packages/{owner}/{repo}/validate-upload/npm/ | Validate parameters for create npm package
|
42
|
+
[**packages_validate_upload_nuget**](PackagesApi.md#packages_validate_upload_nuget) | **POST** /packages/{owner}/{repo}/validate-upload/nuget/ | Validate parameters for create NuGet package
|
25
43
|
[**packages_validate_upload_python**](PackagesApi.md#packages_validate_upload_python) | **POST** /packages/{owner}/{repo}/validate-upload/python/ | Validate parameters for create Python package
|
26
44
|
[**packages_validate_upload_raw**](PackagesApi.md#packages_validate_upload_raw) | **POST** /packages/{owner}/{repo}/validate-upload/raw/ | Validate parameters for create Raw package
|
27
45
|
[**packages_validate_upload_rpm**](PackagesApi.md#packages_validate_upload_rpm) | **POST** /packages/{owner}/{repo}/validate-upload/rpm/ | Validate parameters for create RedHat package
|
@@ -47,10 +65,6 @@ CloudsmithApi.configure do |config|
|
|
47
65
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
48
66
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
49
67
|
|
50
|
-
# Configure HTTP basic authorization: basic
|
51
|
-
config.username = 'YOUR USERNAME'
|
52
|
-
config.password = 'YOUR PASSWORD'
|
53
|
-
|
54
68
|
# Configure API key authorization: csrf_token
|
55
69
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
56
70
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -93,7 +107,7 @@ Name | Type | Description | Notes
|
|
93
107
|
|
94
108
|
### Authorization
|
95
109
|
|
96
|
-
[apikey](../README.md#apikey), [
|
110
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
97
111
|
|
98
112
|
### HTTP request headers
|
99
113
|
|
@@ -120,10 +134,6 @@ CloudsmithApi.configure do |config|
|
|
120
134
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
121
135
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
122
136
|
|
123
|
-
# Configure HTTP basic authorization: basic
|
124
|
-
config.username = 'YOUR USERNAME'
|
125
|
-
config.password = 'YOUR PASSWORD'
|
126
|
-
|
127
137
|
# Configure API key authorization: csrf_token
|
128
138
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
129
139
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -161,7 +171,7 @@ nil (empty response body)
|
|
161
171
|
|
162
172
|
### Authorization
|
163
173
|
|
164
|
-
[apikey](../README.md#apikey), [
|
174
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
165
175
|
|
166
176
|
### HTTP request headers
|
167
177
|
|
@@ -173,9 +183,9 @@ nil (empty response body)
|
|
173
183
|
# **packages_list**
|
174
184
|
> Array<Package> packages_list(owner, repo, opts)
|
175
185
|
|
176
|
-
|
186
|
+
Get a list of all packages associated with repository.
|
177
187
|
|
178
|
-
|
188
|
+
Get a list of all packages associated with repository.
|
179
189
|
|
180
190
|
### Example
|
181
191
|
```ruby
|
@@ -188,10 +198,6 @@ CloudsmithApi.configure do |config|
|
|
188
198
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
189
199
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
190
200
|
|
191
|
-
# Configure HTTP basic authorization: basic
|
192
|
-
config.username = 'YOUR USERNAME'
|
193
|
-
config.password = 'YOUR PASSWORD'
|
194
|
-
|
195
201
|
# Configure API key authorization: csrf_token
|
196
202
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
197
203
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -211,7 +217,7 @@ opts = {
|
|
211
217
|
}
|
212
218
|
|
213
219
|
begin
|
214
|
-
#
|
220
|
+
#Get a list of all packages associated with repository.
|
215
221
|
result = api_instance.packages_list(owner, repo, opts)
|
216
222
|
p result
|
217
223
|
rescue CloudsmithApi::ApiError => e
|
@@ -235,7 +241,7 @@ Name | Type | Description | Notes
|
|
235
241
|
|
236
242
|
### Authorization
|
237
243
|
|
238
|
-
[apikey](../README.md#apikey), [
|
244
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
239
245
|
|
240
246
|
### HTTP request headers
|
241
247
|
|
@@ -262,10 +268,6 @@ CloudsmithApi.configure do |config|
|
|
262
268
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
263
269
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
264
270
|
|
265
|
-
# Configure HTTP basic authorization: basic
|
266
|
-
config.username = 'YOUR USERNAME'
|
267
|
-
config.password = 'YOUR PASSWORD'
|
268
|
-
|
269
271
|
# Configure API key authorization: csrf_token
|
270
272
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
271
273
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -308,7 +310,7 @@ Name | Type | Description | Notes
|
|
308
310
|
|
309
311
|
### Authorization
|
310
312
|
|
311
|
-
[apikey](../README.md#apikey), [
|
313
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
312
314
|
|
313
315
|
### HTTP request headers
|
314
316
|
|
@@ -335,10 +337,6 @@ CloudsmithApi.configure do |config|
|
|
335
337
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
336
338
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
337
339
|
|
338
|
-
# Configure HTTP basic authorization: basic
|
339
|
-
config.username = 'YOUR USERNAME'
|
340
|
-
config.password = 'YOUR PASSWORD'
|
341
|
-
|
342
340
|
# Configure API key authorization: csrf_token
|
343
341
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
344
342
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -377,7 +375,7 @@ Name | Type | Description | Notes
|
|
377
375
|
|
378
376
|
### Authorization
|
379
377
|
|
380
|
-
[apikey](../README.md#apikey), [
|
378
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
381
379
|
|
382
380
|
### HTTP request headers
|
383
381
|
|
@@ -387,7 +385,7 @@ Name | Type | Description | Notes
|
|
387
385
|
|
388
386
|
|
389
387
|
# **packages_resync**
|
390
|
-
> Package packages_resync(owner, repo, identifier)
|
388
|
+
> Package packages_resync(owner, repo, identifier, opts)
|
391
389
|
|
392
390
|
Schedule a package for resynchronisation.
|
393
391
|
|
@@ -404,10 +402,6 @@ CloudsmithApi.configure do |config|
|
|
404
402
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
405
403
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
406
404
|
|
407
|
-
# Configure HTTP basic authorization: basic
|
408
|
-
config.username = 'YOUR USERNAME'
|
409
|
-
config.password = 'YOUR PASSWORD'
|
410
|
-
|
411
405
|
# Configure API key authorization: csrf_token
|
412
406
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
413
407
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -422,10 +416,13 @@ repo = "repo_example" # String |
|
|
422
416
|
|
423
417
|
identifier = "identifier_example" # String |
|
424
418
|
|
419
|
+
opts = {
|
420
|
+
data: CloudsmithApi::PackagesResync.new # PackagesResync |
|
421
|
+
}
|
425
422
|
|
426
423
|
begin
|
427
424
|
#Schedule a package for resynchronisation.
|
428
|
-
result = api_instance.packages_resync(owner, repo, identifier)
|
425
|
+
result = api_instance.packages_resync(owner, repo, identifier, opts)
|
429
426
|
p result
|
430
427
|
rescue CloudsmithApi::ApiError => e
|
431
428
|
puts "Exception when calling PackagesApi->packages_resync: #{e}"
|
@@ -439,6 +436,7 @@ Name | Type | Description | Notes
|
|
439
436
|
**owner** | **String**| |
|
440
437
|
**repo** | **String**| |
|
441
438
|
**identifier** | **String**| |
|
439
|
+
**data** | [**PackagesResync**](PackagesResync.md)| | [optional]
|
442
440
|
|
443
441
|
### Return type
|
444
442
|
|
@@ -446,11 +444,11 @@ Name | Type | Description | Notes
|
|
446
444
|
|
447
445
|
### Authorization
|
448
446
|
|
449
|
-
[apikey](../README.md#apikey), [
|
447
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
450
448
|
|
451
449
|
### HTTP request headers
|
452
450
|
|
453
|
-
- **Content-Type**:
|
451
|
+
- **Content-Type**: application/json
|
454
452
|
- **Accept**: Not defined
|
455
453
|
|
456
454
|
|
@@ -473,10 +471,6 @@ CloudsmithApi.configure do |config|
|
|
473
471
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
474
472
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
475
473
|
|
476
|
-
# Configure HTTP basic authorization: basic
|
477
|
-
config.username = 'YOUR USERNAME'
|
478
|
-
config.password = 'YOUR PASSWORD'
|
479
|
-
|
480
474
|
# Configure API key authorization: csrf_token
|
481
475
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
482
476
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -515,7 +509,7 @@ Name | Type | Description | Notes
|
|
515
509
|
|
516
510
|
### Authorization
|
517
511
|
|
518
|
-
[apikey](../README.md#apikey), [
|
512
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
519
513
|
|
520
514
|
### HTTP request headers
|
521
515
|
|
@@ -524,12 +518,12 @@ Name | Type | Description | Notes
|
|
524
518
|
|
525
519
|
|
526
520
|
|
527
|
-
# **
|
528
|
-
> Package
|
521
|
+
# **packages_upload_alpine**
|
522
|
+
> Package packages_upload_alpine(owner, repo, opts)
|
529
523
|
|
530
|
-
Create a new
|
524
|
+
Create a new Alpine package
|
531
525
|
|
532
|
-
Create a new
|
526
|
+
Create a new Alpine package
|
533
527
|
|
534
528
|
### Example
|
535
529
|
```ruby
|
@@ -542,10 +536,6 @@ CloudsmithApi.configure do |config|
|
|
542
536
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
543
537
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
544
538
|
|
545
|
-
# Configure HTTP basic authorization: basic
|
546
|
-
config.username = 'YOUR USERNAME'
|
547
|
-
config.password = 'YOUR PASSWORD'
|
548
|
-
|
549
539
|
# Configure API key authorization: csrf_token
|
550
540
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
551
541
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -559,15 +549,15 @@ owner = "owner_example" # String |
|
|
559
549
|
repo = "repo_example" # String |
|
560
550
|
|
561
551
|
opts = {
|
562
|
-
data: CloudsmithApi::
|
552
|
+
data: CloudsmithApi::PackagesUploadAlpine.new # PackagesUploadAlpine |
|
563
553
|
}
|
564
554
|
|
565
555
|
begin
|
566
|
-
#Create a new
|
567
|
-
result = api_instance.
|
556
|
+
#Create a new Alpine package
|
557
|
+
result = api_instance.packages_upload_alpine(owner, repo, opts)
|
568
558
|
p result
|
569
559
|
rescue CloudsmithApi::ApiError => e
|
570
|
-
puts "Exception when calling PackagesApi->
|
560
|
+
puts "Exception when calling PackagesApi->packages_upload_alpine: #{e}"
|
571
561
|
end
|
572
562
|
```
|
573
563
|
|
@@ -577,7 +567,7 @@ Name | Type | Description | Notes
|
|
577
567
|
------------- | ------------- | ------------- | -------------
|
578
568
|
**owner** | **String**| |
|
579
569
|
**repo** | **String**| |
|
580
|
-
**data** | [**
|
570
|
+
**data** | [**PackagesUploadAlpine**](PackagesUploadAlpine.md)| | [optional]
|
581
571
|
|
582
572
|
### Return type
|
583
573
|
|
@@ -585,7 +575,7 @@ Name | Type | Description | Notes
|
|
585
575
|
|
586
576
|
### Authorization
|
587
577
|
|
588
|
-
[apikey](../README.md#apikey), [
|
578
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
589
579
|
|
590
580
|
### HTTP request headers
|
591
581
|
|
@@ -594,12 +584,12 @@ Name | Type | Description | Notes
|
|
594
584
|
|
595
585
|
|
596
586
|
|
597
|
-
# **
|
598
|
-
> Package
|
587
|
+
# **packages_upload_cargo**
|
588
|
+
> Package packages_upload_cargo(owner, repo, opts)
|
599
589
|
|
600
|
-
Create a new
|
590
|
+
Create a new Cargo package
|
601
591
|
|
602
|
-
Create a new
|
592
|
+
Create a new Cargo package
|
603
593
|
|
604
594
|
### Example
|
605
595
|
```ruby
|
@@ -612,10 +602,6 @@ CloudsmithApi.configure do |config|
|
|
612
602
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
613
603
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
614
604
|
|
615
|
-
# Configure HTTP basic authorization: basic
|
616
|
-
config.username = 'YOUR USERNAME'
|
617
|
-
config.password = 'YOUR PASSWORD'
|
618
|
-
|
619
605
|
# Configure API key authorization: csrf_token
|
620
606
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
621
607
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -629,15 +615,15 @@ owner = "owner_example" # String |
|
|
629
615
|
repo = "repo_example" # String |
|
630
616
|
|
631
617
|
opts = {
|
632
|
-
data: CloudsmithApi::
|
618
|
+
data: CloudsmithApi::PackagesUploadCargo.new # PackagesUploadCargo |
|
633
619
|
}
|
634
620
|
|
635
621
|
begin
|
636
|
-
#Create a new
|
637
|
-
result = api_instance.
|
622
|
+
#Create a new Cargo package
|
623
|
+
result = api_instance.packages_upload_cargo(owner, repo, opts)
|
638
624
|
p result
|
639
625
|
rescue CloudsmithApi::ApiError => e
|
640
|
-
puts "Exception when calling PackagesApi->
|
626
|
+
puts "Exception when calling PackagesApi->packages_upload_cargo: #{e}"
|
641
627
|
end
|
642
628
|
```
|
643
629
|
|
@@ -647,7 +633,7 @@ Name | Type | Description | Notes
|
|
647
633
|
------------- | ------------- | ------------- | -------------
|
648
634
|
**owner** | **String**| |
|
649
635
|
**repo** | **String**| |
|
650
|
-
**data** | [**
|
636
|
+
**data** | [**PackagesUploadCargo**](PackagesUploadCargo.md)| | [optional]
|
651
637
|
|
652
638
|
### Return type
|
653
639
|
|
@@ -655,7 +641,7 @@ Name | Type | Description | Notes
|
|
655
641
|
|
656
642
|
### Authorization
|
657
643
|
|
658
|
-
[apikey](../README.md#apikey), [
|
644
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
659
645
|
|
660
646
|
### HTTP request headers
|
661
647
|
|
@@ -664,12 +650,12 @@ Name | Type | Description | Notes
|
|
664
650
|
|
665
651
|
|
666
652
|
|
667
|
-
# **
|
668
|
-
>
|
653
|
+
# **packages_upload_composer**
|
654
|
+
> Package packages_upload_composer(owner, repo, opts)
|
669
655
|
|
670
|
-
Create a new
|
656
|
+
Create a new Composer package
|
671
657
|
|
672
|
-
Create a new
|
658
|
+
Create a new Composer package
|
673
659
|
|
674
660
|
### Example
|
675
661
|
```ruby
|
@@ -682,10 +668,6 @@ CloudsmithApi.configure do |config|
|
|
682
668
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
683
669
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
684
670
|
|
685
|
-
# Configure HTTP basic authorization: basic
|
686
|
-
config.username = 'YOUR USERNAME'
|
687
|
-
config.password = 'YOUR PASSWORD'
|
688
|
-
|
689
671
|
# Configure API key authorization: csrf_token
|
690
672
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
691
673
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -699,15 +681,15 @@ owner = "owner_example" # String |
|
|
699
681
|
repo = "repo_example" # String |
|
700
682
|
|
701
683
|
opts = {
|
702
|
-
data: CloudsmithApi::
|
684
|
+
data: CloudsmithApi::PackagesUploadComposer.new # PackagesUploadComposer |
|
703
685
|
}
|
704
686
|
|
705
687
|
begin
|
706
|
-
#Create a new
|
707
|
-
result = api_instance.
|
688
|
+
#Create a new Composer package
|
689
|
+
result = api_instance.packages_upload_composer(owner, repo, opts)
|
708
690
|
p result
|
709
691
|
rescue CloudsmithApi::ApiError => e
|
710
|
-
puts "Exception when calling PackagesApi->
|
692
|
+
puts "Exception when calling PackagesApi->packages_upload_composer: #{e}"
|
711
693
|
end
|
712
694
|
```
|
713
695
|
|
@@ -717,15 +699,15 @@ Name | Type | Description | Notes
|
|
717
699
|
------------- | ------------- | ------------- | -------------
|
718
700
|
**owner** | **String**| |
|
719
701
|
**repo** | **String**| |
|
720
|
-
**data** | [**
|
702
|
+
**data** | [**PackagesUploadComposer**](PackagesUploadComposer.md)| | [optional]
|
721
703
|
|
722
704
|
### Return type
|
723
705
|
|
724
|
-
[**
|
706
|
+
[**Package**](Package.md)
|
725
707
|
|
726
708
|
### Authorization
|
727
709
|
|
728
|
-
[apikey](../README.md#apikey), [
|
710
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
729
711
|
|
730
712
|
### HTTP request headers
|
731
713
|
|
@@ -734,12 +716,12 @@ Name | Type | Description | Notes
|
|
734
716
|
|
735
717
|
|
736
718
|
|
737
|
-
# **
|
738
|
-
> Package
|
719
|
+
# **packages_upload_cran**
|
720
|
+
> Package packages_upload_cran(owner, repo, opts)
|
739
721
|
|
740
|
-
Create a new
|
722
|
+
Create a new CRAN package
|
741
723
|
|
742
|
-
Create a new
|
724
|
+
Create a new CRAN package
|
743
725
|
|
744
726
|
### Example
|
745
727
|
```ruby
|
@@ -752,10 +734,6 @@ CloudsmithApi.configure do |config|
|
|
752
734
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
753
735
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
754
736
|
|
755
|
-
# Configure HTTP basic authorization: basic
|
756
|
-
config.username = 'YOUR USERNAME'
|
757
|
-
config.password = 'YOUR PASSWORD'
|
758
|
-
|
759
737
|
# Configure API key authorization: csrf_token
|
760
738
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
761
739
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -769,15 +747,15 @@ owner = "owner_example" # String |
|
|
769
747
|
repo = "repo_example" # String |
|
770
748
|
|
771
749
|
opts = {
|
772
|
-
data: CloudsmithApi::
|
750
|
+
data: CloudsmithApi::PackagesUploadCran.new # PackagesUploadCran |
|
773
751
|
}
|
774
752
|
|
775
753
|
begin
|
776
|
-
#Create a new
|
777
|
-
result = api_instance.
|
754
|
+
#Create a new CRAN package
|
755
|
+
result = api_instance.packages_upload_cran(owner, repo, opts)
|
778
756
|
p result
|
779
757
|
rescue CloudsmithApi::ApiError => e
|
780
|
-
puts "Exception when calling PackagesApi->
|
758
|
+
puts "Exception when calling PackagesApi->packages_upload_cran: #{e}"
|
781
759
|
end
|
782
760
|
```
|
783
761
|
|
@@ -787,7 +765,7 @@ Name | Type | Description | Notes
|
|
787
765
|
------------- | ------------- | ------------- | -------------
|
788
766
|
**owner** | **String**| |
|
789
767
|
**repo** | **String**| |
|
790
|
-
**data** | [**
|
768
|
+
**data** | [**PackagesUploadCran**](PackagesUploadCran.md)| | [optional]
|
791
769
|
|
792
770
|
### Return type
|
793
771
|
|
@@ -795,7 +773,7 @@ Name | Type | Description | Notes
|
|
795
773
|
|
796
774
|
### Authorization
|
797
775
|
|
798
|
-
[apikey](../README.md#apikey), [
|
776
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
799
777
|
|
800
778
|
### HTTP request headers
|
801
779
|
|
@@ -804,12 +782,12 @@ Name | Type | Description | Notes
|
|
804
782
|
|
805
783
|
|
806
784
|
|
807
|
-
# **
|
808
|
-
>
|
785
|
+
# **packages_upload_deb**
|
786
|
+
> Package packages_upload_deb(owner, repo, opts)
|
809
787
|
|
810
|
-
Create a new
|
788
|
+
Create a new Debian package
|
811
789
|
|
812
|
-
Create a new
|
790
|
+
Create a new Debian package
|
813
791
|
|
814
792
|
### Example
|
815
793
|
```ruby
|
@@ -822,10 +800,6 @@ CloudsmithApi.configure do |config|
|
|
822
800
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
823
801
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
824
802
|
|
825
|
-
# Configure HTTP basic authorization: basic
|
826
|
-
config.username = 'YOUR USERNAME'
|
827
|
-
config.password = 'YOUR PASSWORD'
|
828
|
-
|
829
803
|
# Configure API key authorization: csrf_token
|
830
804
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
831
805
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -839,15 +813,15 @@ owner = "owner_example" # String |
|
|
839
813
|
repo = "repo_example" # String |
|
840
814
|
|
841
815
|
opts = {
|
842
|
-
data: CloudsmithApi::
|
816
|
+
data: CloudsmithApi::PackagesUploadDeb.new # PackagesUploadDeb |
|
843
817
|
}
|
844
818
|
|
845
819
|
begin
|
846
|
-
#Create a new
|
847
|
-
result = api_instance.
|
820
|
+
#Create a new Debian package
|
821
|
+
result = api_instance.packages_upload_deb(owner, repo, opts)
|
848
822
|
p result
|
849
823
|
rescue CloudsmithApi::ApiError => e
|
850
|
-
puts "Exception when calling PackagesApi->
|
824
|
+
puts "Exception when calling PackagesApi->packages_upload_deb: #{e}"
|
851
825
|
end
|
852
826
|
```
|
853
827
|
|
@@ -857,15 +831,15 @@ Name | Type | Description | Notes
|
|
857
831
|
------------- | ------------- | ------------- | -------------
|
858
832
|
**owner** | **String**| |
|
859
833
|
**repo** | **String**| |
|
860
|
-
**data** | [**
|
834
|
+
**data** | [**PackagesUploadDeb**](PackagesUploadDeb.md)| | [optional]
|
861
835
|
|
862
836
|
### Return type
|
863
837
|
|
864
|
-
[**
|
838
|
+
[**Package**](Package.md)
|
865
839
|
|
866
840
|
### Authorization
|
867
841
|
|
868
|
-
[apikey](../README.md#apikey), [
|
842
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
869
843
|
|
870
844
|
### HTTP request headers
|
871
845
|
|
@@ -874,12 +848,12 @@ Name | Type | Description | Notes
|
|
874
848
|
|
875
849
|
|
876
850
|
|
877
|
-
# **
|
878
|
-
> Package
|
851
|
+
# **packages_upload_docker**
|
852
|
+
> Package packages_upload_docker(owner, repo, opts)
|
879
853
|
|
880
|
-
Create a new
|
854
|
+
Create a new Docker package
|
881
855
|
|
882
|
-
Create a new
|
856
|
+
Create a new Docker package
|
883
857
|
|
884
858
|
### Example
|
885
859
|
```ruby
|
@@ -892,10 +866,6 @@ CloudsmithApi.configure do |config|
|
|
892
866
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
893
867
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
894
868
|
|
895
|
-
# Configure HTTP basic authorization: basic
|
896
|
-
config.username = 'YOUR USERNAME'
|
897
|
-
config.password = 'YOUR PASSWORD'
|
898
|
-
|
899
869
|
# Configure API key authorization: csrf_token
|
900
870
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
901
871
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -909,15 +879,15 @@ owner = "owner_example" # String |
|
|
909
879
|
repo = "repo_example" # String |
|
910
880
|
|
911
881
|
opts = {
|
912
|
-
data: CloudsmithApi::
|
882
|
+
data: CloudsmithApi::PackagesUploadDocker.new # PackagesUploadDocker |
|
913
883
|
}
|
914
884
|
|
915
885
|
begin
|
916
|
-
#Create a new
|
917
|
-
result = api_instance.
|
886
|
+
#Create a new Docker package
|
887
|
+
result = api_instance.packages_upload_docker(owner, repo, opts)
|
918
888
|
p result
|
919
889
|
rescue CloudsmithApi::ApiError => e
|
920
|
-
puts "Exception when calling PackagesApi->
|
890
|
+
puts "Exception when calling PackagesApi->packages_upload_docker: #{e}"
|
921
891
|
end
|
922
892
|
```
|
923
893
|
|
@@ -927,7 +897,7 @@ Name | Type | Description | Notes
|
|
927
897
|
------------- | ------------- | ------------- | -------------
|
928
898
|
**owner** | **String**| |
|
929
899
|
**repo** | **String**| |
|
930
|
-
**data** | [**
|
900
|
+
**data** | [**PackagesUploadDocker**](PackagesUploadDocker.md)| | [optional]
|
931
901
|
|
932
902
|
### Return type
|
933
903
|
|
@@ -935,7 +905,7 @@ Name | Type | Description | Notes
|
|
935
905
|
|
936
906
|
### Authorization
|
937
907
|
|
938
|
-
[apikey](../README.md#apikey), [
|
908
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
939
909
|
|
940
910
|
### HTTP request headers
|
941
911
|
|
@@ -944,12 +914,12 @@ Name | Type | Description | Notes
|
|
944
914
|
|
945
915
|
|
946
916
|
|
947
|
-
# **
|
948
|
-
> Package
|
917
|
+
# **packages_upload_go**
|
918
|
+
> Package packages_upload_go(owner, repo, opts)
|
949
919
|
|
950
|
-
Create a new
|
920
|
+
Create a new Go package
|
951
921
|
|
952
|
-
Create a new
|
922
|
+
Create a new Go package
|
953
923
|
|
954
924
|
### Example
|
955
925
|
```ruby
|
@@ -962,10 +932,6 @@ CloudsmithApi.configure do |config|
|
|
962
932
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
963
933
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
964
934
|
|
965
|
-
# Configure HTTP basic authorization: basic
|
966
|
-
config.username = 'YOUR USERNAME'
|
967
|
-
config.password = 'YOUR PASSWORD'
|
968
|
-
|
969
935
|
# Configure API key authorization: csrf_token
|
970
936
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
971
937
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -979,15 +945,15 @@ owner = "owner_example" # String |
|
|
979
945
|
repo = "repo_example" # String |
|
980
946
|
|
981
947
|
opts = {
|
982
|
-
data: CloudsmithApi::
|
948
|
+
data: CloudsmithApi::PackagesUploadGo.new # PackagesUploadGo |
|
983
949
|
}
|
984
950
|
|
985
951
|
begin
|
986
|
-
#Create a new
|
987
|
-
result = api_instance.
|
952
|
+
#Create a new Go package
|
953
|
+
result = api_instance.packages_upload_go(owner, repo, opts)
|
988
954
|
p result
|
989
955
|
rescue CloudsmithApi::ApiError => e
|
990
|
-
puts "Exception when calling PackagesApi->
|
956
|
+
puts "Exception when calling PackagesApi->packages_upload_go: #{e}"
|
991
957
|
end
|
992
958
|
```
|
993
959
|
|
@@ -997,7 +963,7 @@ Name | Type | Description | Notes
|
|
997
963
|
------------- | ------------- | ------------- | -------------
|
998
964
|
**owner** | **String**| |
|
999
965
|
**repo** | **String**| |
|
1000
|
-
**data** | [**
|
966
|
+
**data** | [**PackagesUploadGo**](PackagesUploadGo.md)| | [optional]
|
1001
967
|
|
1002
968
|
### Return type
|
1003
969
|
|
@@ -1005,7 +971,7 @@ Name | Type | Description | Notes
|
|
1005
971
|
|
1006
972
|
### Authorization
|
1007
973
|
|
1008
|
-
[apikey](../README.md#apikey), [
|
974
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1009
975
|
|
1010
976
|
### HTTP request headers
|
1011
977
|
|
@@ -1014,12 +980,12 @@ Name | Type | Description | Notes
|
|
1014
980
|
|
1015
981
|
|
1016
982
|
|
1017
|
-
# **
|
1018
|
-
>
|
983
|
+
# **packages_upload_helm**
|
984
|
+
> Package packages_upload_helm(owner, repo, opts)
|
1019
985
|
|
1020
|
-
Create a new
|
986
|
+
Create a new Helm package
|
1021
987
|
|
1022
|
-
Create a new
|
988
|
+
Create a new Helm package
|
1023
989
|
|
1024
990
|
### Example
|
1025
991
|
```ruby
|
@@ -1032,10 +998,6 @@ CloudsmithApi.configure do |config|
|
|
1032
998
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1033
999
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1034
1000
|
|
1035
|
-
# Configure HTTP basic authorization: basic
|
1036
|
-
config.username = 'YOUR USERNAME'
|
1037
|
-
config.password = 'YOUR PASSWORD'
|
1038
|
-
|
1039
1001
|
# Configure API key authorization: csrf_token
|
1040
1002
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1041
1003
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -1049,15 +1011,15 @@ owner = "owner_example" # String |
|
|
1049
1011
|
repo = "repo_example" # String |
|
1050
1012
|
|
1051
1013
|
opts = {
|
1052
|
-
data: CloudsmithApi::
|
1014
|
+
data: CloudsmithApi::PackagesUploadHelm.new # PackagesUploadHelm |
|
1053
1015
|
}
|
1054
1016
|
|
1055
1017
|
begin
|
1056
|
-
#Create a new
|
1057
|
-
result = api_instance.
|
1018
|
+
#Create a new Helm package
|
1019
|
+
result = api_instance.packages_upload_helm(owner, repo, opts)
|
1058
1020
|
p result
|
1059
1021
|
rescue CloudsmithApi::ApiError => e
|
1060
|
-
puts "Exception when calling PackagesApi->
|
1022
|
+
puts "Exception when calling PackagesApi->packages_upload_helm: #{e}"
|
1061
1023
|
end
|
1062
1024
|
```
|
1063
1025
|
|
@@ -1067,15 +1029,15 @@ Name | Type | Description | Notes
|
|
1067
1029
|
------------- | ------------- | ------------- | -------------
|
1068
1030
|
**owner** | **String**| |
|
1069
1031
|
**repo** | **String**| |
|
1070
|
-
**data** | [**
|
1032
|
+
**data** | [**PackagesUploadHelm**](PackagesUploadHelm.md)| | [optional]
|
1071
1033
|
|
1072
1034
|
### Return type
|
1073
1035
|
|
1074
|
-
[**
|
1036
|
+
[**Package**](Package.md)
|
1075
1037
|
|
1076
1038
|
### Authorization
|
1077
1039
|
|
1078
|
-
[apikey](../README.md#apikey), [
|
1040
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1079
1041
|
|
1080
1042
|
### HTTP request headers
|
1081
1043
|
|
@@ -1084,12 +1046,12 @@ Name | Type | Description | Notes
|
|
1084
1046
|
|
1085
1047
|
|
1086
1048
|
|
1087
|
-
# **
|
1088
|
-
>
|
1049
|
+
# **packages_upload_luarocks**
|
1050
|
+
> Package packages_upload_luarocks(owner, repo, opts)
|
1089
1051
|
|
1090
|
-
|
1052
|
+
Create a new LuaRocks package
|
1091
1053
|
|
1092
|
-
|
1054
|
+
Create a new LuaRocks package
|
1093
1055
|
|
1094
1056
|
### Example
|
1095
1057
|
```ruby
|
@@ -1102,10 +1064,6 @@ CloudsmithApi.configure do |config|
|
|
1102
1064
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1103
1065
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1104
1066
|
|
1105
|
-
# Configure HTTP basic authorization: basic
|
1106
|
-
config.username = 'YOUR USERNAME'
|
1107
|
-
config.password = 'YOUR PASSWORD'
|
1108
|
-
|
1109
1067
|
# Configure API key authorization: csrf_token
|
1110
1068
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1111
1069
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -1119,14 +1077,15 @@ owner = "owner_example" # String |
|
|
1119
1077
|
repo = "repo_example" # String |
|
1120
1078
|
|
1121
1079
|
opts = {
|
1122
|
-
data: CloudsmithApi::
|
1080
|
+
data: CloudsmithApi::PackagesUploadLuarocks.new # PackagesUploadLuarocks |
|
1123
1081
|
}
|
1124
1082
|
|
1125
1083
|
begin
|
1126
|
-
#
|
1127
|
-
api_instance.
|
1084
|
+
#Create a new LuaRocks package
|
1085
|
+
result = api_instance.packages_upload_luarocks(owner, repo, opts)
|
1086
|
+
p result
|
1128
1087
|
rescue CloudsmithApi::ApiError => e
|
1129
|
-
puts "Exception when calling PackagesApi->
|
1088
|
+
puts "Exception when calling PackagesApi->packages_upload_luarocks: #{e}"
|
1130
1089
|
end
|
1131
1090
|
```
|
1132
1091
|
|
@@ -1136,15 +1095,15 @@ Name | Type | Description | Notes
|
|
1136
1095
|
------------- | ------------- | ------------- | -------------
|
1137
1096
|
**owner** | **String**| |
|
1138
1097
|
**repo** | **String**| |
|
1139
|
-
**data** | [**
|
1098
|
+
**data** | [**PackagesUploadLuarocks**](PackagesUploadLuarocks.md)| | [optional]
|
1140
1099
|
|
1141
1100
|
### Return type
|
1142
1101
|
|
1143
|
-
|
1102
|
+
[**Package**](Package.md)
|
1144
1103
|
|
1145
1104
|
### Authorization
|
1146
1105
|
|
1147
|
-
[apikey](../README.md#apikey), [
|
1106
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1148
1107
|
|
1149
1108
|
### HTTP request headers
|
1150
1109
|
|
@@ -1153,12 +1112,12 @@ nil (empty response body)
|
|
1153
1112
|
|
1154
1113
|
|
1155
1114
|
|
1156
|
-
# **
|
1157
|
-
>
|
1115
|
+
# **packages_upload_maven**
|
1116
|
+
> MavenPackageUpload packages_upload_maven(owner, repo, opts)
|
1158
1117
|
|
1159
|
-
|
1118
|
+
Create a new Maven package
|
1160
1119
|
|
1161
|
-
|
1120
|
+
Create a new Maven package
|
1162
1121
|
|
1163
1122
|
### Example
|
1164
1123
|
```ruby
|
@@ -1171,10 +1130,6 @@ CloudsmithApi.configure do |config|
|
|
1171
1130
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1172
1131
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1173
1132
|
|
1174
|
-
# Configure HTTP basic authorization: basic
|
1175
|
-
config.username = 'YOUR USERNAME'
|
1176
|
-
config.password = 'YOUR PASSWORD'
|
1177
|
-
|
1178
1133
|
# Configure API key authorization: csrf_token
|
1179
1134
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1180
1135
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -1188,14 +1143,15 @@ owner = "owner_example" # String |
|
|
1188
1143
|
repo = "repo_example" # String |
|
1189
1144
|
|
1190
1145
|
opts = {
|
1191
|
-
data: CloudsmithApi::
|
1146
|
+
data: CloudsmithApi::PackagesUploadMaven.new # PackagesUploadMaven |
|
1192
1147
|
}
|
1193
1148
|
|
1194
1149
|
begin
|
1195
|
-
#
|
1196
|
-
api_instance.
|
1150
|
+
#Create a new Maven package
|
1151
|
+
result = api_instance.packages_upload_maven(owner, repo, opts)
|
1152
|
+
p result
|
1197
1153
|
rescue CloudsmithApi::ApiError => e
|
1198
|
-
puts "Exception when calling PackagesApi->
|
1154
|
+
puts "Exception when calling PackagesApi->packages_upload_maven: #{e}"
|
1199
1155
|
end
|
1200
1156
|
```
|
1201
1157
|
|
@@ -1205,15 +1161,15 @@ Name | Type | Description | Notes
|
|
1205
1161
|
------------- | ------------- | ------------- | -------------
|
1206
1162
|
**owner** | **String**| |
|
1207
1163
|
**repo** | **String**| |
|
1208
|
-
**data** | [**
|
1164
|
+
**data** | [**PackagesUploadMaven**](PackagesUploadMaven.md)| | [optional]
|
1209
1165
|
|
1210
1166
|
### Return type
|
1211
1167
|
|
1212
|
-
|
1168
|
+
[**MavenPackageUpload**](MavenPackageUpload.md)
|
1213
1169
|
|
1214
1170
|
### Authorization
|
1215
1171
|
|
1216
|
-
[apikey](../README.md#apikey), [
|
1172
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1217
1173
|
|
1218
1174
|
### HTTP request headers
|
1219
1175
|
|
@@ -1222,12 +1178,12 @@ nil (empty response body)
|
|
1222
1178
|
|
1223
1179
|
|
1224
1180
|
|
1225
|
-
# **
|
1226
|
-
>
|
1181
|
+
# **packages_upload_npm**
|
1182
|
+
> Package packages_upload_npm(owner, repo, opts)
|
1227
1183
|
|
1228
|
-
|
1184
|
+
Create a new npm package
|
1229
1185
|
|
1230
|
-
|
1186
|
+
Create a new npm package
|
1231
1187
|
|
1232
1188
|
### Example
|
1233
1189
|
```ruby
|
@@ -1240,10 +1196,6 @@ CloudsmithApi.configure do |config|
|
|
1240
1196
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1241
1197
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1242
1198
|
|
1243
|
-
# Configure HTTP basic authorization: basic
|
1244
|
-
config.username = 'YOUR USERNAME'
|
1245
|
-
config.password = 'YOUR PASSWORD'
|
1246
|
-
|
1247
1199
|
# Configure API key authorization: csrf_token
|
1248
1200
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1249
1201
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -1257,14 +1209,15 @@ owner = "owner_example" # String |
|
|
1257
1209
|
repo = "repo_example" # String |
|
1258
1210
|
|
1259
1211
|
opts = {
|
1260
|
-
data: CloudsmithApi::
|
1212
|
+
data: CloudsmithApi::PackagesUploadNpm.new # PackagesUploadNpm |
|
1261
1213
|
}
|
1262
1214
|
|
1263
1215
|
begin
|
1264
|
-
#
|
1265
|
-
api_instance.
|
1216
|
+
#Create a new npm package
|
1217
|
+
result = api_instance.packages_upload_npm(owner, repo, opts)
|
1218
|
+
p result
|
1266
1219
|
rescue CloudsmithApi::ApiError => e
|
1267
|
-
puts "Exception when calling PackagesApi->
|
1220
|
+
puts "Exception when calling PackagesApi->packages_upload_npm: #{e}"
|
1268
1221
|
end
|
1269
1222
|
```
|
1270
1223
|
|
@@ -1274,15 +1227,15 @@ Name | Type | Description | Notes
|
|
1274
1227
|
------------- | ------------- | ------------- | -------------
|
1275
1228
|
**owner** | **String**| |
|
1276
1229
|
**repo** | **String**| |
|
1277
|
-
**data** | [**
|
1230
|
+
**data** | [**PackagesUploadNpm**](PackagesUploadNpm.md)| | [optional]
|
1278
1231
|
|
1279
1232
|
### Return type
|
1280
1233
|
|
1281
|
-
|
1234
|
+
[**Package**](Package.md)
|
1282
1235
|
|
1283
1236
|
### Authorization
|
1284
1237
|
|
1285
|
-
[apikey](../README.md#apikey), [
|
1238
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1286
1239
|
|
1287
1240
|
### HTTP request headers
|
1288
1241
|
|
@@ -1291,12 +1244,12 @@ nil (empty response body)
|
|
1291
1244
|
|
1292
1245
|
|
1293
1246
|
|
1294
|
-
# **
|
1295
|
-
>
|
1247
|
+
# **packages_upload_nuget**
|
1248
|
+
> Package packages_upload_nuget(owner, repo, opts)
|
1296
1249
|
|
1297
|
-
|
1250
|
+
Create a new NuGet package
|
1298
1251
|
|
1299
|
-
|
1252
|
+
Create a new NuGet package
|
1300
1253
|
|
1301
1254
|
### Example
|
1302
1255
|
```ruby
|
@@ -1309,10 +1262,6 @@ CloudsmithApi.configure do |config|
|
|
1309
1262
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1310
1263
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1311
1264
|
|
1312
|
-
# Configure HTTP basic authorization: basic
|
1313
|
-
config.username = 'YOUR USERNAME'
|
1314
|
-
config.password = 'YOUR PASSWORD'
|
1315
|
-
|
1316
1265
|
# Configure API key authorization: csrf_token
|
1317
1266
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1318
1267
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -1326,14 +1275,15 @@ owner = "owner_example" # String |
|
|
1326
1275
|
repo = "repo_example" # String |
|
1327
1276
|
|
1328
1277
|
opts = {
|
1329
|
-
data: CloudsmithApi::
|
1278
|
+
data: CloudsmithApi::PackagesUploadNuget.new # PackagesUploadNuget |
|
1330
1279
|
}
|
1331
1280
|
|
1332
1281
|
begin
|
1333
|
-
#
|
1334
|
-
api_instance.
|
1282
|
+
#Create a new NuGet package
|
1283
|
+
result = api_instance.packages_upload_nuget(owner, repo, opts)
|
1284
|
+
p result
|
1335
1285
|
rescue CloudsmithApi::ApiError => e
|
1336
|
-
puts "Exception when calling PackagesApi->
|
1286
|
+
puts "Exception when calling PackagesApi->packages_upload_nuget: #{e}"
|
1337
1287
|
end
|
1338
1288
|
```
|
1339
1289
|
|
@@ -1343,15 +1293,15 @@ Name | Type | Description | Notes
|
|
1343
1293
|
------------- | ------------- | ------------- | -------------
|
1344
1294
|
**owner** | **String**| |
|
1345
1295
|
**repo** | **String**| |
|
1346
|
-
**data** | [**
|
1296
|
+
**data** | [**PackagesUploadNuget**](PackagesUploadNuget.md)| | [optional]
|
1347
1297
|
|
1348
1298
|
### Return type
|
1349
1299
|
|
1350
|
-
|
1300
|
+
[**Package**](Package.md)
|
1351
1301
|
|
1352
1302
|
### Authorization
|
1353
1303
|
|
1354
|
-
[apikey](../README.md#apikey), [
|
1304
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1355
1305
|
|
1356
1306
|
### HTTP request headers
|
1357
1307
|
|
@@ -1360,12 +1310,12 @@ nil (empty response body)
|
|
1360
1310
|
|
1361
1311
|
|
1362
1312
|
|
1363
|
-
# **
|
1364
|
-
>
|
1313
|
+
# **packages_upload_python**
|
1314
|
+
> Package packages_upload_python(owner, repo, opts)
|
1365
1315
|
|
1366
|
-
|
1316
|
+
Create a new Python package
|
1367
1317
|
|
1368
|
-
|
1318
|
+
Create a new Python package
|
1369
1319
|
|
1370
1320
|
### Example
|
1371
1321
|
```ruby
|
@@ -1378,10 +1328,6 @@ CloudsmithApi.configure do |config|
|
|
1378
1328
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1379
1329
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1380
1330
|
|
1381
|
-
# Configure HTTP basic authorization: basic
|
1382
|
-
config.username = 'YOUR USERNAME'
|
1383
|
-
config.password = 'YOUR PASSWORD'
|
1384
|
-
|
1385
1331
|
# Configure API key authorization: csrf_token
|
1386
1332
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1387
1333
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -1395,14 +1341,15 @@ owner = "owner_example" # String |
|
|
1395
1341
|
repo = "repo_example" # String |
|
1396
1342
|
|
1397
1343
|
opts = {
|
1398
|
-
data: CloudsmithApi::
|
1344
|
+
data: CloudsmithApi::PackagesUploadPython.new # PackagesUploadPython |
|
1399
1345
|
}
|
1400
1346
|
|
1401
1347
|
begin
|
1402
|
-
#
|
1403
|
-
api_instance.
|
1348
|
+
#Create a new Python package
|
1349
|
+
result = api_instance.packages_upload_python(owner, repo, opts)
|
1350
|
+
p result
|
1404
1351
|
rescue CloudsmithApi::ApiError => e
|
1405
|
-
puts "Exception when calling PackagesApi->
|
1352
|
+
puts "Exception when calling PackagesApi->packages_upload_python: #{e}"
|
1406
1353
|
end
|
1407
1354
|
```
|
1408
1355
|
|
@@ -1412,15 +1359,15 @@ Name | Type | Description | Notes
|
|
1412
1359
|
------------- | ------------- | ------------- | -------------
|
1413
1360
|
**owner** | **String**| |
|
1414
1361
|
**repo** | **String**| |
|
1415
|
-
**data** | [**
|
1362
|
+
**data** | [**PackagesUploadPython**](PackagesUploadPython.md)| | [optional]
|
1416
1363
|
|
1417
1364
|
### Return type
|
1418
1365
|
|
1419
|
-
|
1366
|
+
[**Package**](Package.md)
|
1420
1367
|
|
1421
1368
|
### Authorization
|
1422
1369
|
|
1423
|
-
[apikey](../README.md#apikey), [
|
1370
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1424
1371
|
|
1425
1372
|
### HTTP request headers
|
1426
1373
|
|
@@ -1429,12 +1376,12 @@ nil (empty response body)
|
|
1429
1376
|
|
1430
1377
|
|
1431
1378
|
|
1432
|
-
# **
|
1433
|
-
>
|
1379
|
+
# **packages_upload_raw**
|
1380
|
+
> RawPackageUpload packages_upload_raw(owner, repo, opts)
|
1434
1381
|
|
1435
|
-
|
1382
|
+
Create a new Raw package
|
1436
1383
|
|
1437
|
-
|
1384
|
+
Create a new Raw package
|
1438
1385
|
|
1439
1386
|
### Example
|
1440
1387
|
```ruby
|
@@ -1447,10 +1394,6 @@ CloudsmithApi.configure do |config|
|
|
1447
1394
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1448
1395
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1449
1396
|
|
1450
|
-
# Configure HTTP basic authorization: basic
|
1451
|
-
config.username = 'YOUR USERNAME'
|
1452
|
-
config.password = 'YOUR PASSWORD'
|
1453
|
-
|
1454
1397
|
# Configure API key authorization: csrf_token
|
1455
1398
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1456
1399
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -1464,14 +1407,15 @@ owner = "owner_example" # String |
|
|
1464
1407
|
repo = "repo_example" # String |
|
1465
1408
|
|
1466
1409
|
opts = {
|
1467
|
-
data: CloudsmithApi::
|
1410
|
+
data: CloudsmithApi::PackagesUploadRaw.new # PackagesUploadRaw |
|
1468
1411
|
}
|
1469
1412
|
|
1470
1413
|
begin
|
1471
|
-
#
|
1472
|
-
api_instance.
|
1414
|
+
#Create a new Raw package
|
1415
|
+
result = api_instance.packages_upload_raw(owner, repo, opts)
|
1416
|
+
p result
|
1473
1417
|
rescue CloudsmithApi::ApiError => e
|
1474
|
-
puts "Exception when calling PackagesApi->
|
1418
|
+
puts "Exception when calling PackagesApi->packages_upload_raw: #{e}"
|
1475
1419
|
end
|
1476
1420
|
```
|
1477
1421
|
|
@@ -1481,15 +1425,15 @@ Name | Type | Description | Notes
|
|
1481
1425
|
------------- | ------------- | ------------- | -------------
|
1482
1426
|
**owner** | **String**| |
|
1483
1427
|
**repo** | **String**| |
|
1484
|
-
**data** | [**
|
1428
|
+
**data** | [**PackagesUploadRaw**](PackagesUploadRaw.md)| | [optional]
|
1485
1429
|
|
1486
1430
|
### Return type
|
1487
1431
|
|
1488
|
-
|
1432
|
+
[**RawPackageUpload**](RawPackageUpload.md)
|
1489
1433
|
|
1490
1434
|
### Authorization
|
1491
1435
|
|
1492
|
-
[apikey](../README.md#apikey), [
|
1436
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1493
1437
|
|
1494
1438
|
### HTTP request headers
|
1495
1439
|
|
@@ -1498,12 +1442,12 @@ nil (empty response body)
|
|
1498
1442
|
|
1499
1443
|
|
1500
1444
|
|
1501
|
-
# **
|
1502
|
-
>
|
1445
|
+
# **packages_upload_rpm**
|
1446
|
+
> Package packages_upload_rpm(owner, repo, opts)
|
1503
1447
|
|
1504
|
-
|
1448
|
+
Create a new RedHat package
|
1505
1449
|
|
1506
|
-
|
1450
|
+
Create a new RedHat package
|
1507
1451
|
|
1508
1452
|
### Example
|
1509
1453
|
```ruby
|
@@ -1516,10 +1460,6 @@ CloudsmithApi.configure do |config|
|
|
1516
1460
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1517
1461
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1518
1462
|
|
1519
|
-
# Configure HTTP basic authorization: basic
|
1520
|
-
config.username = 'YOUR USERNAME'
|
1521
|
-
config.password = 'YOUR PASSWORD'
|
1522
|
-
|
1523
1463
|
# Configure API key authorization: csrf_token
|
1524
1464
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1525
1465
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
@@ -1533,14 +1473,15 @@ owner = "owner_example" # String |
|
|
1533
1473
|
repo = "repo_example" # String |
|
1534
1474
|
|
1535
1475
|
opts = {
|
1536
|
-
data: CloudsmithApi::
|
1476
|
+
data: CloudsmithApi::PackagesUploadRpm.new # PackagesUploadRpm |
|
1537
1477
|
}
|
1538
1478
|
|
1539
1479
|
begin
|
1540
|
-
#
|
1541
|
-
api_instance.
|
1480
|
+
#Create a new RedHat package
|
1481
|
+
result = api_instance.packages_upload_rpm(owner, repo, opts)
|
1482
|
+
p result
|
1542
1483
|
rescue CloudsmithApi::ApiError => e
|
1543
|
-
puts "Exception when calling PackagesApi->
|
1484
|
+
puts "Exception when calling PackagesApi->packages_upload_rpm: #{e}"
|
1544
1485
|
end
|
1545
1486
|
```
|
1546
1487
|
|
@@ -1550,15 +1491,15 @@ Name | Type | Description | Notes
|
|
1550
1491
|
------------- | ------------- | ------------- | -------------
|
1551
1492
|
**owner** | **String**| |
|
1552
1493
|
**repo** | **String**| |
|
1553
|
-
**data** | [**
|
1494
|
+
**data** | [**PackagesUploadRpm**](PackagesUploadRpm.md)| | [optional]
|
1554
1495
|
|
1555
1496
|
### Return type
|
1556
1497
|
|
1557
|
-
|
1498
|
+
[**Package**](Package.md)
|
1558
1499
|
|
1559
1500
|
### Authorization
|
1560
1501
|
|
1561
|
-
[apikey](../README.md#apikey), [
|
1502
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1562
1503
|
|
1563
1504
|
### HTTP request headers
|
1564
1505
|
|
@@ -1567,12 +1508,12 @@ nil (empty response body)
|
|
1567
1508
|
|
1568
1509
|
|
1569
1510
|
|
1570
|
-
# **
|
1571
|
-
>
|
1511
|
+
# **packages_upload_ruby**
|
1512
|
+
> Package packages_upload_ruby(owner, repo, opts)
|
1572
1513
|
|
1573
|
-
|
1514
|
+
Create a new Ruby package
|
1574
1515
|
|
1575
|
-
|
1516
|
+
Create a new Ruby package
|
1576
1517
|
|
1577
1518
|
### Example
|
1578
1519
|
```ruby
|
@@ -1585,9 +1526,1177 @@ CloudsmithApi.configure do |config|
|
|
1585
1526
|
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1586
1527
|
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1587
1528
|
|
1588
|
-
# Configure
|
1589
|
-
config.
|
1590
|
-
|
1529
|
+
# Configure API key authorization: csrf_token
|
1530
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1531
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1532
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
1536
|
+
|
1537
|
+
owner = "owner_example" # String |
|
1538
|
+
|
1539
|
+
repo = "repo_example" # String |
|
1540
|
+
|
1541
|
+
opts = {
|
1542
|
+
data: CloudsmithApi::PackagesUploadRuby.new # PackagesUploadRuby |
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
begin
|
1546
|
+
#Create a new Ruby package
|
1547
|
+
result = api_instance.packages_upload_ruby(owner, repo, opts)
|
1548
|
+
p result
|
1549
|
+
rescue CloudsmithApi::ApiError => e
|
1550
|
+
puts "Exception when calling PackagesApi->packages_upload_ruby: #{e}"
|
1551
|
+
end
|
1552
|
+
```
|
1553
|
+
|
1554
|
+
### Parameters
|
1555
|
+
|
1556
|
+
Name | Type | Description | Notes
|
1557
|
+
------------- | ------------- | ------------- | -------------
|
1558
|
+
**owner** | **String**| |
|
1559
|
+
**repo** | **String**| |
|
1560
|
+
**data** | [**PackagesUploadRuby**](PackagesUploadRuby.md)| | [optional]
|
1561
|
+
|
1562
|
+
### Return type
|
1563
|
+
|
1564
|
+
[**Package**](Package.md)
|
1565
|
+
|
1566
|
+
### Authorization
|
1567
|
+
|
1568
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1569
|
+
|
1570
|
+
### HTTP request headers
|
1571
|
+
|
1572
|
+
- **Content-Type**: application/json
|
1573
|
+
- **Accept**: Not defined
|
1574
|
+
|
1575
|
+
|
1576
|
+
|
1577
|
+
# **packages_upload_vagrant**
|
1578
|
+
> VagrantPackageUpload packages_upload_vagrant(owner, repo, opts)
|
1579
|
+
|
1580
|
+
Create a new Vagrant package
|
1581
|
+
|
1582
|
+
Create a new Vagrant package
|
1583
|
+
|
1584
|
+
### Example
|
1585
|
+
```ruby
|
1586
|
+
# load the gem
|
1587
|
+
require 'cloudsmith-api'
|
1588
|
+
# setup authorization
|
1589
|
+
CloudsmithApi.configure do |config|
|
1590
|
+
# Configure API key authorization: apikey
|
1591
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1592
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1593
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1594
|
+
|
1595
|
+
# Configure API key authorization: csrf_token
|
1596
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1597
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1598
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
1602
|
+
|
1603
|
+
owner = "owner_example" # String |
|
1604
|
+
|
1605
|
+
repo = "repo_example" # String |
|
1606
|
+
|
1607
|
+
opts = {
|
1608
|
+
data: CloudsmithApi::PackagesUploadVagrant.new # PackagesUploadVagrant |
|
1609
|
+
}
|
1610
|
+
|
1611
|
+
begin
|
1612
|
+
#Create a new Vagrant package
|
1613
|
+
result = api_instance.packages_upload_vagrant(owner, repo, opts)
|
1614
|
+
p result
|
1615
|
+
rescue CloudsmithApi::ApiError => e
|
1616
|
+
puts "Exception when calling PackagesApi->packages_upload_vagrant: #{e}"
|
1617
|
+
end
|
1618
|
+
```
|
1619
|
+
|
1620
|
+
### Parameters
|
1621
|
+
|
1622
|
+
Name | Type | Description | Notes
|
1623
|
+
------------- | ------------- | ------------- | -------------
|
1624
|
+
**owner** | **String**| |
|
1625
|
+
**repo** | **String**| |
|
1626
|
+
**data** | [**PackagesUploadVagrant**](PackagesUploadVagrant.md)| | [optional]
|
1627
|
+
|
1628
|
+
### Return type
|
1629
|
+
|
1630
|
+
[**VagrantPackageUpload**](VagrantPackageUpload.md)
|
1631
|
+
|
1632
|
+
### Authorization
|
1633
|
+
|
1634
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1635
|
+
|
1636
|
+
### HTTP request headers
|
1637
|
+
|
1638
|
+
- **Content-Type**: application/json
|
1639
|
+
- **Accept**: Not defined
|
1640
|
+
|
1641
|
+
|
1642
|
+
|
1643
|
+
# **packages_validate_upload_alpine**
|
1644
|
+
> packages_validate_upload_alpine(owner, repo, opts)
|
1645
|
+
|
1646
|
+
Validate parameters for create Alpine package
|
1647
|
+
|
1648
|
+
Validate parameters for create Alpine package
|
1649
|
+
|
1650
|
+
### Example
|
1651
|
+
```ruby
|
1652
|
+
# load the gem
|
1653
|
+
require 'cloudsmith-api'
|
1654
|
+
# setup authorization
|
1655
|
+
CloudsmithApi.configure do |config|
|
1656
|
+
# Configure API key authorization: apikey
|
1657
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1658
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1659
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1660
|
+
|
1661
|
+
# Configure API key authorization: csrf_token
|
1662
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1663
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1664
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
1665
|
+
end
|
1666
|
+
|
1667
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
1668
|
+
|
1669
|
+
owner = "owner_example" # String |
|
1670
|
+
|
1671
|
+
repo = "repo_example" # String |
|
1672
|
+
|
1673
|
+
opts = {
|
1674
|
+
data: CloudsmithApi::PackagesValidateuploadAlpine.new # PackagesValidateuploadAlpine |
|
1675
|
+
}
|
1676
|
+
|
1677
|
+
begin
|
1678
|
+
#Validate parameters for create Alpine package
|
1679
|
+
api_instance.packages_validate_upload_alpine(owner, repo, opts)
|
1680
|
+
rescue CloudsmithApi::ApiError => e
|
1681
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_alpine: #{e}"
|
1682
|
+
end
|
1683
|
+
```
|
1684
|
+
|
1685
|
+
### Parameters
|
1686
|
+
|
1687
|
+
Name | Type | Description | Notes
|
1688
|
+
------------- | ------------- | ------------- | -------------
|
1689
|
+
**owner** | **String**| |
|
1690
|
+
**repo** | **String**| |
|
1691
|
+
**data** | [**PackagesValidateuploadAlpine**](PackagesValidateuploadAlpine.md)| | [optional]
|
1692
|
+
|
1693
|
+
### Return type
|
1694
|
+
|
1695
|
+
nil (empty response body)
|
1696
|
+
|
1697
|
+
### Authorization
|
1698
|
+
|
1699
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1700
|
+
|
1701
|
+
### HTTP request headers
|
1702
|
+
|
1703
|
+
- **Content-Type**: application/json
|
1704
|
+
- **Accept**: Not defined
|
1705
|
+
|
1706
|
+
|
1707
|
+
|
1708
|
+
# **packages_validate_upload_cargo**
|
1709
|
+
> packages_validate_upload_cargo(owner, repo, opts)
|
1710
|
+
|
1711
|
+
Validate parameters for create Cargo package
|
1712
|
+
|
1713
|
+
Validate parameters for create Cargo package
|
1714
|
+
|
1715
|
+
### Example
|
1716
|
+
```ruby
|
1717
|
+
# load the gem
|
1718
|
+
require 'cloudsmith-api'
|
1719
|
+
# setup authorization
|
1720
|
+
CloudsmithApi.configure do |config|
|
1721
|
+
# Configure API key authorization: apikey
|
1722
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1723
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1724
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1725
|
+
|
1726
|
+
# Configure API key authorization: csrf_token
|
1727
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1728
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1729
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
1730
|
+
end
|
1731
|
+
|
1732
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
1733
|
+
|
1734
|
+
owner = "owner_example" # String |
|
1735
|
+
|
1736
|
+
repo = "repo_example" # String |
|
1737
|
+
|
1738
|
+
opts = {
|
1739
|
+
data: CloudsmithApi::PackagesValidateuploadCargo.new # PackagesValidateuploadCargo |
|
1740
|
+
}
|
1741
|
+
|
1742
|
+
begin
|
1743
|
+
#Validate parameters for create Cargo package
|
1744
|
+
api_instance.packages_validate_upload_cargo(owner, repo, opts)
|
1745
|
+
rescue CloudsmithApi::ApiError => e
|
1746
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_cargo: #{e}"
|
1747
|
+
end
|
1748
|
+
```
|
1749
|
+
|
1750
|
+
### Parameters
|
1751
|
+
|
1752
|
+
Name | Type | Description | Notes
|
1753
|
+
------------- | ------------- | ------------- | -------------
|
1754
|
+
**owner** | **String**| |
|
1755
|
+
**repo** | **String**| |
|
1756
|
+
**data** | [**PackagesValidateuploadCargo**](PackagesValidateuploadCargo.md)| | [optional]
|
1757
|
+
|
1758
|
+
### Return type
|
1759
|
+
|
1760
|
+
nil (empty response body)
|
1761
|
+
|
1762
|
+
### Authorization
|
1763
|
+
|
1764
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1765
|
+
|
1766
|
+
### HTTP request headers
|
1767
|
+
|
1768
|
+
- **Content-Type**: application/json
|
1769
|
+
- **Accept**: Not defined
|
1770
|
+
|
1771
|
+
|
1772
|
+
|
1773
|
+
# **packages_validate_upload_composer**
|
1774
|
+
> packages_validate_upload_composer(owner, repo, opts)
|
1775
|
+
|
1776
|
+
Validate parameters for create Composer package
|
1777
|
+
|
1778
|
+
Validate parameters for create Composer package
|
1779
|
+
|
1780
|
+
### Example
|
1781
|
+
```ruby
|
1782
|
+
# load the gem
|
1783
|
+
require 'cloudsmith-api'
|
1784
|
+
# setup authorization
|
1785
|
+
CloudsmithApi.configure do |config|
|
1786
|
+
# Configure API key authorization: apikey
|
1787
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1788
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1789
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1790
|
+
|
1791
|
+
# Configure API key authorization: csrf_token
|
1792
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1793
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1794
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
1795
|
+
end
|
1796
|
+
|
1797
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
1798
|
+
|
1799
|
+
owner = "owner_example" # String |
|
1800
|
+
|
1801
|
+
repo = "repo_example" # String |
|
1802
|
+
|
1803
|
+
opts = {
|
1804
|
+
data: CloudsmithApi::PackagesValidateuploadComposer.new # PackagesValidateuploadComposer |
|
1805
|
+
}
|
1806
|
+
|
1807
|
+
begin
|
1808
|
+
#Validate parameters for create Composer package
|
1809
|
+
api_instance.packages_validate_upload_composer(owner, repo, opts)
|
1810
|
+
rescue CloudsmithApi::ApiError => e
|
1811
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_composer: #{e}"
|
1812
|
+
end
|
1813
|
+
```
|
1814
|
+
|
1815
|
+
### Parameters
|
1816
|
+
|
1817
|
+
Name | Type | Description | Notes
|
1818
|
+
------------- | ------------- | ------------- | -------------
|
1819
|
+
**owner** | **String**| |
|
1820
|
+
**repo** | **String**| |
|
1821
|
+
**data** | [**PackagesValidateuploadComposer**](PackagesValidateuploadComposer.md)| | [optional]
|
1822
|
+
|
1823
|
+
### Return type
|
1824
|
+
|
1825
|
+
nil (empty response body)
|
1826
|
+
|
1827
|
+
### Authorization
|
1828
|
+
|
1829
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1830
|
+
|
1831
|
+
### HTTP request headers
|
1832
|
+
|
1833
|
+
- **Content-Type**: application/json
|
1834
|
+
- **Accept**: Not defined
|
1835
|
+
|
1836
|
+
|
1837
|
+
|
1838
|
+
# **packages_validate_upload_cran**
|
1839
|
+
> packages_validate_upload_cran(owner, repo, opts)
|
1840
|
+
|
1841
|
+
Validate parameters for create CRAN package
|
1842
|
+
|
1843
|
+
Validate parameters for create CRAN package
|
1844
|
+
|
1845
|
+
### Example
|
1846
|
+
```ruby
|
1847
|
+
# load the gem
|
1848
|
+
require 'cloudsmith-api'
|
1849
|
+
# setup authorization
|
1850
|
+
CloudsmithApi.configure do |config|
|
1851
|
+
# Configure API key authorization: apikey
|
1852
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1853
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1854
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1855
|
+
|
1856
|
+
# Configure API key authorization: csrf_token
|
1857
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1858
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1859
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
1860
|
+
end
|
1861
|
+
|
1862
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
1863
|
+
|
1864
|
+
owner = "owner_example" # String |
|
1865
|
+
|
1866
|
+
repo = "repo_example" # String |
|
1867
|
+
|
1868
|
+
opts = {
|
1869
|
+
data: CloudsmithApi::PackagesValidateuploadCran.new # PackagesValidateuploadCran |
|
1870
|
+
}
|
1871
|
+
|
1872
|
+
begin
|
1873
|
+
#Validate parameters for create CRAN package
|
1874
|
+
api_instance.packages_validate_upload_cran(owner, repo, opts)
|
1875
|
+
rescue CloudsmithApi::ApiError => e
|
1876
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_cran: #{e}"
|
1877
|
+
end
|
1878
|
+
```
|
1879
|
+
|
1880
|
+
### Parameters
|
1881
|
+
|
1882
|
+
Name | Type | Description | Notes
|
1883
|
+
------------- | ------------- | ------------- | -------------
|
1884
|
+
**owner** | **String**| |
|
1885
|
+
**repo** | **String**| |
|
1886
|
+
**data** | [**PackagesValidateuploadCran**](PackagesValidateuploadCran.md)| | [optional]
|
1887
|
+
|
1888
|
+
### Return type
|
1889
|
+
|
1890
|
+
nil (empty response body)
|
1891
|
+
|
1892
|
+
### Authorization
|
1893
|
+
|
1894
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1895
|
+
|
1896
|
+
### HTTP request headers
|
1897
|
+
|
1898
|
+
- **Content-Type**: application/json
|
1899
|
+
- **Accept**: Not defined
|
1900
|
+
|
1901
|
+
|
1902
|
+
|
1903
|
+
# **packages_validate_upload_deb**
|
1904
|
+
> packages_validate_upload_deb(owner, repo, opts)
|
1905
|
+
|
1906
|
+
Validate parameters for create Debian package
|
1907
|
+
|
1908
|
+
Validate parameters for create Debian package
|
1909
|
+
|
1910
|
+
### Example
|
1911
|
+
```ruby
|
1912
|
+
# load the gem
|
1913
|
+
require 'cloudsmith-api'
|
1914
|
+
# setup authorization
|
1915
|
+
CloudsmithApi.configure do |config|
|
1916
|
+
# Configure API key authorization: apikey
|
1917
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1918
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1919
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1920
|
+
|
1921
|
+
# Configure API key authorization: csrf_token
|
1922
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1923
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1924
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
1925
|
+
end
|
1926
|
+
|
1927
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
1928
|
+
|
1929
|
+
owner = "owner_example" # String |
|
1930
|
+
|
1931
|
+
repo = "repo_example" # String |
|
1932
|
+
|
1933
|
+
opts = {
|
1934
|
+
data: CloudsmithApi::PackagesValidateuploadDeb.new # PackagesValidateuploadDeb |
|
1935
|
+
}
|
1936
|
+
|
1937
|
+
begin
|
1938
|
+
#Validate parameters for create Debian package
|
1939
|
+
api_instance.packages_validate_upload_deb(owner, repo, opts)
|
1940
|
+
rescue CloudsmithApi::ApiError => e
|
1941
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_deb: #{e}"
|
1942
|
+
end
|
1943
|
+
```
|
1944
|
+
|
1945
|
+
### Parameters
|
1946
|
+
|
1947
|
+
Name | Type | Description | Notes
|
1948
|
+
------------- | ------------- | ------------- | -------------
|
1949
|
+
**owner** | **String**| |
|
1950
|
+
**repo** | **String**| |
|
1951
|
+
**data** | [**PackagesValidateuploadDeb**](PackagesValidateuploadDeb.md)| | [optional]
|
1952
|
+
|
1953
|
+
### Return type
|
1954
|
+
|
1955
|
+
nil (empty response body)
|
1956
|
+
|
1957
|
+
### Authorization
|
1958
|
+
|
1959
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1960
|
+
|
1961
|
+
### HTTP request headers
|
1962
|
+
|
1963
|
+
- **Content-Type**: application/json
|
1964
|
+
- **Accept**: Not defined
|
1965
|
+
|
1966
|
+
|
1967
|
+
|
1968
|
+
# **packages_validate_upload_docker**
|
1969
|
+
> packages_validate_upload_docker(owner, repo, opts)
|
1970
|
+
|
1971
|
+
Validate parameters for create Docker package
|
1972
|
+
|
1973
|
+
Validate parameters for create Docker package
|
1974
|
+
|
1975
|
+
### Example
|
1976
|
+
```ruby
|
1977
|
+
# load the gem
|
1978
|
+
require 'cloudsmith-api'
|
1979
|
+
# setup authorization
|
1980
|
+
CloudsmithApi.configure do |config|
|
1981
|
+
# Configure API key authorization: apikey
|
1982
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1983
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1984
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1985
|
+
|
1986
|
+
# Configure API key authorization: csrf_token
|
1987
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
1988
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1989
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
1990
|
+
end
|
1991
|
+
|
1992
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
1993
|
+
|
1994
|
+
owner = "owner_example" # String |
|
1995
|
+
|
1996
|
+
repo = "repo_example" # String |
|
1997
|
+
|
1998
|
+
opts = {
|
1999
|
+
data: CloudsmithApi::PackagesValidateuploadDocker.new # PackagesValidateuploadDocker |
|
2000
|
+
}
|
2001
|
+
|
2002
|
+
begin
|
2003
|
+
#Validate parameters for create Docker package
|
2004
|
+
api_instance.packages_validate_upload_docker(owner, repo, opts)
|
2005
|
+
rescue CloudsmithApi::ApiError => e
|
2006
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_docker: #{e}"
|
2007
|
+
end
|
2008
|
+
```
|
2009
|
+
|
2010
|
+
### Parameters
|
2011
|
+
|
2012
|
+
Name | Type | Description | Notes
|
2013
|
+
------------- | ------------- | ------------- | -------------
|
2014
|
+
**owner** | **String**| |
|
2015
|
+
**repo** | **String**| |
|
2016
|
+
**data** | [**PackagesValidateuploadDocker**](PackagesValidateuploadDocker.md)| | [optional]
|
2017
|
+
|
2018
|
+
### Return type
|
2019
|
+
|
2020
|
+
nil (empty response body)
|
2021
|
+
|
2022
|
+
### Authorization
|
2023
|
+
|
2024
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2025
|
+
|
2026
|
+
### HTTP request headers
|
2027
|
+
|
2028
|
+
- **Content-Type**: application/json
|
2029
|
+
- **Accept**: Not defined
|
2030
|
+
|
2031
|
+
|
2032
|
+
|
2033
|
+
# **packages_validate_upload_go**
|
2034
|
+
> packages_validate_upload_go(owner, repo, opts)
|
2035
|
+
|
2036
|
+
Validate parameters for create Go package
|
2037
|
+
|
2038
|
+
Validate parameters for create Go package
|
2039
|
+
|
2040
|
+
### Example
|
2041
|
+
```ruby
|
2042
|
+
# load the gem
|
2043
|
+
require 'cloudsmith-api'
|
2044
|
+
# setup authorization
|
2045
|
+
CloudsmithApi.configure do |config|
|
2046
|
+
# Configure API key authorization: apikey
|
2047
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2048
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2049
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2050
|
+
|
2051
|
+
# Configure API key authorization: csrf_token
|
2052
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2053
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2054
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2055
|
+
end
|
2056
|
+
|
2057
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2058
|
+
|
2059
|
+
owner = "owner_example" # String |
|
2060
|
+
|
2061
|
+
repo = "repo_example" # String |
|
2062
|
+
|
2063
|
+
opts = {
|
2064
|
+
data: CloudsmithApi::PackagesValidateuploadGo.new # PackagesValidateuploadGo |
|
2065
|
+
}
|
2066
|
+
|
2067
|
+
begin
|
2068
|
+
#Validate parameters for create Go package
|
2069
|
+
api_instance.packages_validate_upload_go(owner, repo, opts)
|
2070
|
+
rescue CloudsmithApi::ApiError => e
|
2071
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_go: #{e}"
|
2072
|
+
end
|
2073
|
+
```
|
2074
|
+
|
2075
|
+
### Parameters
|
2076
|
+
|
2077
|
+
Name | Type | Description | Notes
|
2078
|
+
------------- | ------------- | ------------- | -------------
|
2079
|
+
**owner** | **String**| |
|
2080
|
+
**repo** | **String**| |
|
2081
|
+
**data** | [**PackagesValidateuploadGo**](PackagesValidateuploadGo.md)| | [optional]
|
2082
|
+
|
2083
|
+
### Return type
|
2084
|
+
|
2085
|
+
nil (empty response body)
|
2086
|
+
|
2087
|
+
### Authorization
|
2088
|
+
|
2089
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2090
|
+
|
2091
|
+
### HTTP request headers
|
2092
|
+
|
2093
|
+
- **Content-Type**: application/json
|
2094
|
+
- **Accept**: Not defined
|
2095
|
+
|
2096
|
+
|
2097
|
+
|
2098
|
+
# **packages_validate_upload_helm**
|
2099
|
+
> packages_validate_upload_helm(owner, repo, opts)
|
2100
|
+
|
2101
|
+
Validate parameters for create Helm package
|
2102
|
+
|
2103
|
+
Validate parameters for create Helm package
|
2104
|
+
|
2105
|
+
### Example
|
2106
|
+
```ruby
|
2107
|
+
# load the gem
|
2108
|
+
require 'cloudsmith-api'
|
2109
|
+
# setup authorization
|
2110
|
+
CloudsmithApi.configure do |config|
|
2111
|
+
# Configure API key authorization: apikey
|
2112
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2113
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2114
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2115
|
+
|
2116
|
+
# Configure API key authorization: csrf_token
|
2117
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2118
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2119
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2120
|
+
end
|
2121
|
+
|
2122
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2123
|
+
|
2124
|
+
owner = "owner_example" # String |
|
2125
|
+
|
2126
|
+
repo = "repo_example" # String |
|
2127
|
+
|
2128
|
+
opts = {
|
2129
|
+
data: CloudsmithApi::PackagesValidateuploadHelm.new # PackagesValidateuploadHelm |
|
2130
|
+
}
|
2131
|
+
|
2132
|
+
begin
|
2133
|
+
#Validate parameters for create Helm package
|
2134
|
+
api_instance.packages_validate_upload_helm(owner, repo, opts)
|
2135
|
+
rescue CloudsmithApi::ApiError => e
|
2136
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_helm: #{e}"
|
2137
|
+
end
|
2138
|
+
```
|
2139
|
+
|
2140
|
+
### Parameters
|
2141
|
+
|
2142
|
+
Name | Type | Description | Notes
|
2143
|
+
------------- | ------------- | ------------- | -------------
|
2144
|
+
**owner** | **String**| |
|
2145
|
+
**repo** | **String**| |
|
2146
|
+
**data** | [**PackagesValidateuploadHelm**](PackagesValidateuploadHelm.md)| | [optional]
|
2147
|
+
|
2148
|
+
### Return type
|
2149
|
+
|
2150
|
+
nil (empty response body)
|
2151
|
+
|
2152
|
+
### Authorization
|
2153
|
+
|
2154
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2155
|
+
|
2156
|
+
### HTTP request headers
|
2157
|
+
|
2158
|
+
- **Content-Type**: application/json
|
2159
|
+
- **Accept**: Not defined
|
2160
|
+
|
2161
|
+
|
2162
|
+
|
2163
|
+
# **packages_validate_upload_luarocks**
|
2164
|
+
> packages_validate_upload_luarocks(owner, repo, opts)
|
2165
|
+
|
2166
|
+
Validate parameters for create LuaRocks package
|
2167
|
+
|
2168
|
+
Validate parameters for create LuaRocks package
|
2169
|
+
|
2170
|
+
### Example
|
2171
|
+
```ruby
|
2172
|
+
# load the gem
|
2173
|
+
require 'cloudsmith-api'
|
2174
|
+
# setup authorization
|
2175
|
+
CloudsmithApi.configure do |config|
|
2176
|
+
# Configure API key authorization: apikey
|
2177
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2178
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2179
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2180
|
+
|
2181
|
+
# Configure API key authorization: csrf_token
|
2182
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2183
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2184
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2185
|
+
end
|
2186
|
+
|
2187
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2188
|
+
|
2189
|
+
owner = "owner_example" # String |
|
2190
|
+
|
2191
|
+
repo = "repo_example" # String |
|
2192
|
+
|
2193
|
+
opts = {
|
2194
|
+
data: CloudsmithApi::PackagesValidateuploadLuarocks.new # PackagesValidateuploadLuarocks |
|
2195
|
+
}
|
2196
|
+
|
2197
|
+
begin
|
2198
|
+
#Validate parameters for create LuaRocks package
|
2199
|
+
api_instance.packages_validate_upload_luarocks(owner, repo, opts)
|
2200
|
+
rescue CloudsmithApi::ApiError => e
|
2201
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_luarocks: #{e}"
|
2202
|
+
end
|
2203
|
+
```
|
2204
|
+
|
2205
|
+
### Parameters
|
2206
|
+
|
2207
|
+
Name | Type | Description | Notes
|
2208
|
+
------------- | ------------- | ------------- | -------------
|
2209
|
+
**owner** | **String**| |
|
2210
|
+
**repo** | **String**| |
|
2211
|
+
**data** | [**PackagesValidateuploadLuarocks**](PackagesValidateuploadLuarocks.md)| | [optional]
|
2212
|
+
|
2213
|
+
### Return type
|
2214
|
+
|
2215
|
+
nil (empty response body)
|
2216
|
+
|
2217
|
+
### Authorization
|
2218
|
+
|
2219
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2220
|
+
|
2221
|
+
### HTTP request headers
|
2222
|
+
|
2223
|
+
- **Content-Type**: application/json
|
2224
|
+
- **Accept**: Not defined
|
2225
|
+
|
2226
|
+
|
2227
|
+
|
2228
|
+
# **packages_validate_upload_maven**
|
2229
|
+
> packages_validate_upload_maven(owner, repo, opts)
|
2230
|
+
|
2231
|
+
Validate parameters for create Maven package
|
2232
|
+
|
2233
|
+
Validate parameters for create Maven package
|
2234
|
+
|
2235
|
+
### Example
|
2236
|
+
```ruby
|
2237
|
+
# load the gem
|
2238
|
+
require 'cloudsmith-api'
|
2239
|
+
# setup authorization
|
2240
|
+
CloudsmithApi.configure do |config|
|
2241
|
+
# Configure API key authorization: apikey
|
2242
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2243
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2244
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2245
|
+
|
2246
|
+
# Configure API key authorization: csrf_token
|
2247
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2248
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2249
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2250
|
+
end
|
2251
|
+
|
2252
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2253
|
+
|
2254
|
+
owner = "owner_example" # String |
|
2255
|
+
|
2256
|
+
repo = "repo_example" # String |
|
2257
|
+
|
2258
|
+
opts = {
|
2259
|
+
data: CloudsmithApi::PackagesValidateuploadMaven.new # PackagesValidateuploadMaven |
|
2260
|
+
}
|
2261
|
+
|
2262
|
+
begin
|
2263
|
+
#Validate parameters for create Maven package
|
2264
|
+
api_instance.packages_validate_upload_maven(owner, repo, opts)
|
2265
|
+
rescue CloudsmithApi::ApiError => e
|
2266
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_maven: #{e}"
|
2267
|
+
end
|
2268
|
+
```
|
2269
|
+
|
2270
|
+
### Parameters
|
2271
|
+
|
2272
|
+
Name | Type | Description | Notes
|
2273
|
+
------------- | ------------- | ------------- | -------------
|
2274
|
+
**owner** | **String**| |
|
2275
|
+
**repo** | **String**| |
|
2276
|
+
**data** | [**PackagesValidateuploadMaven**](PackagesValidateuploadMaven.md)| | [optional]
|
2277
|
+
|
2278
|
+
### Return type
|
2279
|
+
|
2280
|
+
nil (empty response body)
|
2281
|
+
|
2282
|
+
### Authorization
|
2283
|
+
|
2284
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2285
|
+
|
2286
|
+
### HTTP request headers
|
2287
|
+
|
2288
|
+
- **Content-Type**: application/json
|
2289
|
+
- **Accept**: Not defined
|
2290
|
+
|
2291
|
+
|
2292
|
+
|
2293
|
+
# **packages_validate_upload_npm**
|
2294
|
+
> packages_validate_upload_npm(owner, repo, opts)
|
2295
|
+
|
2296
|
+
Validate parameters for create npm package
|
2297
|
+
|
2298
|
+
Validate parameters for create npm package
|
2299
|
+
|
2300
|
+
### Example
|
2301
|
+
```ruby
|
2302
|
+
# load the gem
|
2303
|
+
require 'cloudsmith-api'
|
2304
|
+
# setup authorization
|
2305
|
+
CloudsmithApi.configure do |config|
|
2306
|
+
# Configure API key authorization: apikey
|
2307
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2308
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2309
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2310
|
+
|
2311
|
+
# Configure API key authorization: csrf_token
|
2312
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2313
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2314
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2315
|
+
end
|
2316
|
+
|
2317
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2318
|
+
|
2319
|
+
owner = "owner_example" # String |
|
2320
|
+
|
2321
|
+
repo = "repo_example" # String |
|
2322
|
+
|
2323
|
+
opts = {
|
2324
|
+
data: CloudsmithApi::PackagesValidateuploadNpm.new # PackagesValidateuploadNpm |
|
2325
|
+
}
|
2326
|
+
|
2327
|
+
begin
|
2328
|
+
#Validate parameters for create npm package
|
2329
|
+
api_instance.packages_validate_upload_npm(owner, repo, opts)
|
2330
|
+
rescue CloudsmithApi::ApiError => e
|
2331
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_npm: #{e}"
|
2332
|
+
end
|
2333
|
+
```
|
2334
|
+
|
2335
|
+
### Parameters
|
2336
|
+
|
2337
|
+
Name | Type | Description | Notes
|
2338
|
+
------------- | ------------- | ------------- | -------------
|
2339
|
+
**owner** | **String**| |
|
2340
|
+
**repo** | **String**| |
|
2341
|
+
**data** | [**PackagesValidateuploadNpm**](PackagesValidateuploadNpm.md)| | [optional]
|
2342
|
+
|
2343
|
+
### Return type
|
2344
|
+
|
2345
|
+
nil (empty response body)
|
2346
|
+
|
2347
|
+
### Authorization
|
2348
|
+
|
2349
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2350
|
+
|
2351
|
+
### HTTP request headers
|
2352
|
+
|
2353
|
+
- **Content-Type**: application/json
|
2354
|
+
- **Accept**: Not defined
|
2355
|
+
|
2356
|
+
|
2357
|
+
|
2358
|
+
# **packages_validate_upload_nuget**
|
2359
|
+
> packages_validate_upload_nuget(owner, repo, opts)
|
2360
|
+
|
2361
|
+
Validate parameters for create NuGet package
|
2362
|
+
|
2363
|
+
Validate parameters for create NuGet package
|
2364
|
+
|
2365
|
+
### Example
|
2366
|
+
```ruby
|
2367
|
+
# load the gem
|
2368
|
+
require 'cloudsmith-api'
|
2369
|
+
# setup authorization
|
2370
|
+
CloudsmithApi.configure do |config|
|
2371
|
+
# Configure API key authorization: apikey
|
2372
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2373
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2374
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2375
|
+
|
2376
|
+
# Configure API key authorization: csrf_token
|
2377
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2378
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2379
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2380
|
+
end
|
2381
|
+
|
2382
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2383
|
+
|
2384
|
+
owner = "owner_example" # String |
|
2385
|
+
|
2386
|
+
repo = "repo_example" # String |
|
2387
|
+
|
2388
|
+
opts = {
|
2389
|
+
data: CloudsmithApi::PackagesValidateuploadNuget.new # PackagesValidateuploadNuget |
|
2390
|
+
}
|
2391
|
+
|
2392
|
+
begin
|
2393
|
+
#Validate parameters for create NuGet package
|
2394
|
+
api_instance.packages_validate_upload_nuget(owner, repo, opts)
|
2395
|
+
rescue CloudsmithApi::ApiError => e
|
2396
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_nuget: #{e}"
|
2397
|
+
end
|
2398
|
+
```
|
2399
|
+
|
2400
|
+
### Parameters
|
2401
|
+
|
2402
|
+
Name | Type | Description | Notes
|
2403
|
+
------------- | ------------- | ------------- | -------------
|
2404
|
+
**owner** | **String**| |
|
2405
|
+
**repo** | **String**| |
|
2406
|
+
**data** | [**PackagesValidateuploadNuget**](PackagesValidateuploadNuget.md)| | [optional]
|
2407
|
+
|
2408
|
+
### Return type
|
2409
|
+
|
2410
|
+
nil (empty response body)
|
2411
|
+
|
2412
|
+
### Authorization
|
2413
|
+
|
2414
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2415
|
+
|
2416
|
+
### HTTP request headers
|
2417
|
+
|
2418
|
+
- **Content-Type**: application/json
|
2419
|
+
- **Accept**: Not defined
|
2420
|
+
|
2421
|
+
|
2422
|
+
|
2423
|
+
# **packages_validate_upload_python**
|
2424
|
+
> packages_validate_upload_python(owner, repo, opts)
|
2425
|
+
|
2426
|
+
Validate parameters for create Python package
|
2427
|
+
|
2428
|
+
Validate parameters for create Python package
|
2429
|
+
|
2430
|
+
### Example
|
2431
|
+
```ruby
|
2432
|
+
# load the gem
|
2433
|
+
require 'cloudsmith-api'
|
2434
|
+
# setup authorization
|
2435
|
+
CloudsmithApi.configure do |config|
|
2436
|
+
# Configure API key authorization: apikey
|
2437
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2438
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2439
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2440
|
+
|
2441
|
+
# Configure API key authorization: csrf_token
|
2442
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2443
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2444
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2445
|
+
end
|
2446
|
+
|
2447
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2448
|
+
|
2449
|
+
owner = "owner_example" # String |
|
2450
|
+
|
2451
|
+
repo = "repo_example" # String |
|
2452
|
+
|
2453
|
+
opts = {
|
2454
|
+
data: CloudsmithApi::PackagesValidateuploadPython.new # PackagesValidateuploadPython |
|
2455
|
+
}
|
2456
|
+
|
2457
|
+
begin
|
2458
|
+
#Validate parameters for create Python package
|
2459
|
+
api_instance.packages_validate_upload_python(owner, repo, opts)
|
2460
|
+
rescue CloudsmithApi::ApiError => e
|
2461
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_python: #{e}"
|
2462
|
+
end
|
2463
|
+
```
|
2464
|
+
|
2465
|
+
### Parameters
|
2466
|
+
|
2467
|
+
Name | Type | Description | Notes
|
2468
|
+
------------- | ------------- | ------------- | -------------
|
2469
|
+
**owner** | **String**| |
|
2470
|
+
**repo** | **String**| |
|
2471
|
+
**data** | [**PackagesValidateuploadPython**](PackagesValidateuploadPython.md)| | [optional]
|
2472
|
+
|
2473
|
+
### Return type
|
2474
|
+
|
2475
|
+
nil (empty response body)
|
2476
|
+
|
2477
|
+
### Authorization
|
2478
|
+
|
2479
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2480
|
+
|
2481
|
+
### HTTP request headers
|
2482
|
+
|
2483
|
+
- **Content-Type**: application/json
|
2484
|
+
- **Accept**: Not defined
|
2485
|
+
|
2486
|
+
|
2487
|
+
|
2488
|
+
# **packages_validate_upload_raw**
|
2489
|
+
> packages_validate_upload_raw(owner, repo, opts)
|
2490
|
+
|
2491
|
+
Validate parameters for create Raw package
|
2492
|
+
|
2493
|
+
Validate parameters for create Raw package
|
2494
|
+
|
2495
|
+
### Example
|
2496
|
+
```ruby
|
2497
|
+
# load the gem
|
2498
|
+
require 'cloudsmith-api'
|
2499
|
+
# setup authorization
|
2500
|
+
CloudsmithApi.configure do |config|
|
2501
|
+
# Configure API key authorization: apikey
|
2502
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2503
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2504
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2505
|
+
|
2506
|
+
# Configure API key authorization: csrf_token
|
2507
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2508
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2509
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2510
|
+
end
|
2511
|
+
|
2512
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2513
|
+
|
2514
|
+
owner = "owner_example" # String |
|
2515
|
+
|
2516
|
+
repo = "repo_example" # String |
|
2517
|
+
|
2518
|
+
opts = {
|
2519
|
+
data: CloudsmithApi::PackagesValidateuploadRaw.new # PackagesValidateuploadRaw |
|
2520
|
+
}
|
2521
|
+
|
2522
|
+
begin
|
2523
|
+
#Validate parameters for create Raw package
|
2524
|
+
api_instance.packages_validate_upload_raw(owner, repo, opts)
|
2525
|
+
rescue CloudsmithApi::ApiError => e
|
2526
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_raw: #{e}"
|
2527
|
+
end
|
2528
|
+
```
|
2529
|
+
|
2530
|
+
### Parameters
|
2531
|
+
|
2532
|
+
Name | Type | Description | Notes
|
2533
|
+
------------- | ------------- | ------------- | -------------
|
2534
|
+
**owner** | **String**| |
|
2535
|
+
**repo** | **String**| |
|
2536
|
+
**data** | [**PackagesValidateuploadRaw**](PackagesValidateuploadRaw.md)| | [optional]
|
2537
|
+
|
2538
|
+
### Return type
|
2539
|
+
|
2540
|
+
nil (empty response body)
|
2541
|
+
|
2542
|
+
### Authorization
|
2543
|
+
|
2544
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2545
|
+
|
2546
|
+
### HTTP request headers
|
2547
|
+
|
2548
|
+
- **Content-Type**: application/json
|
2549
|
+
- **Accept**: Not defined
|
2550
|
+
|
2551
|
+
|
2552
|
+
|
2553
|
+
# **packages_validate_upload_rpm**
|
2554
|
+
> packages_validate_upload_rpm(owner, repo, opts)
|
2555
|
+
|
2556
|
+
Validate parameters for create RedHat package
|
2557
|
+
|
2558
|
+
Validate parameters for create RedHat package
|
2559
|
+
|
2560
|
+
### Example
|
2561
|
+
```ruby
|
2562
|
+
# load the gem
|
2563
|
+
require 'cloudsmith-api'
|
2564
|
+
# setup authorization
|
2565
|
+
CloudsmithApi.configure do |config|
|
2566
|
+
# Configure API key authorization: apikey
|
2567
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2568
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2569
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2570
|
+
|
2571
|
+
# Configure API key authorization: csrf_token
|
2572
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2573
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2574
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2575
|
+
end
|
2576
|
+
|
2577
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2578
|
+
|
2579
|
+
owner = "owner_example" # String |
|
2580
|
+
|
2581
|
+
repo = "repo_example" # String |
|
2582
|
+
|
2583
|
+
opts = {
|
2584
|
+
data: CloudsmithApi::PackagesValidateuploadRpm.new # PackagesValidateuploadRpm |
|
2585
|
+
}
|
2586
|
+
|
2587
|
+
begin
|
2588
|
+
#Validate parameters for create RedHat package
|
2589
|
+
api_instance.packages_validate_upload_rpm(owner, repo, opts)
|
2590
|
+
rescue CloudsmithApi::ApiError => e
|
2591
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_rpm: #{e}"
|
2592
|
+
end
|
2593
|
+
```
|
2594
|
+
|
2595
|
+
### Parameters
|
2596
|
+
|
2597
|
+
Name | Type | Description | Notes
|
2598
|
+
------------- | ------------- | ------------- | -------------
|
2599
|
+
**owner** | **String**| |
|
2600
|
+
**repo** | **String**| |
|
2601
|
+
**data** | [**PackagesValidateuploadRpm**](PackagesValidateuploadRpm.md)| | [optional]
|
2602
|
+
|
2603
|
+
### Return type
|
2604
|
+
|
2605
|
+
nil (empty response body)
|
2606
|
+
|
2607
|
+
### Authorization
|
2608
|
+
|
2609
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2610
|
+
|
2611
|
+
### HTTP request headers
|
2612
|
+
|
2613
|
+
- **Content-Type**: application/json
|
2614
|
+
- **Accept**: Not defined
|
2615
|
+
|
2616
|
+
|
2617
|
+
|
2618
|
+
# **packages_validate_upload_ruby**
|
2619
|
+
> packages_validate_upload_ruby(owner, repo, opts)
|
2620
|
+
|
2621
|
+
Validate parameters for create Ruby package
|
2622
|
+
|
2623
|
+
Validate parameters for create Ruby package
|
2624
|
+
|
2625
|
+
### Example
|
2626
|
+
```ruby
|
2627
|
+
# load the gem
|
2628
|
+
require 'cloudsmith-api'
|
2629
|
+
# setup authorization
|
2630
|
+
CloudsmithApi.configure do |config|
|
2631
|
+
# Configure API key authorization: apikey
|
2632
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2633
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2634
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
2635
|
+
|
2636
|
+
# Configure API key authorization: csrf_token
|
2637
|
+
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
2638
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2639
|
+
#config.api_key_prefix['X-CSRFToken'] = 'Bearer'
|
2640
|
+
end
|
2641
|
+
|
2642
|
+
api_instance = CloudsmithApi::PackagesApi.new
|
2643
|
+
|
2644
|
+
owner = "owner_example" # String |
|
2645
|
+
|
2646
|
+
repo = "repo_example" # String |
|
2647
|
+
|
2648
|
+
opts = {
|
2649
|
+
data: CloudsmithApi::PackagesValidateuploadRuby.new # PackagesValidateuploadRuby |
|
2650
|
+
}
|
2651
|
+
|
2652
|
+
begin
|
2653
|
+
#Validate parameters for create Ruby package
|
2654
|
+
api_instance.packages_validate_upload_ruby(owner, repo, opts)
|
2655
|
+
rescue CloudsmithApi::ApiError => e
|
2656
|
+
puts "Exception when calling PackagesApi->packages_validate_upload_ruby: #{e}"
|
2657
|
+
end
|
2658
|
+
```
|
2659
|
+
|
2660
|
+
### Parameters
|
2661
|
+
|
2662
|
+
Name | Type | Description | Notes
|
2663
|
+
------------- | ------------- | ------------- | -------------
|
2664
|
+
**owner** | **String**| |
|
2665
|
+
**repo** | **String**| |
|
2666
|
+
**data** | [**PackagesValidateuploadRuby**](PackagesValidateuploadRuby.md)| | [optional]
|
2667
|
+
|
2668
|
+
### Return type
|
2669
|
+
|
2670
|
+
nil (empty response body)
|
2671
|
+
|
2672
|
+
### Authorization
|
2673
|
+
|
2674
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
2675
|
+
|
2676
|
+
### HTTP request headers
|
2677
|
+
|
2678
|
+
- **Content-Type**: application/json
|
2679
|
+
- **Accept**: Not defined
|
2680
|
+
|
2681
|
+
|
2682
|
+
|
2683
|
+
# **packages_validate_upload_vagrant**
|
2684
|
+
> packages_validate_upload_vagrant(owner, repo, opts)
|
2685
|
+
|
2686
|
+
Validate parameters for create Vagrant package
|
2687
|
+
|
2688
|
+
Validate parameters for create Vagrant package
|
2689
|
+
|
2690
|
+
### Example
|
2691
|
+
```ruby
|
2692
|
+
# load the gem
|
2693
|
+
require 'cloudsmith-api'
|
2694
|
+
# setup authorization
|
2695
|
+
CloudsmithApi.configure do |config|
|
2696
|
+
# Configure API key authorization: apikey
|
2697
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
2698
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2699
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1591
2700
|
|
1592
2701
|
# Configure API key authorization: csrf_token
|
1593
2702
|
config.api_key['X-CSRFToken'] = 'YOUR API KEY'
|
@@ -1627,7 +2736,7 @@ nil (empty response body)
|
|
1627
2736
|
|
1628
2737
|
### Authorization
|
1629
2738
|
|
1630
|
-
[apikey](../README.md#apikey), [
|
2739
|
+
[apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
|
1631
2740
|
|
1632
2741
|
### HTTP request headers
|
1633
2742
|
|