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
data/vendor/bundle/ruby/2.3.0/gems/rspec-core-3.7.1/lib/rspec/core/bisect/example_minimizer.rb
DELETED
@@ -1,169 +0,0 @@
|
|
1
|
-
module RSpec
|
2
|
-
module Core
|
3
|
-
module Bisect
|
4
|
-
# @private
|
5
|
-
# Contains the core bisect logic. Searches for examples we can ignore by
|
6
|
-
# repeatedly running different subsets of the suite.
|
7
|
-
class ExampleMinimizer
|
8
|
-
attr_reader :runner, :reporter, :all_example_ids, :failed_example_ids
|
9
|
-
attr_accessor :remaining_ids
|
10
|
-
|
11
|
-
def initialize(runner, reporter)
|
12
|
-
@runner = runner
|
13
|
-
@reporter = reporter
|
14
|
-
end
|
15
|
-
|
16
|
-
def find_minimal_repro
|
17
|
-
prep
|
18
|
-
|
19
|
-
_, duration = track_duration do
|
20
|
-
bisect(non_failing_example_ids)
|
21
|
-
end
|
22
|
-
|
23
|
-
notify(:bisect_complete, :duration => duration,
|
24
|
-
:original_non_failing_count => non_failing_example_ids.size,
|
25
|
-
:remaining_count => remaining_ids.size)
|
26
|
-
|
27
|
-
remaining_ids + failed_example_ids
|
28
|
-
end
|
29
|
-
|
30
|
-
def bisect(candidate_ids)
|
31
|
-
notify(:bisect_dependency_check_started)
|
32
|
-
if get_expected_failures_for?([])
|
33
|
-
notify(:bisect_dependency_check_failed)
|
34
|
-
self.remaining_ids = []
|
35
|
-
return
|
36
|
-
end
|
37
|
-
notify(:bisect_dependency_check_passed)
|
38
|
-
|
39
|
-
bisect_over(candidate_ids)
|
40
|
-
end
|
41
|
-
|
42
|
-
def bisect_over(candidate_ids)
|
43
|
-
return if candidate_ids.one?
|
44
|
-
|
45
|
-
notify(
|
46
|
-
:bisect_round_started,
|
47
|
-
:candidate_range => example_range(candidate_ids),
|
48
|
-
:candidates_count => candidate_ids.size
|
49
|
-
)
|
50
|
-
|
51
|
-
slice_size = (candidate_ids.length / 2.0).ceil
|
52
|
-
lhs, rhs = candidate_ids.each_slice(slice_size).to_a
|
53
|
-
|
54
|
-
ids_to_ignore, duration = track_duration do
|
55
|
-
[lhs, rhs].find do |ids|
|
56
|
-
get_expected_failures_for?(remaining_ids - ids)
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
if ids_to_ignore
|
61
|
-
self.remaining_ids -= ids_to_ignore
|
62
|
-
notify(
|
63
|
-
:bisect_round_ignoring_ids,
|
64
|
-
:ids_to_ignore => ids_to_ignore,
|
65
|
-
:ignore_range => example_range(ids_to_ignore),
|
66
|
-
:remaining_ids => remaining_ids,
|
67
|
-
:duration => duration
|
68
|
-
)
|
69
|
-
bisect_over(candidate_ids - ids_to_ignore)
|
70
|
-
else
|
71
|
-
notify(
|
72
|
-
:bisect_round_detected_multiple_culprits,
|
73
|
-
:duration => duration
|
74
|
-
)
|
75
|
-
bisect_over(lhs)
|
76
|
-
bisect_over(rhs)
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
def currently_needed_ids
|
81
|
-
remaining_ids + failed_example_ids
|
82
|
-
end
|
83
|
-
|
84
|
-
def repro_command_for_currently_needed_ids
|
85
|
-
return runner.repro_command_from(currently_needed_ids) if remaining_ids
|
86
|
-
"(Not yet enough information to provide any repro command)"
|
87
|
-
end
|
88
|
-
|
89
|
-
# @private
|
90
|
-
# Convenience class for describing a subset of the candidate examples
|
91
|
-
ExampleRange = Struct.new(:start, :finish) do
|
92
|
-
def description
|
93
|
-
if start == finish
|
94
|
-
"example #{start}"
|
95
|
-
else
|
96
|
-
"examples #{start}-#{finish}"
|
97
|
-
end
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
private
|
102
|
-
|
103
|
-
def example_range(ids)
|
104
|
-
ExampleRange.new(
|
105
|
-
non_failing_example_ids.find_index(ids.first) + 1,
|
106
|
-
non_failing_example_ids.find_index(ids.last) + 1
|
107
|
-
)
|
108
|
-
end
|
109
|
-
|
110
|
-
def prep
|
111
|
-
notify(:bisect_starting, :original_cli_args => runner.original_cli_args)
|
112
|
-
|
113
|
-
_, duration = track_duration do
|
114
|
-
original_results = runner.original_results
|
115
|
-
@all_example_ids = original_results.all_example_ids
|
116
|
-
@failed_example_ids = original_results.failed_example_ids
|
117
|
-
@remaining_ids = non_failing_example_ids
|
118
|
-
end
|
119
|
-
|
120
|
-
if @failed_example_ids.empty?
|
121
|
-
raise BisectFailedError, "\n\nNo failures found. Bisect only works " \
|
122
|
-
"in the presence of one or more failing examples."
|
123
|
-
else
|
124
|
-
notify(:bisect_original_run_complete, :failed_example_ids => failed_example_ids,
|
125
|
-
:non_failing_example_ids => non_failing_example_ids,
|
126
|
-
:duration => duration)
|
127
|
-
end
|
128
|
-
end
|
129
|
-
|
130
|
-
def non_failing_example_ids
|
131
|
-
@non_failing_example_ids ||= all_example_ids - failed_example_ids
|
132
|
-
end
|
133
|
-
|
134
|
-
def get_expected_failures_for?(ids)
|
135
|
-
ids_to_run = ids + failed_example_ids
|
136
|
-
notify(
|
137
|
-
:bisect_individual_run_start,
|
138
|
-
:command => runner.repro_command_from(ids_to_run),
|
139
|
-
:ids_to_run => ids_to_run
|
140
|
-
)
|
141
|
-
|
142
|
-
results, duration = track_duration { runner.run(ids_to_run) }
|
143
|
-
notify(:bisect_individual_run_complete, :duration => duration, :results => results)
|
144
|
-
|
145
|
-
abort_if_ordering_inconsistent(results)
|
146
|
-
(failed_example_ids & results.failed_example_ids) == failed_example_ids
|
147
|
-
end
|
148
|
-
|
149
|
-
def track_duration
|
150
|
-
start = ::RSpec::Core::Time.now
|
151
|
-
[yield, ::RSpec::Core::Time.now - start]
|
152
|
-
end
|
153
|
-
|
154
|
-
def abort_if_ordering_inconsistent(results)
|
155
|
-
expected_order = all_example_ids & results.all_example_ids
|
156
|
-
return if expected_order == results.all_example_ids
|
157
|
-
|
158
|
-
raise BisectFailedError, "\n\nThe example ordering is inconsistent. " \
|
159
|
-
"`--bisect` relies upon consistent ordering (e.g. by passing " \
|
160
|
-
"`--seed` if you're using random ordering) to work properly."
|
161
|
-
end
|
162
|
-
|
163
|
-
def notify(*args)
|
164
|
-
reporter.publish(*args)
|
165
|
-
end
|
166
|
-
end
|
167
|
-
end
|
168
|
-
end
|
169
|
-
end
|
@@ -1,169 +0,0 @@
|
|
1
|
-
RSpec::Support.require_rspec_core "shell_escape"
|
2
|
-
require 'open3'
|
3
|
-
require 'shellwords'
|
4
|
-
|
5
|
-
module RSpec
|
6
|
-
module Core
|
7
|
-
module Bisect
|
8
|
-
# Provides an API to run the suite for a set of locations, using
|
9
|
-
# the given bisect server to capture the results.
|
10
|
-
# @private
|
11
|
-
class Runner
|
12
|
-
attr_reader :original_cli_args
|
13
|
-
|
14
|
-
def initialize(server, original_cli_args)
|
15
|
-
@server = server
|
16
|
-
@original_cli_args = original_cli_args.reject { |arg| arg.start_with?("--bisect") }
|
17
|
-
end
|
18
|
-
|
19
|
-
def run(locations)
|
20
|
-
run_locations(locations, original_results.failed_example_ids)
|
21
|
-
end
|
22
|
-
|
23
|
-
def command_for(locations)
|
24
|
-
parts = []
|
25
|
-
|
26
|
-
parts << RUBY << load_path
|
27
|
-
parts << open3_safe_escape(RSpec::Core.path_to_executable)
|
28
|
-
|
29
|
-
parts << "--format" << "bisect"
|
30
|
-
parts << "--drb-port" << @server.drb_port
|
31
|
-
|
32
|
-
parts.concat reusable_cli_options
|
33
|
-
parts.concat locations.map { |l| open3_safe_escape(l) }
|
34
|
-
|
35
|
-
parts.join(" ")
|
36
|
-
end
|
37
|
-
|
38
|
-
def repro_command_from(locations)
|
39
|
-
parts = []
|
40
|
-
|
41
|
-
parts.concat environment_repro_parts
|
42
|
-
parts << "rspec"
|
43
|
-
parts.concat Formatters::Helpers.organize_ids(locations)
|
44
|
-
parts.concat original_cli_args_without_locations
|
45
|
-
|
46
|
-
parts.join(" ")
|
47
|
-
end
|
48
|
-
|
49
|
-
def original_results
|
50
|
-
@original_results ||= run_locations(original_locations)
|
51
|
-
end
|
52
|
-
|
53
|
-
private
|
54
|
-
|
55
|
-
include RSpec::Core::ShellEscape
|
56
|
-
# On JRuby, Open3.popen3 does not handle shellescaped args properly:
|
57
|
-
# https://github.com/jruby/jruby/issues/2767
|
58
|
-
if RSpec::Support::Ruby.jruby?
|
59
|
-
# :nocov:
|
60
|
-
alias open3_safe_escape quote
|
61
|
-
# :nocov:
|
62
|
-
else
|
63
|
-
alias open3_safe_escape escape
|
64
|
-
end
|
65
|
-
|
66
|
-
def run_locations(*capture_args)
|
67
|
-
@server.capture_run_results(*capture_args) do
|
68
|
-
run_command command_for([])
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
# `Open3.capture2e` does not work on JRuby:
|
73
|
-
# https://github.com/jruby/jruby/issues/2766
|
74
|
-
if Open3.respond_to?(:capture2e) && !RSpec::Support::Ruby.jruby?
|
75
|
-
def run_command(cmd)
|
76
|
-
Open3.capture2e(bisect_environment_hash, cmd).first
|
77
|
-
end
|
78
|
-
else # for 1.8.7
|
79
|
-
# :nocov:
|
80
|
-
def run_command(cmd)
|
81
|
-
out = err = nil
|
82
|
-
|
83
|
-
original_spec_opts = ENV['SPEC_OPTS']
|
84
|
-
ENV['SPEC_OPTS'] = spec_opts_without_bisect
|
85
|
-
|
86
|
-
Open3.popen3(cmd) do |_, stdout, stderr|
|
87
|
-
# Reading the streams blocks until the process is complete
|
88
|
-
out = stdout.read
|
89
|
-
err = stderr.read
|
90
|
-
end
|
91
|
-
|
92
|
-
"Stdout:\n#{out}\n\nStderr:\n#{err}"
|
93
|
-
ensure
|
94
|
-
ENV['SPEC_OPTS'] = original_spec_opts
|
95
|
-
end
|
96
|
-
# :nocov:
|
97
|
-
end
|
98
|
-
|
99
|
-
def bisect_environment_hash
|
100
|
-
if ENV.key?('SPEC_OPTS')
|
101
|
-
{ 'SPEC_OPTS' => spec_opts_without_bisect }
|
102
|
-
else
|
103
|
-
{}
|
104
|
-
end
|
105
|
-
end
|
106
|
-
|
107
|
-
def environment_repro_parts
|
108
|
-
bisect_environment_hash.map do |k, v|
|
109
|
-
%Q(#{k}="#{v}")
|
110
|
-
end
|
111
|
-
end
|
112
|
-
|
113
|
-
def spec_opts_without_bisect
|
114
|
-
Shellwords.join(
|
115
|
-
Shellwords.split(ENV.fetch('SPEC_OPTS', '')).reject do |arg|
|
116
|
-
arg =~ /^--bisect/
|
117
|
-
end
|
118
|
-
)
|
119
|
-
end
|
120
|
-
|
121
|
-
def reusable_cli_options
|
122
|
-
@reusable_cli_options ||= begin
|
123
|
-
opts = original_cli_args_without_locations
|
124
|
-
|
125
|
-
if (port = parsed_original_cli_options[:drb_port])
|
126
|
-
opts -= %W[ --drb-port #{port} ]
|
127
|
-
end
|
128
|
-
|
129
|
-
parsed_original_cli_options.fetch(:formatters) { [] }.each do |(name, out)|
|
130
|
-
opts -= %W[ --format #{name} -f -f#{name} ]
|
131
|
-
opts -= %W[ --out #{out} -o -o#{out} ]
|
132
|
-
end
|
133
|
-
|
134
|
-
opts
|
135
|
-
end
|
136
|
-
end
|
137
|
-
|
138
|
-
def original_cli_args_without_locations
|
139
|
-
@original_cli_args_without_locations ||= begin
|
140
|
-
files_or_dirs = parsed_original_cli_options.fetch(:files_or_directories_to_run)
|
141
|
-
@original_cli_args - files_or_dirs
|
142
|
-
end
|
143
|
-
end
|
144
|
-
|
145
|
-
def parsed_original_cli_options
|
146
|
-
@parsed_original_cli_options ||= Parser.parse(@original_cli_args)
|
147
|
-
end
|
148
|
-
|
149
|
-
def original_locations
|
150
|
-
parsed_original_cli_options.fetch(:files_or_directories_to_run)
|
151
|
-
end
|
152
|
-
|
153
|
-
def load_path
|
154
|
-
@load_path ||= "-I#{$LOAD_PATH.map { |p| open3_safe_escape(p) }.join(':')}"
|
155
|
-
end
|
156
|
-
|
157
|
-
# Path to the currently running Ruby executable, borrowed from Rake:
|
158
|
-
# https://github.com/ruby/rake/blob/v10.4.2/lib/rake/file_utils.rb#L8-L12
|
159
|
-
# Note that we skip `ENV['RUBY']` because we don't have to deal with running
|
160
|
-
# RSpec from within a MRI source repository:
|
161
|
-
# https://github.com/ruby/rake/commit/968682759b3b65e42748cd2befb2ff3e982272d9
|
162
|
-
RUBY = File.join(
|
163
|
-
RbConfig::CONFIG['bindir'],
|
164
|
-
RbConfig::CONFIG['ruby_install_name'] + RbConfig::CONFIG['EXEEXT']).
|
165
|
-
sub(/.*\s.*/m, '"\&"')
|
166
|
-
end
|
167
|
-
end
|
168
|
-
end
|
169
|
-
end
|
@@ -1,70 +0,0 @@
|
|
1
|
-
require 'drb/drb'
|
2
|
-
require 'drb/acl'
|
3
|
-
|
4
|
-
module RSpec
|
5
|
-
module Core
|
6
|
-
# @private
|
7
|
-
module Bisect
|
8
|
-
# @private
|
9
|
-
BisectFailedError = Class.new(StandardError)
|
10
|
-
|
11
|
-
# @private
|
12
|
-
# A DRb server that receives run results from a separate RSpec process
|
13
|
-
# started by the bisect process.
|
14
|
-
class Server
|
15
|
-
def self.run
|
16
|
-
server = new
|
17
|
-
server.start
|
18
|
-
yield server
|
19
|
-
ensure
|
20
|
-
server.stop
|
21
|
-
end
|
22
|
-
|
23
|
-
def capture_run_results(files_or_directories_to_run=[], expected_failures=[])
|
24
|
-
self.expected_failures = expected_failures
|
25
|
-
self.files_or_directories_to_run = files_or_directories_to_run
|
26
|
-
self.latest_run_results = nil
|
27
|
-
run_output = yield
|
28
|
-
|
29
|
-
if latest_run_results.nil? || latest_run_results.all_example_ids.empty?
|
30
|
-
raise_bisect_failed(run_output)
|
31
|
-
end
|
32
|
-
|
33
|
-
latest_run_results
|
34
|
-
end
|
35
|
-
|
36
|
-
def start
|
37
|
-
# Only allow remote DRb requests from this machine.
|
38
|
-
DRb.install_acl ACL.new(%w[ deny all allow localhost allow 127.0.0.1 ])
|
39
|
-
|
40
|
-
# We pass `nil` as the first arg to allow it to pick a DRb port.
|
41
|
-
@drb = DRb.start_service(nil, self)
|
42
|
-
end
|
43
|
-
|
44
|
-
def stop
|
45
|
-
@drb.stop_service
|
46
|
-
end
|
47
|
-
|
48
|
-
def drb_port
|
49
|
-
@drb_port ||= Integer(@drb.uri[/\d+$/])
|
50
|
-
end
|
51
|
-
|
52
|
-
# Fetched via DRb by the BisectFormatter to determine when to abort.
|
53
|
-
attr_accessor :expected_failures
|
54
|
-
|
55
|
-
# Set via DRb by the BisectFormatter with the results of the run.
|
56
|
-
attr_accessor :latest_run_results
|
57
|
-
|
58
|
-
# Fetched via DRb to tell clients which files to run
|
59
|
-
attr_accessor :files_or_directories_to_run
|
60
|
-
|
61
|
-
private
|
62
|
-
|
63
|
-
def raise_bisect_failed(run_output)
|
64
|
-
raise BisectFailedError, "Failed to get results from the spec " \
|
65
|
-
"run. Spec run output:\n\n#{run_output}"
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
@@ -1,2209 +0,0 @@
|
|
1
|
-
RSpec::Support.require_rspec_core "backtrace_formatter"
|
2
|
-
RSpec::Support.require_rspec_core "ruby_project"
|
3
|
-
RSpec::Support.require_rspec_core "formatters/deprecation_formatter"
|
4
|
-
RSpec::Support.require_rspec_core "output_wrapper"
|
5
|
-
|
6
|
-
module RSpec
|
7
|
-
module Core
|
8
|
-
# rubocop:disable Metrics/ClassLength
|
9
|
-
|
10
|
-
# Stores runtime configuration information.
|
11
|
-
#
|
12
|
-
# Configuration options are loaded from `~/.rspec`, `.rspec`,
|
13
|
-
# `.rspec-local`, command line switches, and the `SPEC_OPTS` environment
|
14
|
-
# variable (listed in lowest to highest precedence; for example, an option
|
15
|
-
# in `~/.rspec` can be overridden by an option in `.rspec-local`).
|
16
|
-
#
|
17
|
-
# @example Standard settings
|
18
|
-
# RSpec.configure do |c|
|
19
|
-
# c.drb = true
|
20
|
-
# c.drb_port = 1234
|
21
|
-
# c.default_path = 'behavior'
|
22
|
-
# end
|
23
|
-
#
|
24
|
-
# @example Hooks
|
25
|
-
# RSpec.configure do |c|
|
26
|
-
# c.before(:suite) { establish_connection }
|
27
|
-
# c.before(:example) { log_in_as :authorized }
|
28
|
-
# c.around(:example) { |ex| Database.transaction(&ex) }
|
29
|
-
# end
|
30
|
-
#
|
31
|
-
# @see RSpec.configure
|
32
|
-
# @see Hooks
|
33
|
-
class Configuration
|
34
|
-
include RSpec::Core::Hooks
|
35
|
-
|
36
|
-
# Module that holds `attr_reader` declarations. It's in a separate
|
37
|
-
# module to allow us to override those methods and use `super`.
|
38
|
-
# @private
|
39
|
-
Readers = Module.new
|
40
|
-
include Readers
|
41
|
-
|
42
|
-
# @private
|
43
|
-
class MustBeConfiguredBeforeExampleGroupsError < StandardError; end
|
44
|
-
|
45
|
-
# @private
|
46
|
-
def self.define_reader(name)
|
47
|
-
Readers.class_eval do
|
48
|
-
remove_method name if method_defined?(name)
|
49
|
-
attr_reader name
|
50
|
-
end
|
51
|
-
|
52
|
-
define_method(name) { value_for(name) { super() } }
|
53
|
-
end
|
54
|
-
|
55
|
-
# @private
|
56
|
-
def self.define_aliases(name, alias_name)
|
57
|
-
alias_method alias_name, name
|
58
|
-
alias_method "#{alias_name}=", "#{name}="
|
59
|
-
define_predicate_for alias_name
|
60
|
-
end
|
61
|
-
|
62
|
-
# @private
|
63
|
-
def self.define_predicate_for(*names)
|
64
|
-
names.each { |name| alias_method "#{name}?", name }
|
65
|
-
end
|
66
|
-
|
67
|
-
# @private
|
68
|
-
#
|
69
|
-
# Invoked by the `add_setting` instance method. Use that method on a
|
70
|
-
# `Configuration` instance rather than this class method.
|
71
|
-
def self.add_setting(name, opts={})
|
72
|
-
raise "Use the instance add_setting method if you want to set a default" if opts.key?(:default)
|
73
|
-
attr_writer name
|
74
|
-
add_read_only_setting name
|
75
|
-
|
76
|
-
Array(opts[:alias_with]).each do |alias_name|
|
77
|
-
define_aliases(name, alias_name)
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
|
-
# @private
|
82
|
-
#
|
83
|
-
# As `add_setting` but only add the reader.
|
84
|
-
def self.add_read_only_setting(name, opts={})
|
85
|
-
raise "Use the instance add_setting method if you want to set a default" if opts.key?(:default)
|
86
|
-
define_reader name
|
87
|
-
define_predicate_for name
|
88
|
-
end
|
89
|
-
|
90
|
-
# @macro [attach] add_setting
|
91
|
-
# @!attribute [rw] $1
|
92
|
-
# @!method $1=(value)
|
93
|
-
#
|
94
|
-
# @macro [attach] define_reader
|
95
|
-
# @!attribute [r] $1
|
96
|
-
|
97
|
-
# @macro add_setting
|
98
|
-
# Path to use if no path is provided to the `rspec` command (default:
|
99
|
-
# `"spec"`). Allows you to just type `rspec` instead of `rspec spec` to
|
100
|
-
# run all the examples in the `spec` directory.
|
101
|
-
#
|
102
|
-
# @note Other scripts invoking `rspec` indirectly will ignore this
|
103
|
-
# setting.
|
104
|
-
add_read_only_setting :default_path
|
105
|
-
def default_path=(path)
|
106
|
-
project_source_dirs << path
|
107
|
-
@default_path = path
|
108
|
-
end
|
109
|
-
|
110
|
-
# @macro add_setting
|
111
|
-
# Run examples over DRb (default: `false`). RSpec doesn't supply the DRb
|
112
|
-
# server, but you can use tools like spork.
|
113
|
-
add_setting :drb
|
114
|
-
|
115
|
-
# @macro add_setting
|
116
|
-
# The drb_port (default: nil).
|
117
|
-
add_setting :drb_port
|
118
|
-
|
119
|
-
# @macro add_setting
|
120
|
-
# Default: `$stderr`.
|
121
|
-
add_setting :error_stream
|
122
|
-
|
123
|
-
# Indicates if the DSL has been exposed off of modules and `main`.
|
124
|
-
# Default: true
|
125
|
-
def expose_dsl_globally?
|
126
|
-
Core::DSL.exposed_globally?
|
127
|
-
end
|
128
|
-
|
129
|
-
# Use this to expose the core RSpec DSL via `Module` and the `main`
|
130
|
-
# object. It will be set automatically but you can override it to
|
131
|
-
# remove the DSL.
|
132
|
-
# Default: true
|
133
|
-
def expose_dsl_globally=(value)
|
134
|
-
if value
|
135
|
-
Core::DSL.expose_globally!
|
136
|
-
Core::SharedExampleGroup::TopLevelDSL.expose_globally!
|
137
|
-
else
|
138
|
-
Core::DSL.remove_globally!
|
139
|
-
Core::SharedExampleGroup::TopLevelDSL.remove_globally!
|
140
|
-
end
|
141
|
-
end
|
142
|
-
|
143
|
-
# Determines where deprecation warnings are printed.
|
144
|
-
# Defaults to `$stderr`.
|
145
|
-
# @return [IO, String] IO or filename to write to
|
146
|
-
define_reader :deprecation_stream
|
147
|
-
|
148
|
-
# Determines where deprecation warnings are printed.
|
149
|
-
# @param value [IO, String] IO to write to or filename to write to
|
150
|
-
def deprecation_stream=(value)
|
151
|
-
if @reporter && !value.equal?(@deprecation_stream)
|
152
|
-
warn "RSpec's reporter has already been initialized with " \
|
153
|
-
"#{deprecation_stream.inspect} as the deprecation stream, so your change to "\
|
154
|
-
"`deprecation_stream` will be ignored. You should configure it earlier for " \
|
155
|
-
"it to take effect, or use the `--deprecation-out` CLI option. " \
|
156
|
-
"(Called from #{CallerFilter.first_non_rspec_line})"
|
157
|
-
else
|
158
|
-
@deprecation_stream = value
|
159
|
-
end
|
160
|
-
end
|
161
|
-
|
162
|
-
# @macro define_reader
|
163
|
-
# The file path to use for persisting example statuses. Necessary for the
|
164
|
-
# `--only-failures` and `--next-failure` CLI options.
|
165
|
-
#
|
166
|
-
# @overload example_status_persistence_file_path
|
167
|
-
# @return [String] the file path
|
168
|
-
# @overload example_status_persistence_file_path=(value)
|
169
|
-
# @param value [String] the file path
|
170
|
-
define_reader :example_status_persistence_file_path
|
171
|
-
|
172
|
-
# Sets the file path to use for persisting example statuses. Necessary for the
|
173
|
-
# `--only-failures` and `--next-failure` CLI options.
|
174
|
-
def example_status_persistence_file_path=(value)
|
175
|
-
@example_status_persistence_file_path = value
|
176
|
-
clear_values_derived_from_example_status_persistence_file_path
|
177
|
-
end
|
178
|
-
|
179
|
-
# @macro define_reader
|
180
|
-
# Indicates if the `--only-failures` (or `--next-failure`) flag is being used.
|
181
|
-
define_reader :only_failures
|
182
|
-
alias_method :only_failures?, :only_failures
|
183
|
-
|
184
|
-
# @private
|
185
|
-
def only_failures_but_not_configured?
|
186
|
-
only_failures? && !example_status_persistence_file_path
|
187
|
-
end
|
188
|
-
|
189
|
-
# @macro add_setting
|
190
|
-
# If specified, indicates the number of failures required before cleaning
|
191
|
-
# up and exit (default: `nil`).
|
192
|
-
add_setting :fail_fast
|
193
|
-
|
194
|
-
# @macro add_setting
|
195
|
-
# Prints the formatter output of your suite without running any
|
196
|
-
# examples or hooks.
|
197
|
-
add_setting :dry_run
|
198
|
-
|
199
|
-
# @macro add_setting
|
200
|
-
# The exit code to return if there are any failures (default: 1).
|
201
|
-
add_setting :failure_exit_code
|
202
|
-
|
203
|
-
# @macro add_setting
|
204
|
-
# Whether or not to fail when there are no RSpec examples (default: false).
|
205
|
-
add_setting :fail_if_no_examples
|
206
|
-
|
207
|
-
# @macro define_reader
|
208
|
-
# Indicates files configured to be required.
|
209
|
-
define_reader :requires
|
210
|
-
|
211
|
-
# @macro define_reader
|
212
|
-
# Returns dirs that have been prepended to the load path by the `-I`
|
213
|
-
# command line option.
|
214
|
-
define_reader :libs
|
215
|
-
|
216
|
-
# @macro add_setting
|
217
|
-
# Determines where RSpec will send its output.
|
218
|
-
# Default: `$stdout`.
|
219
|
-
define_reader :output_stream
|
220
|
-
|
221
|
-
# Set the output stream for reporter.
|
222
|
-
# @attr value [IO, String] IO to write to or filename to write to, defaults to $stdout
|
223
|
-
def output_stream=(value)
|
224
|
-
if @reporter && !value.equal?(@output_stream)
|
225
|
-
warn "RSpec's reporter has already been initialized with " \
|
226
|
-
"#{output_stream.inspect} as the output stream, so your change to "\
|
227
|
-
"`output_stream` will be ignored. You should configure it earlier for " \
|
228
|
-
"it to take effect. (Called from #{CallerFilter.first_non_rspec_line})"
|
229
|
-
else
|
230
|
-
@output_stream = value
|
231
|
-
output_wrapper.output = @output_stream
|
232
|
-
end
|
233
|
-
end
|
234
|
-
|
235
|
-
# @macro define_reader
|
236
|
-
# Load files matching this pattern (default: `'**{,/*/**}/*_spec.rb'`).
|
237
|
-
define_reader :pattern
|
238
|
-
|
239
|
-
# Set pattern to match files to load.
|
240
|
-
# @attr value [String] the filename pattern to filter spec files by
|
241
|
-
def pattern=(value)
|
242
|
-
update_pattern_attr :pattern, value
|
243
|
-
end
|
244
|
-
|
245
|
-
# @macro define_reader
|
246
|
-
# Exclude files matching this pattern.
|
247
|
-
define_reader :exclude_pattern
|
248
|
-
|
249
|
-
# Set pattern to match files to exclude.
|
250
|
-
# @attr value [String] the filename pattern to exclude spec files by
|
251
|
-
def exclude_pattern=(value)
|
252
|
-
update_pattern_attr :exclude_pattern, value
|
253
|
-
end
|
254
|
-
|
255
|
-
# @macro add_setting
|
256
|
-
# Specifies which directories contain the source code for your project.
|
257
|
-
# When a failure occurs, RSpec looks through the backtrace to find a
|
258
|
-
# a line of source to print. It first looks for a line coming from
|
259
|
-
# one of the project source directories so that, for example, it prints
|
260
|
-
# the expectation or assertion call rather than the source code from
|
261
|
-
# the expectation or assertion framework.
|
262
|
-
# @return [Array<String>]
|
263
|
-
add_setting :project_source_dirs
|
264
|
-
|
265
|
-
# @macro add_setting
|
266
|
-
# Report the times for the slowest examples (default: `false`).
|
267
|
-
# Use this to specify the number of examples to include in the profile.
|
268
|
-
add_setting :profile_examples
|
269
|
-
|
270
|
-
# @macro add_setting
|
271
|
-
# Run all examples if none match the configured filters
|
272
|
-
# (default: `false`).
|
273
|
-
# @deprecated Use {#filter_run_when_matching} instead for the specific
|
274
|
-
# filters that you want to be ignored if none match.
|
275
|
-
add_setting :run_all_when_everything_filtered
|
276
|
-
|
277
|
-
# @macro add_setting
|
278
|
-
# Color to use to indicate success.
|
279
|
-
# @param color [Symbol] defaults to `:green` but can be set to one of the
|
280
|
-
# following: `[:black, :white, :red, :green, :yellow, :blue, :magenta,
|
281
|
-
# :cyan]`
|
282
|
-
add_setting :success_color
|
283
|
-
|
284
|
-
# @macro add_setting
|
285
|
-
# Color to use to print pending examples.
|
286
|
-
# @param color [Symbol] defaults to `:yellow` but can be set to one of the
|
287
|
-
# following: `[:black, :white, :red, :green, :yellow, :blue, :magenta,
|
288
|
-
# :cyan]`
|
289
|
-
add_setting :pending_color
|
290
|
-
|
291
|
-
# @macro add_setting
|
292
|
-
# Color to use to indicate failure.
|
293
|
-
# @param color [Symbol] defaults to `:red` but can be set to one of the
|
294
|
-
# following: `[:black, :white, :red, :green, :yellow, :blue, :magenta,
|
295
|
-
# :cyan]`
|
296
|
-
add_setting :failure_color
|
297
|
-
|
298
|
-
# @macro add_setting
|
299
|
-
# The default output color.
|
300
|
-
# @param color [Symbol] defaults to `:white` but can be set to one of the
|
301
|
-
# following: `[:black, :white, :red, :green, :yellow, :blue, :magenta,
|
302
|
-
# :cyan]`
|
303
|
-
add_setting :default_color
|
304
|
-
|
305
|
-
# @macro add_setting
|
306
|
-
# Color used when a pending example is fixed.
|
307
|
-
# @param color [Symbol] defaults to `:blue` but can be set to one of the
|
308
|
-
# following: `[:black, :white, :red, :green, :yellow, :blue, :magenta,
|
309
|
-
# :cyan]`
|
310
|
-
add_setting :fixed_color
|
311
|
-
|
312
|
-
# @macro add_setting
|
313
|
-
# Color used to print details.
|
314
|
-
# @param color [Symbol] defaults to `:cyan` but can be set to one of the
|
315
|
-
# following: `[:black, :white, :red, :green, :yellow, :blue, :magenta,
|
316
|
-
# :cyan]`
|
317
|
-
add_setting :detail_color
|
318
|
-
|
319
|
-
# @macro add_setting
|
320
|
-
# Don't print filter info i.e. "Run options: include {:focus=>true}"
|
321
|
-
# (default `false`).
|
322
|
-
add_setting :silence_filter_announcements
|
323
|
-
|
324
|
-
# Deprecated. This config option was added in RSpec 2 to pave the way
|
325
|
-
# for this being the default behavior in RSpec 3. Now this option is
|
326
|
-
# a no-op.
|
327
|
-
def treat_symbols_as_metadata_keys_with_true_values=(_value)
|
328
|
-
RSpec.deprecate(
|
329
|
-
"RSpec::Core::Configuration#treat_symbols_as_metadata_keys_with_true_values=",
|
330
|
-
:message => "RSpec::Core::Configuration#treat_symbols_as_metadata_keys_with_true_values= " \
|
331
|
-
"is deprecated, it is now set to true as default and " \
|
332
|
-
"setting it to false has no effect."
|
333
|
-
)
|
334
|
-
end
|
335
|
-
|
336
|
-
# @macro define_reader
|
337
|
-
# Configures how RSpec treats metadata passed as part of a shared example
|
338
|
-
# group definition. For example, given this shared example group definition:
|
339
|
-
#
|
340
|
-
# RSpec.shared_context "uses DB", :db => true do
|
341
|
-
# around(:example) do |ex|
|
342
|
-
# MyORM.transaction(:rollback => true, &ex)
|
343
|
-
# end
|
344
|
-
# end
|
345
|
-
#
|
346
|
-
# ...there are two ways RSpec can treat the `:db => true` metadata, each
|
347
|
-
# of which has a corresponding config option:
|
348
|
-
#
|
349
|
-
# 1. `:trigger_inclusion`: this shared context will be implicitly included
|
350
|
-
# in any groups (or examples) that have `:db => true` metadata.
|
351
|
-
# 2. `:apply_to_host_groups`: the metadata will be inherited by the metadata
|
352
|
-
# hash of all host groups and examples.
|
353
|
-
#
|
354
|
-
# `:trigger_inclusion` is the legacy behavior from before RSpec 3.5 but should
|
355
|
-
# be considered deprecated. Instead, you can explicitly include a group with
|
356
|
-
# `include_context`:
|
357
|
-
#
|
358
|
-
# RSpec.describe "My model" do
|
359
|
-
# include_context "uses DB"
|
360
|
-
# end
|
361
|
-
#
|
362
|
-
# ...or you can configure RSpec to include the context based on matching metadata
|
363
|
-
# using an API that mirrors configured module inclusion:
|
364
|
-
#
|
365
|
-
# RSpec.configure do |rspec|
|
366
|
-
# rspec.include_context "uses DB", :db => true
|
367
|
-
# end
|
368
|
-
#
|
369
|
-
# `:apply_to_host_groups` is a new feature of RSpec 3.5 and will be the only
|
370
|
-
# supported behavior in RSpec 4.
|
371
|
-
#
|
372
|
-
# @overload shared_context_metadata_behavior
|
373
|
-
# @return [:trigger_inclusion, :apply_to_host_groups] the configured behavior
|
374
|
-
# @overload shared_context_metadata_behavior=(value)
|
375
|
-
# @param value [:trigger_inclusion, :apply_to_host_groups] sets the configured behavior
|
376
|
-
define_reader :shared_context_metadata_behavior
|
377
|
-
# @see shared_context_metadata_behavior
|
378
|
-
def shared_context_metadata_behavior=(value)
|
379
|
-
case value
|
380
|
-
when :trigger_inclusion, :apply_to_host_groups
|
381
|
-
@shared_context_metadata_behavior = value
|
382
|
-
else
|
383
|
-
raise ArgumentError, "Cannot set `RSpec.configuration." \
|
384
|
-
"shared_context_metadata_behavior` to `#{value.inspect}`. Only " \
|
385
|
-
"`:trigger_inclusion` and `:apply_to_host_groups` are valid values."
|
386
|
-
end
|
387
|
-
end
|
388
|
-
|
389
|
-
# Record the start time of the spec suite to measure load time.
|
390
|
-
add_setting :start_time
|
391
|
-
|
392
|
-
# @macro add_setting
|
393
|
-
# Use threadsafe options where available.
|
394
|
-
# Currently this will place a mutex around memoized values such as let blocks.
|
395
|
-
add_setting :threadsafe
|
396
|
-
|
397
|
-
# @macro add_setting
|
398
|
-
# Maximum count of failed source lines to display in the failure reports.
|
399
|
-
# (default `10`).
|
400
|
-
add_setting :max_displayed_failure_line_count
|
401
|
-
|
402
|
-
# @private
|
403
|
-
# @deprecated Use {#color_mode} = :on, instead of {#color} with {#tty}
|
404
|
-
add_setting :tty
|
405
|
-
# @private
|
406
|
-
attr_writer :files_to_run
|
407
|
-
# @private
|
408
|
-
attr_accessor :filter_manager, :world
|
409
|
-
# @private
|
410
|
-
attr_accessor :static_config_filter_manager
|
411
|
-
# @private
|
412
|
-
attr_reader :backtrace_formatter, :ordering_manager, :loaded_spec_files
|
413
|
-
|
414
|
-
# rubocop:disable Metrics/AbcSize
|
415
|
-
# rubocop:disable Metrics/MethodLength
|
416
|
-
|
417
|
-
# Build an object to store runtime configuration options and set defaults
|
418
|
-
def initialize
|
419
|
-
# rubocop:disable Style/GlobalVars
|
420
|
-
@start_time = $_rspec_core_load_started_at || ::RSpec::Core::Time.now
|
421
|
-
# rubocop:enable Style/GlobalVars
|
422
|
-
@expectation_frameworks = []
|
423
|
-
@include_modules = FilterableItemRepository::QueryOptimized.new(:any?)
|
424
|
-
@extend_modules = FilterableItemRepository::QueryOptimized.new(:any?)
|
425
|
-
@prepend_modules = FilterableItemRepository::QueryOptimized.new(:any?)
|
426
|
-
|
427
|
-
@before_suite_hooks = []
|
428
|
-
@after_suite_hooks = []
|
429
|
-
|
430
|
-
@mock_framework = nil
|
431
|
-
@files_or_directories_to_run = []
|
432
|
-
@loaded_spec_files = Set.new
|
433
|
-
@color = false
|
434
|
-
@color_mode = :automatic
|
435
|
-
@pattern = '**{,/*/**}/*_spec.rb'
|
436
|
-
@exclude_pattern = ''
|
437
|
-
@failure_exit_code = 1
|
438
|
-
@fail_if_no_examples = false
|
439
|
-
@spec_files_loaded = false
|
440
|
-
|
441
|
-
@backtrace_formatter = BacktraceFormatter.new
|
442
|
-
|
443
|
-
@default_path = 'spec'
|
444
|
-
@project_source_dirs = %w[ spec lib app ]
|
445
|
-
@deprecation_stream = $stderr
|
446
|
-
@output_stream = $stdout
|
447
|
-
@reporter = nil
|
448
|
-
@reporter_buffer = nil
|
449
|
-
@filter_manager = FilterManager.new
|
450
|
-
@static_config_filter_manager = FilterManager.new
|
451
|
-
@ordering_manager = Ordering::ConfigurationManager.new
|
452
|
-
@preferred_options = {}
|
453
|
-
@failure_color = :red
|
454
|
-
@success_color = :green
|
455
|
-
@pending_color = :yellow
|
456
|
-
@default_color = :white
|
457
|
-
@fixed_color = :blue
|
458
|
-
@detail_color = :cyan
|
459
|
-
@profile_examples = false
|
460
|
-
@requires = []
|
461
|
-
@libs = []
|
462
|
-
@derived_metadata_blocks = FilterableItemRepository::QueryOptimized.new(:any?)
|
463
|
-
@threadsafe = true
|
464
|
-
@max_displayed_failure_line_count = 10
|
465
|
-
@world = World::Null
|
466
|
-
@shared_context_metadata_behavior = :trigger_inclusion
|
467
|
-
|
468
|
-
define_built_in_hooks
|
469
|
-
end
|
470
|
-
# rubocop:enable Metrics/MethodLength
|
471
|
-
# rubocop:enable Metrics/AbcSize
|
472
|
-
|
473
|
-
# @private
|
474
|
-
#
|
475
|
-
# Used to set higher priority option values from the command line.
|
476
|
-
def force(hash)
|
477
|
-
ordering_manager.force(hash)
|
478
|
-
@preferred_options.merge!(hash)
|
479
|
-
|
480
|
-
return unless hash.key?(:example_status_persistence_file_path)
|
481
|
-
clear_values_derived_from_example_status_persistence_file_path
|
482
|
-
end
|
483
|
-
|
484
|
-
# @private
|
485
|
-
def reset
|
486
|
-
@spec_files_loaded = false
|
487
|
-
reset_reporter
|
488
|
-
end
|
489
|
-
|
490
|
-
# @private
|
491
|
-
def reset_reporter
|
492
|
-
@reporter = nil
|
493
|
-
@formatter_loader = nil
|
494
|
-
@output_wrapper = nil
|
495
|
-
end
|
496
|
-
|
497
|
-
# @private
|
498
|
-
def reset_filters
|
499
|
-
self.filter_manager = FilterManager.new
|
500
|
-
filter_manager.include_only(
|
501
|
-
Metadata.deep_hash_dup(static_config_filter_manager.inclusions.rules)
|
502
|
-
)
|
503
|
-
filter_manager.exclude_only(
|
504
|
-
Metadata.deep_hash_dup(static_config_filter_manager.exclusions.rules)
|
505
|
-
)
|
506
|
-
end
|
507
|
-
|
508
|
-
# @overload add_setting(name)
|
509
|
-
# @overload add_setting(name, opts)
|
510
|
-
# @option opts [Symbol] :default
|
511
|
-
#
|
512
|
-
# Set a default value for the generated getter and predicate methods:
|
513
|
-
#
|
514
|
-
# add_setting(:foo, :default => "default value")
|
515
|
-
#
|
516
|
-
# @option opts [Symbol] :alias_with
|
517
|
-
#
|
518
|
-
# Use `:alias_with` to alias the setter, getter, and predicate to
|
519
|
-
# another name, or names:
|
520
|
-
#
|
521
|
-
# add_setting(:foo, :alias_with => :bar)
|
522
|
-
# add_setting(:foo, :alias_with => [:bar, :baz])
|
523
|
-
#
|
524
|
-
# Adds a custom setting to the RSpec.configuration object.
|
525
|
-
#
|
526
|
-
# RSpec.configuration.add_setting :foo
|
527
|
-
#
|
528
|
-
# Used internally and by extension frameworks like rspec-rails, so they
|
529
|
-
# can add config settings that are domain specific. For example:
|
530
|
-
#
|
531
|
-
# RSpec.configure do |c|
|
532
|
-
# c.add_setting :use_transactional_fixtures,
|
533
|
-
# :default => true,
|
534
|
-
# :alias_with => :use_transactional_examples
|
535
|
-
# end
|
536
|
-
#
|
537
|
-
# `add_setting` creates three methods on the configuration object, a
|
538
|
-
# setter, a getter, and a predicate:
|
539
|
-
#
|
540
|
-
# RSpec.configuration.foo=(value)
|
541
|
-
# RSpec.configuration.foo
|
542
|
-
# RSpec.configuration.foo? # Returns true if foo returns anything but nil or false.
|
543
|
-
def add_setting(name, opts={})
|
544
|
-
default = opts.delete(:default)
|
545
|
-
(class << self; self; end).class_exec do
|
546
|
-
add_setting(name, opts)
|
547
|
-
end
|
548
|
-
__send__("#{name}=", default) if default
|
549
|
-
end
|
550
|
-
|
551
|
-
# Returns the configured mock framework adapter module.
|
552
|
-
def mock_framework
|
553
|
-
if @mock_framework.nil?
|
554
|
-
begin
|
555
|
-
mock_with :rspec
|
556
|
-
rescue LoadError
|
557
|
-
mock_with :nothing
|
558
|
-
end
|
559
|
-
end
|
560
|
-
@mock_framework
|
561
|
-
end
|
562
|
-
|
563
|
-
# Delegates to mock_framework=(framework).
|
564
|
-
def mock_framework=(framework)
|
565
|
-
mock_with framework
|
566
|
-
end
|
567
|
-
|
568
|
-
# Regexps used to exclude lines from backtraces.
|
569
|
-
#
|
570
|
-
# Excludes lines from ruby (and jruby) source, installed gems, anything
|
571
|
-
# in any "bin" directory, and any of the RSpec libs (outside gem
|
572
|
-
# installs) by default.
|
573
|
-
#
|
574
|
-
# You can modify the list via the getter, or replace it with the setter.
|
575
|
-
#
|
576
|
-
# To override this behaviour and display a full backtrace, use
|
577
|
-
# `--backtrace` on the command line, in a `.rspec` file, or in the
|
578
|
-
# `rspec_options` attribute of RSpec's rake task.
|
579
|
-
def backtrace_exclusion_patterns
|
580
|
-
@backtrace_formatter.exclusion_patterns
|
581
|
-
end
|
582
|
-
|
583
|
-
# Set regular expressions used to exclude lines in backtrace.
|
584
|
-
# @param patterns [Regexp] set the backtrace exlusion pattern
|
585
|
-
def backtrace_exclusion_patterns=(patterns)
|
586
|
-
@backtrace_formatter.exclusion_patterns = patterns
|
587
|
-
end
|
588
|
-
|
589
|
-
# Regexps used to include lines in backtraces.
|
590
|
-
#
|
591
|
-
# Defaults to [Regexp.new Dir.getwd].
|
592
|
-
#
|
593
|
-
# Lines that match an exclusion _and_ an inclusion pattern
|
594
|
-
# will be included.
|
595
|
-
#
|
596
|
-
# You can modify the list via the getter, or replace it with the setter.
|
597
|
-
def backtrace_inclusion_patterns
|
598
|
-
@backtrace_formatter.inclusion_patterns
|
599
|
-
end
|
600
|
-
|
601
|
-
# Set regular expressions used to include lines in backtrace.
|
602
|
-
# @attr patterns [Regexp] set backtrace_formatter inclusion_patterns
|
603
|
-
def backtrace_inclusion_patterns=(patterns)
|
604
|
-
@backtrace_formatter.inclusion_patterns = patterns
|
605
|
-
end
|
606
|
-
|
607
|
-
# Adds {#backtrace_exclusion_patterns} that will filter lines from
|
608
|
-
# the named gems from backtraces.
|
609
|
-
#
|
610
|
-
# @param gem_names [Array<String>] Names of the gems to filter
|
611
|
-
#
|
612
|
-
# @example
|
613
|
-
# RSpec.configure do |config|
|
614
|
-
# config.filter_gems_from_backtrace "rack", "rake"
|
615
|
-
# end
|
616
|
-
#
|
617
|
-
# @note The patterns this adds will match the named gems in their common
|
618
|
-
# locations (e.g. system gems, vendored with bundler, installed as a
|
619
|
-
# :git dependency with bundler, etc) but is not guaranteed to work for
|
620
|
-
# all possible gem locations. For example, if you have the gem source
|
621
|
-
# in a directory with a completely unrelated name, and use bundler's
|
622
|
-
# :path option, this will not filter it.
|
623
|
-
def filter_gems_from_backtrace(*gem_names)
|
624
|
-
gem_names.each do |name|
|
625
|
-
@backtrace_formatter.filter_gem(name)
|
626
|
-
end
|
627
|
-
end
|
628
|
-
|
629
|
-
# @private
|
630
|
-
MOCKING_ADAPTERS = {
|
631
|
-
:rspec => :RSpec,
|
632
|
-
:flexmock => :Flexmock,
|
633
|
-
:rr => :RR,
|
634
|
-
:mocha => :Mocha,
|
635
|
-
:nothing => :Null
|
636
|
-
}
|
637
|
-
|
638
|
-
# Sets the mock framework adapter module.
|
639
|
-
#
|
640
|
-
# `framework` can be a Symbol or a Module.
|
641
|
-
#
|
642
|
-
# Given any of `:rspec`, `:mocha`, `:flexmock`, or `:rr`, configures the
|
643
|
-
# named framework.
|
644
|
-
#
|
645
|
-
# Given `:nothing`, configures no framework. Use this if you don't use
|
646
|
-
# any mocking framework to save a little bit of overhead.
|
647
|
-
#
|
648
|
-
# Given a Module, includes that module in every example group. The module
|
649
|
-
# should adhere to RSpec's mock framework adapter API:
|
650
|
-
#
|
651
|
-
# setup_mocks_for_rspec
|
652
|
-
# - called before each example
|
653
|
-
#
|
654
|
-
# verify_mocks_for_rspec
|
655
|
-
# - called after each example if the example hasn't yet failed.
|
656
|
-
# Framework should raise an exception when expectations fail
|
657
|
-
#
|
658
|
-
# teardown_mocks_for_rspec
|
659
|
-
# - called after verify_mocks_for_rspec (even if there are errors)
|
660
|
-
#
|
661
|
-
# If the module responds to `configuration` and `mock_with` receives a
|
662
|
-
# block, it will yield the configuration object to the block e.g.
|
663
|
-
#
|
664
|
-
# config.mock_with OtherMockFrameworkAdapter do |mod_config|
|
665
|
-
# mod_config.custom_setting = true
|
666
|
-
# end
|
667
|
-
def mock_with(framework)
|
668
|
-
framework_module =
|
669
|
-
if framework.is_a?(Module)
|
670
|
-
framework
|
671
|
-
else
|
672
|
-
const_name = MOCKING_ADAPTERS.fetch(framework) do
|
673
|
-
raise ArgumentError,
|
674
|
-
"Unknown mocking framework: #{framework.inspect}. " \
|
675
|
-
"Pass a module or one of #{MOCKING_ADAPTERS.keys.inspect}"
|
676
|
-
end
|
677
|
-
|
678
|
-
RSpec::Support.require_rspec_core "mocking_adapters/#{const_name.to_s.downcase}"
|
679
|
-
RSpec::Core::MockingAdapters.const_get(const_name)
|
680
|
-
end
|
681
|
-
|
682
|
-
new_name, old_name = [framework_module, @mock_framework].map do |mod|
|
683
|
-
mod.respond_to?(:framework_name) ? mod.framework_name : :unnamed
|
684
|
-
end
|
685
|
-
|
686
|
-
unless new_name == old_name
|
687
|
-
assert_no_example_groups_defined(:mock_framework)
|
688
|
-
end
|
689
|
-
|
690
|
-
if block_given?
|
691
|
-
raise "#{framework_module} must respond to `configuration` so that " \
|
692
|
-
"mock_with can yield it." unless framework_module.respond_to?(:configuration)
|
693
|
-
yield framework_module.configuration
|
694
|
-
end
|
695
|
-
|
696
|
-
@mock_framework = framework_module
|
697
|
-
end
|
698
|
-
|
699
|
-
# Returns the configured expectation framework adapter module(s)
|
700
|
-
def expectation_frameworks
|
701
|
-
if @expectation_frameworks.empty?
|
702
|
-
begin
|
703
|
-
expect_with :rspec
|
704
|
-
rescue LoadError
|
705
|
-
expect_with Module.new
|
706
|
-
end
|
707
|
-
end
|
708
|
-
@expectation_frameworks
|
709
|
-
end
|
710
|
-
|
711
|
-
# Delegates to expect_with(framework).
|
712
|
-
def expectation_framework=(framework)
|
713
|
-
expect_with(framework)
|
714
|
-
end
|
715
|
-
|
716
|
-
# Sets the expectation framework module(s) to be included in each example
|
717
|
-
# group.
|
718
|
-
#
|
719
|
-
# `frameworks` can be `:rspec`, `:test_unit`, `:minitest`, a custom
|
720
|
-
# module, or any combination thereof:
|
721
|
-
#
|
722
|
-
# config.expect_with :rspec
|
723
|
-
# config.expect_with :test_unit
|
724
|
-
# config.expect_with :minitest
|
725
|
-
# config.expect_with :rspec, :minitest
|
726
|
-
# config.expect_with OtherExpectationFramework
|
727
|
-
#
|
728
|
-
# RSpec will translate `:rspec`, `:minitest`, and `:test_unit` into the
|
729
|
-
# appropriate modules.
|
730
|
-
#
|
731
|
-
# ## Configuration
|
732
|
-
#
|
733
|
-
# If the module responds to `configuration`, `expect_with` will
|
734
|
-
# yield the `configuration` object if given a block:
|
735
|
-
#
|
736
|
-
# config.expect_with OtherExpectationFramework do |custom_config|
|
737
|
-
# custom_config.custom_setting = true
|
738
|
-
# end
|
739
|
-
def expect_with(*frameworks)
|
740
|
-
modules = frameworks.map do |framework|
|
741
|
-
case framework
|
742
|
-
when Module
|
743
|
-
framework
|
744
|
-
when :rspec
|
745
|
-
require 'rspec/expectations'
|
746
|
-
|
747
|
-
# Tag this exception class so our exception formatting logic knows
|
748
|
-
# that it satisfies the `MultipleExceptionError` interface.
|
749
|
-
::RSpec::Expectations::MultipleExpectationsNotMetError.__send__(
|
750
|
-
:include, MultipleExceptionError::InterfaceTag
|
751
|
-
)
|
752
|
-
|
753
|
-
::RSpec::Matchers
|
754
|
-
when :test_unit
|
755
|
-
require 'rspec/core/test_unit_assertions_adapter'
|
756
|
-
::RSpec::Core::TestUnitAssertionsAdapter
|
757
|
-
when :minitest
|
758
|
-
require 'rspec/core/minitest_assertions_adapter'
|
759
|
-
::RSpec::Core::MinitestAssertionsAdapter
|
760
|
-
else
|
761
|
-
raise ArgumentError, "#{framework.inspect} is not supported"
|
762
|
-
end
|
763
|
-
end
|
764
|
-
|
765
|
-
if (modules - @expectation_frameworks).any?
|
766
|
-
assert_no_example_groups_defined(:expect_with)
|
767
|
-
end
|
768
|
-
|
769
|
-
if block_given?
|
770
|
-
raise "expect_with only accepts a block with a single argument. " \
|
771
|
-
"Call expect_with #{modules.length} times, " \
|
772
|
-
"once with each argument, instead." if modules.length > 1
|
773
|
-
raise "#{modules.first} must respond to `configuration` so that " \
|
774
|
-
"expect_with can yield it." unless modules.first.respond_to?(:configuration)
|
775
|
-
yield modules.first.configuration
|
776
|
-
end
|
777
|
-
|
778
|
-
@expectation_frameworks.push(*modules)
|
779
|
-
end
|
780
|
-
|
781
|
-
# Check if full backtrace is enabled.
|
782
|
-
# @return [Boolean] is full backtrace enabled
|
783
|
-
def full_backtrace?
|
784
|
-
@backtrace_formatter.full_backtrace?
|
785
|
-
end
|
786
|
-
|
787
|
-
# Toggle full backtrace.
|
788
|
-
# @attr true_or_false [Boolean] toggle full backtrace display
|
789
|
-
def full_backtrace=(true_or_false)
|
790
|
-
@backtrace_formatter.full_backtrace = true_or_false
|
791
|
-
end
|
792
|
-
|
793
|
-
# Enables color output if the output is a TTY. As of RSpec 3.6, this is
|
794
|
-
# the default behavior and this option is retained only for backwards
|
795
|
-
# compatibility.
|
796
|
-
#
|
797
|
-
# @deprecated No longer recommended because of complex behavior. Instead,
|
798
|
-
# rely on the fact that TTYs will display color by default, or set
|
799
|
-
# {#color_mode} to :on to display color on a non-TTY output.
|
800
|
-
# @see color_mode
|
801
|
-
# @see color_enabled?
|
802
|
-
# @return [Boolean]
|
803
|
-
def color
|
804
|
-
value_for(:color) { @color }
|
805
|
-
end
|
806
|
-
|
807
|
-
# The mode for determining whether to display output in color. One of:
|
808
|
-
#
|
809
|
-
# - :automatic - the output will be in color if the output is a TTY (the
|
810
|
-
# default)
|
811
|
-
# - :on - the output will be in color, whether or not the output is a TTY
|
812
|
-
# - :off - the output will not be in color
|
813
|
-
#
|
814
|
-
# @see color_enabled?
|
815
|
-
# @return [Boolean]
|
816
|
-
def color_mode
|
817
|
-
value_for(:color_mode) { @color_mode }
|
818
|
-
end
|
819
|
-
|
820
|
-
# Check if color is enabled for a particular output.
|
821
|
-
# @param output [IO] an output stream to use, defaults to the current
|
822
|
-
# `output_stream`
|
823
|
-
# @return [Boolean]
|
824
|
-
def color_enabled?(output=output_stream)
|
825
|
-
case color_mode
|
826
|
-
when :on then true
|
827
|
-
when :off then false
|
828
|
-
else # automatic
|
829
|
-
output_to_tty?(output) || (color && tty?)
|
830
|
-
end
|
831
|
-
end
|
832
|
-
|
833
|
-
# Set the color mode.
|
834
|
-
attr_writer :color_mode
|
835
|
-
|
836
|
-
# Toggle output color.
|
837
|
-
#
|
838
|
-
# @deprecated No longer recommended because of complex behavior. Instead,
|
839
|
-
# rely on the fact that TTYs will display color by default, or set
|
840
|
-
# {:color_mode} to :on to display color on a non-TTY output.
|
841
|
-
attr_writer :color
|
842
|
-
|
843
|
-
# @private
|
844
|
-
def libs=(libs)
|
845
|
-
libs.map do |lib|
|
846
|
-
@libs.unshift lib
|
847
|
-
$LOAD_PATH.unshift lib
|
848
|
-
end
|
849
|
-
end
|
850
|
-
|
851
|
-
# Run examples matching on `description` in all files to run.
|
852
|
-
# @param description [String, Regexp] the pattern to filter on
|
853
|
-
def full_description=(description)
|
854
|
-
filter_run :full_description => Regexp.union(*Array(description).map { |d| Regexp.new(d) })
|
855
|
-
end
|
856
|
-
|
857
|
-
# @return [Array] full description filter
|
858
|
-
def full_description
|
859
|
-
filter.fetch :full_description, nil
|
860
|
-
end
|
861
|
-
|
862
|
-
# @overload add_formatter(formatter)
|
863
|
-
# @overload add_formatter(formatter, output)
|
864
|
-
#
|
865
|
-
# @param formatter [Class, String] formatter to use. Can be any of the
|
866
|
-
# string values supported from the CLI (`p`/`progress`,
|
867
|
-
# `d`/`doc`/`documentation`, `h`/`html`, or `j`/`json`) or any
|
868
|
-
# class that implements the formatter protocol and has registered
|
869
|
-
# itself with RSpec as a formatter.
|
870
|
-
# @param output [String, IO] where the formatter will write its output.
|
871
|
-
# Can be an IO object or a string path to a file. If not provided,
|
872
|
-
# the configured `output_stream` (`$stdout`, by default) will be used.
|
873
|
-
#
|
874
|
-
# Adds a formatter to the set RSpec will use for this run.
|
875
|
-
#
|
876
|
-
# @see RSpec::Core::Formatters::Protocol
|
877
|
-
def add_formatter(formatter, output=output_wrapper)
|
878
|
-
formatter_loader.add(formatter, output)
|
879
|
-
end
|
880
|
-
alias_method :formatter=, :add_formatter
|
881
|
-
|
882
|
-
# The formatter that will be used if no formatter has been set.
|
883
|
-
# Defaults to 'progress'.
|
884
|
-
def default_formatter
|
885
|
-
formatter_loader.default_formatter
|
886
|
-
end
|
887
|
-
|
888
|
-
# Sets a fallback formatter to use if none other has been set.
|
889
|
-
#
|
890
|
-
# @example
|
891
|
-
#
|
892
|
-
# RSpec.configure do |rspec|
|
893
|
-
# rspec.default_formatter = 'doc'
|
894
|
-
# end
|
895
|
-
def default_formatter=(value)
|
896
|
-
formatter_loader.default_formatter = value
|
897
|
-
end
|
898
|
-
|
899
|
-
# Returns a duplicate of the formatters currently loaded in
|
900
|
-
# the `FormatterLoader` for introspection.
|
901
|
-
#
|
902
|
-
# Note as this is a duplicate, any mutations will be disregarded.
|
903
|
-
#
|
904
|
-
# @return [Array] the formatters currently loaded
|
905
|
-
def formatters
|
906
|
-
formatter_loader.formatters.dup
|
907
|
-
end
|
908
|
-
|
909
|
-
# @private
|
910
|
-
def formatter_loader
|
911
|
-
@formatter_loader ||= Formatters::Loader.new(Reporter.new(self))
|
912
|
-
end
|
913
|
-
|
914
|
-
# @private
|
915
|
-
#
|
916
|
-
# This buffer is used to capture all messages sent to the reporter during
|
917
|
-
# reporter initialization. It can then replay those messages after the
|
918
|
-
# formatter is correctly initialized. Otherwise, deprecation warnings
|
919
|
-
# during formatter initialization can cause an infinite loop.
|
920
|
-
class DeprecationReporterBuffer
|
921
|
-
def initialize
|
922
|
-
@calls = []
|
923
|
-
end
|
924
|
-
|
925
|
-
def deprecation(*args)
|
926
|
-
@calls << args
|
927
|
-
end
|
928
|
-
|
929
|
-
def play_onto(reporter)
|
930
|
-
@calls.each do |args|
|
931
|
-
reporter.deprecation(*args)
|
932
|
-
end
|
933
|
-
end
|
934
|
-
end
|
935
|
-
|
936
|
-
# @return [RSpec::Core::Reporter] the currently configured reporter
|
937
|
-
def reporter
|
938
|
-
# @reporter_buffer should only ever be set in this method to cover
|
939
|
-
# initialization of @reporter.
|
940
|
-
@reporter_buffer || @reporter ||=
|
941
|
-
begin
|
942
|
-
@reporter_buffer = DeprecationReporterBuffer.new
|
943
|
-
formatter_loader.prepare_default output_wrapper, deprecation_stream
|
944
|
-
@reporter_buffer.play_onto(formatter_loader.reporter)
|
945
|
-
@reporter_buffer = nil
|
946
|
-
formatter_loader.reporter
|
947
|
-
end
|
948
|
-
end
|
949
|
-
|
950
|
-
# @api private
|
951
|
-
#
|
952
|
-
# Defaults `profile_examples` to 10 examples when `@profile_examples` is
|
953
|
-
# `true`.
|
954
|
-
def profile_examples
|
955
|
-
profile = value_for(:profile_examples) { @profile_examples }
|
956
|
-
if profile && !profile.is_a?(Integer)
|
957
|
-
10
|
958
|
-
else
|
959
|
-
profile
|
960
|
-
end
|
961
|
-
end
|
962
|
-
|
963
|
-
# @private
|
964
|
-
def files_or_directories_to_run=(*files)
|
965
|
-
files = files.flatten
|
966
|
-
|
967
|
-
if (command == 'rspec' || Runner.running_in_drb?) && default_path && files.empty?
|
968
|
-
files << default_path
|
969
|
-
end
|
970
|
-
|
971
|
-
@files_or_directories_to_run = files
|
972
|
-
@files_to_run = nil
|
973
|
-
end
|
974
|
-
|
975
|
-
# The spec files RSpec will run.
|
976
|
-
# @return [Array] specified files about to run
|
977
|
-
def files_to_run
|
978
|
-
@files_to_run ||= get_files_to_run(@files_or_directories_to_run)
|
979
|
-
end
|
980
|
-
|
981
|
-
# @private
|
982
|
-
def last_run_statuses
|
983
|
-
@last_run_statuses ||= Hash.new(UNKNOWN_STATUS).tap do |statuses|
|
984
|
-
if (path = example_status_persistence_file_path)
|
985
|
-
begin
|
986
|
-
ExampleStatusPersister.load_from(path).inject(statuses) do |hash, example|
|
987
|
-
status = example[:status]
|
988
|
-
status = UNKNOWN_STATUS unless VALID_STATUSES.include?(status)
|
989
|
-
hash[example.fetch(:example_id)] = status
|
990
|
-
hash
|
991
|
-
end
|
992
|
-
rescue SystemCallError => e
|
993
|
-
RSpec.warning "Could not read from #{path.inspect} (configured as " \
|
994
|
-
"`config.example_status_persistence_file_path`) due " \
|
995
|
-
"to a system error: #{e.inspect}. Please check that " \
|
996
|
-
"the config option is set to an accessible, valid " \
|
997
|
-
"file path", :call_site => nil
|
998
|
-
end
|
999
|
-
end
|
1000
|
-
end
|
1001
|
-
end
|
1002
|
-
|
1003
|
-
# @private
|
1004
|
-
UNKNOWN_STATUS = "unknown".freeze
|
1005
|
-
|
1006
|
-
# @private
|
1007
|
-
FAILED_STATUS = "failed".freeze
|
1008
|
-
|
1009
|
-
# @private
|
1010
|
-
PASSED_STATUS = "passed".freeze
|
1011
|
-
|
1012
|
-
# @private
|
1013
|
-
PENDING_STATUS = "pending".freeze
|
1014
|
-
|
1015
|
-
# @private
|
1016
|
-
VALID_STATUSES = [UNKNOWN_STATUS, FAILED_STATUS, PASSED_STATUS, PENDING_STATUS]
|
1017
|
-
|
1018
|
-
# @private
|
1019
|
-
def spec_files_with_failures
|
1020
|
-
@spec_files_with_failures ||= last_run_statuses.inject(Set.new) do |files, (id, status)|
|
1021
|
-
files << Example.parse_id(id).first if status == FAILED_STATUS
|
1022
|
-
files
|
1023
|
-
end.to_a
|
1024
|
-
end
|
1025
|
-
|
1026
|
-
# Creates a method that delegates to `example` including the submitted
|
1027
|
-
# `args`. Used internally to add variants of `example` like `pending`:
|
1028
|
-
# @param name [String] example name alias
|
1029
|
-
# @param args [Array<Symbol>, Hash] metadata for the generated example
|
1030
|
-
#
|
1031
|
-
# @note The specific example alias below (`pending`) is already
|
1032
|
-
# defined for you.
|
1033
|
-
# @note Use with caution. This extends the language used in your
|
1034
|
-
# specs, but does not add any additional documentation. We use this
|
1035
|
-
# in RSpec to define methods like `focus` and `xit`, but we also add
|
1036
|
-
# docs for those methods.
|
1037
|
-
#
|
1038
|
-
# @example
|
1039
|
-
# RSpec.configure do |config|
|
1040
|
-
# config.alias_example_to :pending, :pending => true
|
1041
|
-
# end
|
1042
|
-
#
|
1043
|
-
# # This lets you do this:
|
1044
|
-
#
|
1045
|
-
# describe Thing do
|
1046
|
-
# pending "does something" do
|
1047
|
-
# thing = Thing.new
|
1048
|
-
# end
|
1049
|
-
# end
|
1050
|
-
#
|
1051
|
-
# # ... which is the equivalent of
|
1052
|
-
#
|
1053
|
-
# describe Thing do
|
1054
|
-
# it "does something", :pending => true do
|
1055
|
-
# thing = Thing.new
|
1056
|
-
# end
|
1057
|
-
# end
|
1058
|
-
def alias_example_to(name, *args)
|
1059
|
-
extra_options = Metadata.build_hash_from(args)
|
1060
|
-
RSpec::Core::ExampleGroup.define_example_method(name, extra_options)
|
1061
|
-
end
|
1062
|
-
|
1063
|
-
# Creates a method that defines an example group with the provided
|
1064
|
-
# metadata. Can be used to define example group/metadata shortcuts.
|
1065
|
-
#
|
1066
|
-
# @example
|
1067
|
-
# RSpec.configure do |config|
|
1068
|
-
# config.alias_example_group_to :describe_model, :type => :model
|
1069
|
-
# end
|
1070
|
-
#
|
1071
|
-
# shared_context_for "model tests", :type => :model do
|
1072
|
-
# # define common model test helper methods, `let` declarations, etc
|
1073
|
-
# end
|
1074
|
-
#
|
1075
|
-
# # This lets you do this:
|
1076
|
-
#
|
1077
|
-
# RSpec.describe_model User do
|
1078
|
-
# end
|
1079
|
-
#
|
1080
|
-
# # ... which is the equivalent of
|
1081
|
-
#
|
1082
|
-
# RSpec.describe User, :type => :model do
|
1083
|
-
# end
|
1084
|
-
#
|
1085
|
-
# @note The defined aliased will also be added to the top level
|
1086
|
-
# (e.g. `main` and from within modules) if
|
1087
|
-
# `expose_dsl_globally` is set to true.
|
1088
|
-
# @see #alias_example_to
|
1089
|
-
# @see #expose_dsl_globally=
|
1090
|
-
def alias_example_group_to(new_name, *args)
|
1091
|
-
extra_options = Metadata.build_hash_from(args)
|
1092
|
-
RSpec::Core::ExampleGroup.define_example_group_method(new_name, extra_options)
|
1093
|
-
end
|
1094
|
-
|
1095
|
-
# Define an alias for it_should_behave_like that allows different
|
1096
|
-
# language (like "it_has_behavior" or "it_behaves_like") to be
|
1097
|
-
# employed when including shared examples.
|
1098
|
-
#
|
1099
|
-
# @example
|
1100
|
-
# RSpec.configure do |config|
|
1101
|
-
# config.alias_it_behaves_like_to(:it_has_behavior, 'has behavior:')
|
1102
|
-
# end
|
1103
|
-
#
|
1104
|
-
# # allows the user to include a shared example group like:
|
1105
|
-
#
|
1106
|
-
# describe Entity do
|
1107
|
-
# it_has_behavior 'sortability' do
|
1108
|
-
# let(:sortable) { Entity.new }
|
1109
|
-
# end
|
1110
|
-
# end
|
1111
|
-
#
|
1112
|
-
# # which is reported in the output as:
|
1113
|
-
# # Entity
|
1114
|
-
# # has behavior: sortability
|
1115
|
-
# # ...sortability examples here
|
1116
|
-
#
|
1117
|
-
# @note Use with caution. This extends the language used in your
|
1118
|
-
# specs, but does not add any additional documentation. We use this
|
1119
|
-
# in RSpec to define `it_should_behave_like` (for backward
|
1120
|
-
# compatibility), but we also add docs for that method.
|
1121
|
-
def alias_it_behaves_like_to(new_name, report_label='')
|
1122
|
-
RSpec::Core::ExampleGroup.define_nested_shared_group_method(new_name, report_label)
|
1123
|
-
end
|
1124
|
-
alias_method :alias_it_should_behave_like_to, :alias_it_behaves_like_to
|
1125
|
-
|
1126
|
-
# Adds key/value pairs to the `inclusion_filter`. If `args`
|
1127
|
-
# includes any symbols that are not part of the hash, each symbol
|
1128
|
-
# is treated as a key in the hash with the value `true`.
|
1129
|
-
#
|
1130
|
-
# ### Note
|
1131
|
-
#
|
1132
|
-
# Filters set using this method can be overridden from the command line
|
1133
|
-
# or config files (e.g. `.rspec`).
|
1134
|
-
#
|
1135
|
-
# @example
|
1136
|
-
# # Given this declaration.
|
1137
|
-
# describe "something", :foo => 'bar' do
|
1138
|
-
# # ...
|
1139
|
-
# end
|
1140
|
-
#
|
1141
|
-
# # Any of the following will include that group.
|
1142
|
-
# config.filter_run_including :foo => 'bar'
|
1143
|
-
# config.filter_run_including :foo => /^ba/
|
1144
|
-
# config.filter_run_including :foo => lambda {|v| v == 'bar'}
|
1145
|
-
# config.filter_run_including :foo => lambda {|v,m| m[:foo] == 'bar'}
|
1146
|
-
#
|
1147
|
-
# # Given a proc with an arity of 1, the lambda is passed the value
|
1148
|
-
# # related to the key, e.g.
|
1149
|
-
# config.filter_run_including :foo => lambda {|v| v == 'bar'}
|
1150
|
-
#
|
1151
|
-
# # Given a proc with an arity of 2, the lambda is passed the value
|
1152
|
-
# # related to the key, and the metadata itself e.g.
|
1153
|
-
# config.filter_run_including :foo => lambda {|v,m| m[:foo] == 'bar'}
|
1154
|
-
#
|
1155
|
-
# filter_run_including :foo # same as filter_run_including :foo => true
|
1156
|
-
def filter_run_including(*args)
|
1157
|
-
meta = Metadata.build_hash_from(args, :warn_about_example_group_filtering)
|
1158
|
-
filter_manager.include_with_low_priority meta
|
1159
|
-
static_config_filter_manager.include_with_low_priority Metadata.deep_hash_dup(meta)
|
1160
|
-
end
|
1161
|
-
alias_method :filter_run, :filter_run_including
|
1162
|
-
|
1163
|
-
# Applies the provided filter only if any of examples match, in constrast
|
1164
|
-
# to {#filter_run}, which always applies even if no examples match, in
|
1165
|
-
# which case no examples will be run. This allows you to leave configured
|
1166
|
-
# filters in place that are intended only for temporary use. The most common
|
1167
|
-
# example is focus filtering: `config.filter_run_when_matching :focus`.
|
1168
|
-
# With that configured, you can temporarily focus an example or group
|
1169
|
-
# by tagging it with `:focus` metadata, or prefixing it with an `f`
|
1170
|
-
# (as in `fdescribe`, `fcontext` and `fit`) since those are aliases for
|
1171
|
-
# `describe`/`context`/`it` with `:focus` metadata.
|
1172
|
-
def filter_run_when_matching(*args)
|
1173
|
-
when_first_matching_example_defined(*args) do
|
1174
|
-
filter_run(*args)
|
1175
|
-
end
|
1176
|
-
end
|
1177
|
-
|
1178
|
-
# Clears and reassigns the `inclusion_filter`. Set to `nil` if you don't
|
1179
|
-
# want any inclusion filter at all.
|
1180
|
-
#
|
1181
|
-
# ### Warning
|
1182
|
-
#
|
1183
|
-
# This overrides any inclusion filters/tags set on the command line or in
|
1184
|
-
# configuration files.
|
1185
|
-
def inclusion_filter=(filter)
|
1186
|
-
meta = Metadata.build_hash_from([filter], :warn_about_example_group_filtering)
|
1187
|
-
filter_manager.include_only meta
|
1188
|
-
end
|
1189
|
-
|
1190
|
-
alias_method :filter=, :inclusion_filter=
|
1191
|
-
|
1192
|
-
# Returns the `inclusion_filter`. If none has been set, returns an empty
|
1193
|
-
# hash.
|
1194
|
-
def inclusion_filter
|
1195
|
-
filter_manager.inclusions
|
1196
|
-
end
|
1197
|
-
|
1198
|
-
alias_method :filter, :inclusion_filter
|
1199
|
-
|
1200
|
-
# Adds key/value pairs to the `exclusion_filter`. If `args`
|
1201
|
-
# includes any symbols that are not part of the hash, each symbol
|
1202
|
-
# is treated as a key in the hash with the value `true`.
|
1203
|
-
#
|
1204
|
-
# ### Note
|
1205
|
-
#
|
1206
|
-
# Filters set using this method can be overridden from the command line
|
1207
|
-
# or config files (e.g. `.rspec`).
|
1208
|
-
#
|
1209
|
-
# @example
|
1210
|
-
# # Given this declaration.
|
1211
|
-
# describe "something", :foo => 'bar' do
|
1212
|
-
# # ...
|
1213
|
-
# end
|
1214
|
-
#
|
1215
|
-
# # Any of the following will exclude that group.
|
1216
|
-
# config.filter_run_excluding :foo => 'bar'
|
1217
|
-
# config.filter_run_excluding :foo => /^ba/
|
1218
|
-
# config.filter_run_excluding :foo => lambda {|v| v == 'bar'}
|
1219
|
-
# config.filter_run_excluding :foo => lambda {|v,m| m[:foo] == 'bar'}
|
1220
|
-
#
|
1221
|
-
# # Given a proc with an arity of 1, the lambda is passed the value
|
1222
|
-
# # related to the key, e.g.
|
1223
|
-
# config.filter_run_excluding :foo => lambda {|v| v == 'bar'}
|
1224
|
-
#
|
1225
|
-
# # Given a proc with an arity of 2, the lambda is passed the value
|
1226
|
-
# # related to the key, and the metadata itself e.g.
|
1227
|
-
# config.filter_run_excluding :foo => lambda {|v,m| m[:foo] == 'bar'}
|
1228
|
-
#
|
1229
|
-
# filter_run_excluding :foo # same as filter_run_excluding :foo => true
|
1230
|
-
def filter_run_excluding(*args)
|
1231
|
-
meta = Metadata.build_hash_from(args, :warn_about_example_group_filtering)
|
1232
|
-
filter_manager.exclude_with_low_priority meta
|
1233
|
-
static_config_filter_manager.exclude_with_low_priority Metadata.deep_hash_dup(meta)
|
1234
|
-
end
|
1235
|
-
|
1236
|
-
# Clears and reassigns the `exclusion_filter`. Set to `nil` if you don't
|
1237
|
-
# want any exclusion filter at all.
|
1238
|
-
#
|
1239
|
-
# ### Warning
|
1240
|
-
#
|
1241
|
-
# This overrides any exclusion filters/tags set on the command line or in
|
1242
|
-
# configuration files.
|
1243
|
-
def exclusion_filter=(filter)
|
1244
|
-
meta = Metadata.build_hash_from([filter], :warn_about_example_group_filtering)
|
1245
|
-
filter_manager.exclude_only meta
|
1246
|
-
end
|
1247
|
-
|
1248
|
-
# Returns the `exclusion_filter`. If none has been set, returns an empty
|
1249
|
-
# hash.
|
1250
|
-
def exclusion_filter
|
1251
|
-
filter_manager.exclusions
|
1252
|
-
end
|
1253
|
-
|
1254
|
-
# Tells RSpec to include `mod` in example groups. Methods defined in
|
1255
|
-
# `mod` are exposed to examples (not example groups). Use `filters` to
|
1256
|
-
# constrain the groups or examples in which to include the module.
|
1257
|
-
#
|
1258
|
-
# @example
|
1259
|
-
#
|
1260
|
-
# module AuthenticationHelpers
|
1261
|
-
# def login_as(user)
|
1262
|
-
# # ...
|
1263
|
-
# end
|
1264
|
-
# end
|
1265
|
-
#
|
1266
|
-
# module UserHelpers
|
1267
|
-
# def users(username)
|
1268
|
-
# # ...
|
1269
|
-
# end
|
1270
|
-
# end
|
1271
|
-
#
|
1272
|
-
# RSpec.configure do |config|
|
1273
|
-
# config.include(UserHelpers) # included in all groups
|
1274
|
-
# config.include(AuthenticationHelpers, :type => :request)
|
1275
|
-
# end
|
1276
|
-
#
|
1277
|
-
# describe "edit profile", :type => :request do
|
1278
|
-
# it "can be viewed by owning user" do
|
1279
|
-
# login_as users(:jdoe)
|
1280
|
-
# get "/profiles/jdoe"
|
1281
|
-
# assert_select ".username", :text => 'jdoe'
|
1282
|
-
# end
|
1283
|
-
# end
|
1284
|
-
#
|
1285
|
-
# @note Filtered module inclusions can also be applied to
|
1286
|
-
# individual examples that have matching metadata. Just like
|
1287
|
-
# Ruby's object model is that every object has a singleton class
|
1288
|
-
# which has only a single instance, RSpec's model is that every
|
1289
|
-
# example has a singleton example group containing just the one
|
1290
|
-
# example.
|
1291
|
-
#
|
1292
|
-
# @see #include_context
|
1293
|
-
# @see #extend
|
1294
|
-
# @see #prepend
|
1295
|
-
def include(mod, *filters)
|
1296
|
-
define_mixed_in_module(mod, filters, @include_modules, :include) do |group|
|
1297
|
-
safe_include(mod, group)
|
1298
|
-
end
|
1299
|
-
end
|
1300
|
-
|
1301
|
-
# Tells RSpec to include the named shared example group in example groups.
|
1302
|
-
# Use `filters` to constrain the groups or examples in which to include
|
1303
|
-
# the example group.
|
1304
|
-
#
|
1305
|
-
# @example
|
1306
|
-
#
|
1307
|
-
# RSpec.shared_context "example users" do
|
1308
|
-
# let(:admin_user) { create_user(:admin) }
|
1309
|
-
# let(:guest_user) { create_user(:guest) }
|
1310
|
-
# end
|
1311
|
-
#
|
1312
|
-
# RSpec.configure do |config|
|
1313
|
-
# config.include_context "example users", :type => :request
|
1314
|
-
# end
|
1315
|
-
#
|
1316
|
-
# RSpec.describe "The admin page", :type => :request do
|
1317
|
-
# it "can be viewed by admins" do
|
1318
|
-
# login_with admin_user
|
1319
|
-
# get "/admin"
|
1320
|
-
# expect(response).to be_ok
|
1321
|
-
# end
|
1322
|
-
#
|
1323
|
-
# it "cannot be viewed by guests" do
|
1324
|
-
# login_with guest_user
|
1325
|
-
# get "/admin"
|
1326
|
-
# expect(response).to be_forbidden
|
1327
|
-
# end
|
1328
|
-
# end
|
1329
|
-
#
|
1330
|
-
# @note Filtered context inclusions can also be applied to
|
1331
|
-
# individual examples that have matching metadata. Just like
|
1332
|
-
# Ruby's object model is that every object has a singleton class
|
1333
|
-
# which has only a single instance, RSpec's model is that every
|
1334
|
-
# example has a singleton example group containing just the one
|
1335
|
-
# example.
|
1336
|
-
#
|
1337
|
-
# @see #include
|
1338
|
-
def include_context(shared_group_name, *filters)
|
1339
|
-
shared_module = world.shared_example_group_registry.find([:main], shared_group_name)
|
1340
|
-
include shared_module, *filters
|
1341
|
-
end
|
1342
|
-
|
1343
|
-
# Tells RSpec to extend example groups with `mod`. Methods defined in
|
1344
|
-
# `mod` are exposed to example groups (not examples). Use `filters` to
|
1345
|
-
# constrain the groups to extend.
|
1346
|
-
#
|
1347
|
-
# Similar to `include`, but behavior is added to example groups, which
|
1348
|
-
# are classes, rather than the examples, which are instances of those
|
1349
|
-
# classes.
|
1350
|
-
#
|
1351
|
-
# @example
|
1352
|
-
#
|
1353
|
-
# module UiHelpers
|
1354
|
-
# def run_in_browser
|
1355
|
-
# # ...
|
1356
|
-
# end
|
1357
|
-
# end
|
1358
|
-
#
|
1359
|
-
# RSpec.configure do |config|
|
1360
|
-
# config.extend(UiHelpers, :type => :request)
|
1361
|
-
# end
|
1362
|
-
#
|
1363
|
-
# describe "edit profile", :type => :request do
|
1364
|
-
# run_in_browser
|
1365
|
-
#
|
1366
|
-
# it "does stuff in the client" do
|
1367
|
-
# # ...
|
1368
|
-
# end
|
1369
|
-
# end
|
1370
|
-
#
|
1371
|
-
# @see #include
|
1372
|
-
# @see #prepend
|
1373
|
-
def extend(mod, *filters)
|
1374
|
-
define_mixed_in_module(mod, filters, @extend_modules, :extend) do |group|
|
1375
|
-
safe_extend(mod, group)
|
1376
|
-
end
|
1377
|
-
end
|
1378
|
-
|
1379
|
-
if RSpec::Support::RubyFeatures.module_prepends_supported?
|
1380
|
-
# Tells RSpec to prepend example groups with `mod`. Methods defined in
|
1381
|
-
# `mod` are exposed to examples (not example groups). Use `filters` to
|
1382
|
-
# constrain the groups in which to prepend the module.
|
1383
|
-
#
|
1384
|
-
# Similar to `include`, but module is included before the example group's class
|
1385
|
-
# in the ancestor chain.
|
1386
|
-
#
|
1387
|
-
# @example
|
1388
|
-
#
|
1389
|
-
# module OverrideMod
|
1390
|
-
# def override_me
|
1391
|
-
# "overridden"
|
1392
|
-
# end
|
1393
|
-
# end
|
1394
|
-
#
|
1395
|
-
# RSpec.configure do |config|
|
1396
|
-
# config.prepend(OverrideMod, :method => :prepend)
|
1397
|
-
# end
|
1398
|
-
#
|
1399
|
-
# describe "overriding example's class", :method => :prepend do
|
1400
|
-
# it "finds the user" do
|
1401
|
-
# self.class.class_eval do
|
1402
|
-
# def override_me
|
1403
|
-
# end
|
1404
|
-
# end
|
1405
|
-
# override_me # => "overridden"
|
1406
|
-
# # ...
|
1407
|
-
# end
|
1408
|
-
# end
|
1409
|
-
#
|
1410
|
-
# @see #include
|
1411
|
-
# @see #extend
|
1412
|
-
def prepend(mod, *filters)
|
1413
|
-
define_mixed_in_module(mod, filters, @prepend_modules, :prepend) do |group|
|
1414
|
-
safe_prepend(mod, group)
|
1415
|
-
end
|
1416
|
-
end
|
1417
|
-
end
|
1418
|
-
|
1419
|
-
# @private
|
1420
|
-
#
|
1421
|
-
# Used internally to extend a group with modules using `include`, `prepend` and/or
|
1422
|
-
# `extend`.
|
1423
|
-
def configure_group(group)
|
1424
|
-
group.hooks.register_globals(group, hooks)
|
1425
|
-
|
1426
|
-
configure_group_with group, @include_modules, :safe_include
|
1427
|
-
configure_group_with group, @extend_modules, :safe_extend
|
1428
|
-
configure_group_with group, @prepend_modules, :safe_prepend
|
1429
|
-
end
|
1430
|
-
|
1431
|
-
# @private
|
1432
|
-
#
|
1433
|
-
# Used internally to extend the singleton class of a single example's
|
1434
|
-
# example group instance with modules using `include` and/or `extend`.
|
1435
|
-
def configure_example(example, example_hooks)
|
1436
|
-
example_hooks.register_global_singleton_context_hooks(example, hooks)
|
1437
|
-
singleton_group = example.example_group_instance.singleton_class
|
1438
|
-
|
1439
|
-
# We replace the metadata so that SharedExampleGroupModule#included
|
1440
|
-
# has access to the example's metadata[:location].
|
1441
|
-
singleton_group.with_replaced_metadata(example.metadata) do
|
1442
|
-
modules = @include_modules.items_for(example.metadata)
|
1443
|
-
modules.each do |mod|
|
1444
|
-
safe_include(mod, example.example_group_instance.singleton_class)
|
1445
|
-
end
|
1446
|
-
|
1447
|
-
MemoizedHelpers.define_helpers_on(singleton_group) unless modules.empty?
|
1448
|
-
end
|
1449
|
-
end
|
1450
|
-
|
1451
|
-
# @private
|
1452
|
-
def requires=(paths)
|
1453
|
-
directories = ['lib', default_path].select { |p| File.directory? p }
|
1454
|
-
RSpec::Core::RubyProject.add_to_load_path(*directories)
|
1455
|
-
paths.each { |path| require path }
|
1456
|
-
@requires += paths
|
1457
|
-
end
|
1458
|
-
|
1459
|
-
# @private
|
1460
|
-
def in_project_source_dir_regex
|
1461
|
-
regexes = project_source_dirs.map do |dir|
|
1462
|
-
/\A#{Regexp.escape(File.expand_path(dir))}\//
|
1463
|
-
end
|
1464
|
-
|
1465
|
-
Regexp.union(regexes)
|
1466
|
-
end
|
1467
|
-
|
1468
|
-
# @private
|
1469
|
-
def configure_mock_framework
|
1470
|
-
RSpec::Core::ExampleGroup.__send__(:include, mock_framework)
|
1471
|
-
conditionally_disable_mocks_monkey_patching
|
1472
|
-
end
|
1473
|
-
|
1474
|
-
# @private
|
1475
|
-
def configure_expectation_framework
|
1476
|
-
expectation_frameworks.each do |framework|
|
1477
|
-
RSpec::Core::ExampleGroup.__send__(:include, framework)
|
1478
|
-
end
|
1479
|
-
conditionally_disable_expectations_monkey_patching
|
1480
|
-
end
|
1481
|
-
|
1482
|
-
# @private
|
1483
|
-
def load_spec_files
|
1484
|
-
# Note which spec files world is already aware of.
|
1485
|
-
# This is generally only needed for when the user runs
|
1486
|
-
# `ruby path/to/spec.rb` (and loads `rspec/autorun`) --
|
1487
|
-
# in that case, the spec file was loaded by `ruby` and
|
1488
|
-
# isn't loaded by us here so we only know about it because
|
1489
|
-
# of an example group being registered in it.
|
1490
|
-
world.registered_example_group_files.each do |f|
|
1491
|
-
loaded_spec_files << f # the registered files are already expended absolute paths
|
1492
|
-
end
|
1493
|
-
|
1494
|
-
files_to_run.uniq.each do |f|
|
1495
|
-
file = File.expand_path(f)
|
1496
|
-
load_spec_file_handling_errors(file)
|
1497
|
-
loaded_spec_files << file
|
1498
|
-
end
|
1499
|
-
|
1500
|
-
@spec_files_loaded = true
|
1501
|
-
end
|
1502
|
-
|
1503
|
-
# @private
|
1504
|
-
DEFAULT_FORMATTER = lambda { |string| string }
|
1505
|
-
|
1506
|
-
# Formats the docstring output using the block provided.
|
1507
|
-
#
|
1508
|
-
# @example
|
1509
|
-
# # This will strip the descriptions of both examples and example
|
1510
|
-
# # groups.
|
1511
|
-
# RSpec.configure do |config|
|
1512
|
-
# config.format_docstrings { |s| s.strip }
|
1513
|
-
# end
|
1514
|
-
def format_docstrings(&block)
|
1515
|
-
@format_docstrings_block = block_given? ? block : DEFAULT_FORMATTER
|
1516
|
-
end
|
1517
|
-
|
1518
|
-
# @private
|
1519
|
-
def format_docstrings_block
|
1520
|
-
@format_docstrings_block ||= DEFAULT_FORMATTER
|
1521
|
-
end
|
1522
|
-
|
1523
|
-
# @private
|
1524
|
-
# @macro [attach] delegate_to_ordering_manager
|
1525
|
-
# @!method $1
|
1526
|
-
def self.delegate_to_ordering_manager(*methods)
|
1527
|
-
methods.each do |method|
|
1528
|
-
define_method method do |*args, &block|
|
1529
|
-
ordering_manager.__send__(method, *args, &block)
|
1530
|
-
end
|
1531
|
-
end
|
1532
|
-
end
|
1533
|
-
|
1534
|
-
# @macro delegate_to_ordering_manager
|
1535
|
-
#
|
1536
|
-
# Sets the seed value and sets the default global ordering to random.
|
1537
|
-
delegate_to_ordering_manager :seed=
|
1538
|
-
|
1539
|
-
# @macro delegate_to_ordering_manager
|
1540
|
-
# Seed for random ordering (default: generated randomly each run).
|
1541
|
-
#
|
1542
|
-
# When you run specs with `--order random`, RSpec generates a random seed
|
1543
|
-
# for the randomization and prints it to the `output_stream` (assuming
|
1544
|
-
# you're using RSpec's built-in formatters). If you discover an ordering
|
1545
|
-
# dependency (i.e. examples fail intermittently depending on order), set
|
1546
|
-
# this (on Configuration or on the command line with `--seed`) to run
|
1547
|
-
# using the same seed while you debug the issue.
|
1548
|
-
#
|
1549
|
-
# We recommend, actually, that you use the command line approach so you
|
1550
|
-
# don't accidentally leave the seed encoded.
|
1551
|
-
delegate_to_ordering_manager :seed
|
1552
|
-
|
1553
|
-
# @macro delegate_to_ordering_manager
|
1554
|
-
#
|
1555
|
-
# Sets the default global ordering strategy. By default this can be one
|
1556
|
-
# of `:defined`, `:random`, but is customizable through the
|
1557
|
-
# `register_ordering` API. If order is set to `'rand:<seed>'`,
|
1558
|
-
# the seed will also be set.
|
1559
|
-
#
|
1560
|
-
# @see #register_ordering
|
1561
|
-
delegate_to_ordering_manager :order=
|
1562
|
-
|
1563
|
-
# @macro delegate_to_ordering_manager
|
1564
|
-
# Registers a named ordering strategy that can later be
|
1565
|
-
# used to order an example group's subgroups by adding
|
1566
|
-
# `:order => <name>` metadata to the example group.
|
1567
|
-
#
|
1568
|
-
# @param name [Symbol] The name of the ordering.
|
1569
|
-
# @yield Block that will order the given examples or example groups
|
1570
|
-
# @yieldparam list [Array<RSpec::Core::Example>,
|
1571
|
-
# Array<RSpec::Core::ExampleGroup>] The examples or groups to order
|
1572
|
-
# @yieldreturn [Array<RSpec::Core::Example>,
|
1573
|
-
# Array<RSpec::Core::ExampleGroup>] The re-ordered examples or groups
|
1574
|
-
#
|
1575
|
-
# @example
|
1576
|
-
# RSpec.configure do |rspec|
|
1577
|
-
# rspec.register_ordering :reverse do |list|
|
1578
|
-
# list.reverse
|
1579
|
-
# end
|
1580
|
-
# end
|
1581
|
-
#
|
1582
|
-
# RSpec.describe 'MyClass', :order => :reverse do
|
1583
|
-
# # ...
|
1584
|
-
# end
|
1585
|
-
#
|
1586
|
-
# @note Pass the symbol `:global` to set the ordering strategy that
|
1587
|
-
# will be used to order the top-level example groups and any example
|
1588
|
-
# groups that do not have declared `:order` metadata.
|
1589
|
-
#
|
1590
|
-
# @example
|
1591
|
-
# RSpec.configure do |rspec|
|
1592
|
-
# rspec.register_ordering :global do |examples|
|
1593
|
-
# acceptance, other = examples.partition do |example|
|
1594
|
-
# example.metadata[:type] == :acceptance
|
1595
|
-
# end
|
1596
|
-
# other + acceptance
|
1597
|
-
# end
|
1598
|
-
# end
|
1599
|
-
#
|
1600
|
-
# RSpec.describe 'MyClass', :type => :acceptance do
|
1601
|
-
# # will run last
|
1602
|
-
# end
|
1603
|
-
#
|
1604
|
-
# RSpec.describe 'MyClass' do
|
1605
|
-
# # will run first
|
1606
|
-
# end
|
1607
|
-
#
|
1608
|
-
delegate_to_ordering_manager :register_ordering
|
1609
|
-
|
1610
|
-
# @private
|
1611
|
-
delegate_to_ordering_manager :seed_used?, :ordering_registry
|
1612
|
-
|
1613
|
-
# Set Ruby warnings on or off.
|
1614
|
-
def warnings=(value)
|
1615
|
-
$VERBOSE = !!value
|
1616
|
-
end
|
1617
|
-
|
1618
|
-
# @return [Boolean] Whether or not ruby warnings are enabled.
|
1619
|
-
def warnings?
|
1620
|
-
$VERBOSE
|
1621
|
-
end
|
1622
|
-
|
1623
|
-
# @private
|
1624
|
-
RAISE_ERROR_WARNING_NOTIFIER = lambda { |message| raise message }
|
1625
|
-
|
1626
|
-
# Turns warnings into errors. This can be useful when
|
1627
|
-
# you want RSpec to run in a 'strict' no warning situation.
|
1628
|
-
#
|
1629
|
-
# @example
|
1630
|
-
#
|
1631
|
-
# RSpec.configure do |rspec|
|
1632
|
-
# rspec.raise_on_warning = true
|
1633
|
-
# end
|
1634
|
-
def raise_on_warning=(value)
|
1635
|
-
if value
|
1636
|
-
RSpec::Support.warning_notifier = RAISE_ERROR_WARNING_NOTIFIER
|
1637
|
-
else
|
1638
|
-
RSpec::Support.warning_notifier = RSpec::Support::DEFAULT_WARNING_NOTIFIER
|
1639
|
-
end
|
1640
|
-
end
|
1641
|
-
|
1642
|
-
# Exposes the current running example via the named
|
1643
|
-
# helper method. RSpec 2.x exposed this via `example`,
|
1644
|
-
# but in RSpec 3.0, the example is instead exposed via
|
1645
|
-
# an arg yielded to `it`, `before`, `let`, etc. However,
|
1646
|
-
# some extension gems (such as Capybara) depend on the
|
1647
|
-
# RSpec 2.x's `example` method, so this config option
|
1648
|
-
# can be used to maintain compatibility.
|
1649
|
-
#
|
1650
|
-
# @param method_name [Symbol] the name of the helper method
|
1651
|
-
#
|
1652
|
-
# @example
|
1653
|
-
#
|
1654
|
-
# RSpec.configure do |rspec|
|
1655
|
-
# rspec.expose_current_running_example_as :example
|
1656
|
-
# end
|
1657
|
-
#
|
1658
|
-
# describe MyClass do
|
1659
|
-
# before do
|
1660
|
-
# # `example` can be used here because of the above config.
|
1661
|
-
# do_something if example.metadata[:type] == "foo"
|
1662
|
-
# end
|
1663
|
-
# end
|
1664
|
-
def expose_current_running_example_as(method_name)
|
1665
|
-
ExposeCurrentExample.module_exec do
|
1666
|
-
extend RSpec::SharedContext
|
1667
|
-
let(method_name) { |ex| ex }
|
1668
|
-
end
|
1669
|
-
|
1670
|
-
include ExposeCurrentExample
|
1671
|
-
end
|
1672
|
-
|
1673
|
-
# @private
|
1674
|
-
module ExposeCurrentExample; end
|
1675
|
-
|
1676
|
-
# Turns deprecation warnings into errors, in order to surface
|
1677
|
-
# the full backtrace of the call site. This can be useful when
|
1678
|
-
# you need more context to address a deprecation than the
|
1679
|
-
# single-line call site normally provided.
|
1680
|
-
#
|
1681
|
-
# @example
|
1682
|
-
#
|
1683
|
-
# RSpec.configure do |rspec|
|
1684
|
-
# rspec.raise_errors_for_deprecations!
|
1685
|
-
# end
|
1686
|
-
def raise_errors_for_deprecations!
|
1687
|
-
self.deprecation_stream = Formatters::DeprecationFormatter::RaiseErrorStream.new
|
1688
|
-
end
|
1689
|
-
|
1690
|
-
# Enables zero monkey patching mode for RSpec. It removes monkey
|
1691
|
-
# patching of the top-level DSL methods (`describe`,
|
1692
|
-
# `shared_examples_for`, etc) onto `main` and `Module`, instead
|
1693
|
-
# requiring you to prefix these methods with `RSpec.`. It enables
|
1694
|
-
# expect-only syntax for rspec-mocks and rspec-expectations. It
|
1695
|
-
# simply disables monkey patching on whatever pieces of RSpec
|
1696
|
-
# the user is using.
|
1697
|
-
#
|
1698
|
-
# @note It configures rspec-mocks and rspec-expectations only
|
1699
|
-
# if the user is using those (either explicitly or implicitly
|
1700
|
-
# by not setting `mock_with` or `expect_with` to anything else).
|
1701
|
-
#
|
1702
|
-
# @note If the user uses this options with `mock_with :mocha`
|
1703
|
-
# (or similiar) they will still have monkey patching active
|
1704
|
-
# in their test environment from mocha.
|
1705
|
-
#
|
1706
|
-
# @example
|
1707
|
-
#
|
1708
|
-
# # It disables all monkey patching.
|
1709
|
-
# RSpec.configure do |config|
|
1710
|
-
# config.disable_monkey_patching!
|
1711
|
-
# end
|
1712
|
-
#
|
1713
|
-
# # Is an equivalent to
|
1714
|
-
# RSpec.configure do |config|
|
1715
|
-
# config.expose_dsl_globally = false
|
1716
|
-
#
|
1717
|
-
# config.mock_with :rspec do |mocks|
|
1718
|
-
# mocks.syntax = :expect
|
1719
|
-
# mocks.patch_marshal_to_support_partial_doubles = false
|
1720
|
-
# end
|
1721
|
-
#
|
1722
|
-
# config.expect_with :rspec do |expectations|
|
1723
|
-
# expectations.syntax = :expect
|
1724
|
-
# end
|
1725
|
-
# end
|
1726
|
-
def disable_monkey_patching!
|
1727
|
-
self.expose_dsl_globally = false
|
1728
|
-
self.disable_monkey_patching = true
|
1729
|
-
conditionally_disable_mocks_monkey_patching
|
1730
|
-
conditionally_disable_expectations_monkey_patching
|
1731
|
-
end
|
1732
|
-
|
1733
|
-
# @private
|
1734
|
-
attr_accessor :disable_monkey_patching
|
1735
|
-
|
1736
|
-
# Defines a callback that can assign derived metadata values.
|
1737
|
-
#
|
1738
|
-
# @param filters [Array<Symbol>, Hash] metadata filters that determine
|
1739
|
-
# which example or group metadata hashes the callback will be triggered
|
1740
|
-
# for. If none are given, the callback will be run against the metadata
|
1741
|
-
# hashes of all groups and examples.
|
1742
|
-
# @yieldparam metadata [Hash] original metadata hash from an example or
|
1743
|
-
# group. Mutate this in your block as needed.
|
1744
|
-
#
|
1745
|
-
# @example
|
1746
|
-
# RSpec.configure do |config|
|
1747
|
-
# # Tag all groups and examples in the spec/unit directory with
|
1748
|
-
# # :type => :unit
|
1749
|
-
# config.define_derived_metadata(:file_path => %r{/spec/unit/}) do |metadata|
|
1750
|
-
# metadata[:type] = :unit
|
1751
|
-
# end
|
1752
|
-
# end
|
1753
|
-
def define_derived_metadata(*filters, &block)
|
1754
|
-
meta = Metadata.build_hash_from(filters, :warn_about_example_group_filtering)
|
1755
|
-
@derived_metadata_blocks.append(block, meta)
|
1756
|
-
end
|
1757
|
-
|
1758
|
-
# Defines a callback that runs after the first example with matching
|
1759
|
-
# metadata is defined. If no examples are defined with matching metadata,
|
1760
|
-
# it will not get called at all.
|
1761
|
-
#
|
1762
|
-
# This can be used to ensure some setup is performed (such as bootstrapping
|
1763
|
-
# a DB or loading a specific file that adds significantly to the boot time)
|
1764
|
-
# if needed (as indicated by the presence of an example with matching metadata)
|
1765
|
-
# but avoided otherwise.
|
1766
|
-
#
|
1767
|
-
# @example
|
1768
|
-
# RSpec.configure do |config|
|
1769
|
-
# config.when_first_matching_example_defined(:db) do
|
1770
|
-
# # Load a support file that does some heavyweight setup,
|
1771
|
-
# # including bootstrapping the DB, but only if we have loaded
|
1772
|
-
# # any examples tagged with `:db`.
|
1773
|
-
# require 'support/db'
|
1774
|
-
# end
|
1775
|
-
# end
|
1776
|
-
def when_first_matching_example_defined(*filters, &block)
|
1777
|
-
specified_meta = Metadata.build_hash_from(filters, :warn_about_example_group_filtering)
|
1778
|
-
|
1779
|
-
callback = lambda do |example_or_group_meta|
|
1780
|
-
# Example groups do not have `:example_group` metadata
|
1781
|
-
# (instead they have `:parent_example_group` metadata).
|
1782
|
-
return unless example_or_group_meta.key?(:example_group)
|
1783
|
-
|
1784
|
-
# Ensure the callback only fires once.
|
1785
|
-
@derived_metadata_blocks.delete(callback, specified_meta)
|
1786
|
-
|
1787
|
-
block.call
|
1788
|
-
end
|
1789
|
-
|
1790
|
-
@derived_metadata_blocks.append(callback, specified_meta)
|
1791
|
-
end
|
1792
|
-
|
1793
|
-
# @private
|
1794
|
-
def apply_derived_metadata_to(metadata)
|
1795
|
-
@derived_metadata_blocks.items_for(metadata).each do |block|
|
1796
|
-
block.call(metadata)
|
1797
|
-
end
|
1798
|
-
end
|
1799
|
-
|
1800
|
-
# Defines a `before` hook. See {Hooks#before} for full docs.
|
1801
|
-
#
|
1802
|
-
# This method differs from {Hooks#before} in only one way: it supports
|
1803
|
-
# the `:suite` scope. Hooks with the `:suite` scope will be run once before
|
1804
|
-
# the first example of the entire suite is executed.
|
1805
|
-
#
|
1806
|
-
# @see #prepend_before
|
1807
|
-
# @see #after
|
1808
|
-
# @see #append_after
|
1809
|
-
def before(scope=nil, *meta, &block)
|
1810
|
-
handle_suite_hook(scope, meta) do
|
1811
|
-
@before_suite_hooks << Hooks::BeforeHook.new(block, {})
|
1812
|
-
end || begin
|
1813
|
-
# defeat Ruby 2.5 lazy proc allocation to ensure
|
1814
|
-
# the methods below are passed the same proc instances
|
1815
|
-
# so `Hook` equality is preserved. For more info, see:
|
1816
|
-
# https://bugs.ruby-lang.org/issues/14045#note-5
|
1817
|
-
block.__id__
|
1818
|
-
|
1819
|
-
add_hook_to_existing_matching_groups(meta, scope) { |g| g.before(scope, *meta, &block) }
|
1820
|
-
super(scope, *meta, &block)
|
1821
|
-
end
|
1822
|
-
end
|
1823
|
-
alias_method :append_before, :before
|
1824
|
-
|
1825
|
-
# Adds `block` to the start of the list of `before` blocks in the same
|
1826
|
-
# scope (`:example`, `:context`, or `:suite`), in contrast to {#before},
|
1827
|
-
# which adds the hook to the end of the list.
|
1828
|
-
#
|
1829
|
-
# See {Hooks#before} for full `before` hook docs.
|
1830
|
-
#
|
1831
|
-
# This method differs from {Hooks#prepend_before} in only one way: it supports
|
1832
|
-
# the `:suite` scope. Hooks with the `:suite` scope will be run once before
|
1833
|
-
# the first example of the entire suite is executed.
|
1834
|
-
#
|
1835
|
-
# @see #before
|
1836
|
-
# @see #after
|
1837
|
-
# @see #append_after
|
1838
|
-
def prepend_before(scope=nil, *meta, &block)
|
1839
|
-
handle_suite_hook(scope, meta) do
|
1840
|
-
@before_suite_hooks.unshift Hooks::BeforeHook.new(block, {})
|
1841
|
-
end || begin
|
1842
|
-
# defeat Ruby 2.5 lazy proc allocation to ensure
|
1843
|
-
# the methods below are passed the same proc instances
|
1844
|
-
# so `Hook` equality is preserved. For more info, see:
|
1845
|
-
# https://bugs.ruby-lang.org/issues/14045#note-5
|
1846
|
-
block.__id__
|
1847
|
-
|
1848
|
-
add_hook_to_existing_matching_groups(meta, scope) { |g| g.prepend_before(scope, *meta, &block) }
|
1849
|
-
super(scope, *meta, &block)
|
1850
|
-
end
|
1851
|
-
end
|
1852
|
-
|
1853
|
-
# Defines a `after` hook. See {Hooks#after} for full docs.
|
1854
|
-
#
|
1855
|
-
# This method differs from {Hooks#after} in only one way: it supports
|
1856
|
-
# the `:suite` scope. Hooks with the `:suite` scope will be run once after
|
1857
|
-
# the last example of the entire suite is executed.
|
1858
|
-
#
|
1859
|
-
# @see #append_after
|
1860
|
-
# @see #before
|
1861
|
-
# @see #prepend_before
|
1862
|
-
def after(scope=nil, *meta, &block)
|
1863
|
-
handle_suite_hook(scope, meta) do
|
1864
|
-
@after_suite_hooks.unshift Hooks::AfterHook.new(block, {})
|
1865
|
-
end || begin
|
1866
|
-
# defeat Ruby 2.5 lazy proc allocation to ensure
|
1867
|
-
# the methods below are passed the same proc instances
|
1868
|
-
# so `Hook` equality is preserved. For more info, see:
|
1869
|
-
# https://bugs.ruby-lang.org/issues/14045#note-5
|
1870
|
-
block.__id__
|
1871
|
-
|
1872
|
-
add_hook_to_existing_matching_groups(meta, scope) { |g| g.after(scope, *meta, &block) }
|
1873
|
-
super(scope, *meta, &block)
|
1874
|
-
end
|
1875
|
-
end
|
1876
|
-
alias_method :prepend_after, :after
|
1877
|
-
|
1878
|
-
# Adds `block` to the end of the list of `after` blocks in the same
|
1879
|
-
# scope (`:example`, `:context`, or `:suite`), in contrast to {#after},
|
1880
|
-
# which adds the hook to the start of the list.
|
1881
|
-
#
|
1882
|
-
# See {Hooks#after} for full `after` hook docs.
|
1883
|
-
#
|
1884
|
-
# This method differs from {Hooks#append_after} in only one way: it supports
|
1885
|
-
# the `:suite` scope. Hooks with the `:suite` scope will be run once after
|
1886
|
-
# the last example of the entire suite is executed.
|
1887
|
-
#
|
1888
|
-
# @see #append_after
|
1889
|
-
# @see #before
|
1890
|
-
# @see #prepend_before
|
1891
|
-
def append_after(scope=nil, *meta, &block)
|
1892
|
-
handle_suite_hook(scope, meta) do
|
1893
|
-
@after_suite_hooks << Hooks::AfterHook.new(block, {})
|
1894
|
-
end || begin
|
1895
|
-
# defeat Ruby 2.5 lazy proc allocation to ensure
|
1896
|
-
# the methods below are passed the same proc instances
|
1897
|
-
# so `Hook` equality is preserved. For more info, see:
|
1898
|
-
# https://bugs.ruby-lang.org/issues/14045#note-5
|
1899
|
-
block.__id__
|
1900
|
-
|
1901
|
-
add_hook_to_existing_matching_groups(meta, scope) { |g| g.append_after(scope, *meta, &block) }
|
1902
|
-
super(scope, *meta, &block)
|
1903
|
-
end
|
1904
|
-
end
|
1905
|
-
|
1906
|
-
# Registers `block` as an `around` hook.
|
1907
|
-
#
|
1908
|
-
# See {Hooks#around} for full `around` hook docs.
|
1909
|
-
def around(scope=nil, *meta, &block)
|
1910
|
-
# defeat Ruby 2.5 lazy proc allocation to ensure
|
1911
|
-
# the methods below are passed the same proc instances
|
1912
|
-
# so `Hook` equality is preserved. For more info, see:
|
1913
|
-
# https://bugs.ruby-lang.org/issues/14045#note-5
|
1914
|
-
block.__id__
|
1915
|
-
|
1916
|
-
add_hook_to_existing_matching_groups(meta, scope) { |g| g.around(scope, *meta, &block) }
|
1917
|
-
super(scope, *meta, &block)
|
1918
|
-
end
|
1919
|
-
|
1920
|
-
# @private
|
1921
|
-
def with_suite_hooks
|
1922
|
-
return yield if dry_run?
|
1923
|
-
|
1924
|
-
begin
|
1925
|
-
run_suite_hooks("a `before(:suite)` hook", @before_suite_hooks)
|
1926
|
-
yield
|
1927
|
-
ensure
|
1928
|
-
run_suite_hooks("an `after(:suite)` hook", @after_suite_hooks)
|
1929
|
-
end
|
1930
|
-
end
|
1931
|
-
|
1932
|
-
# @private
|
1933
|
-
# Holds the various registered hooks. Here we use a FilterableItemRepository
|
1934
|
-
# implementation that is specifically optimized for the read/write patterns
|
1935
|
-
# of the config object.
|
1936
|
-
def hooks
|
1937
|
-
@hooks ||= HookCollections.new(self, FilterableItemRepository::QueryOptimized)
|
1938
|
-
end
|
1939
|
-
|
1940
|
-
# Invokes block before defining an example group
|
1941
|
-
def on_example_group_definition(&block)
|
1942
|
-
on_example_group_definition_callbacks << block
|
1943
|
-
end
|
1944
|
-
|
1945
|
-
# @api private
|
1946
|
-
# Returns an array of blocks to call before defining an example group
|
1947
|
-
def on_example_group_definition_callbacks
|
1948
|
-
@on_example_group_definition_callbacks ||= []
|
1949
|
-
end
|
1950
|
-
|
1951
|
-
private
|
1952
|
-
|
1953
|
-
def load_spec_file_handling_errors(file)
|
1954
|
-
load file
|
1955
|
-
rescue Support::AllExceptionsExceptOnesWeMustNotRescue => ex
|
1956
|
-
relative_file = Metadata.relative_path(file)
|
1957
|
-
reporter.notify_non_example_exception(ex, "An error occurred while loading #{relative_file}.")
|
1958
|
-
RSpec.world.wants_to_quit = true
|
1959
|
-
end
|
1960
|
-
|
1961
|
-
def handle_suite_hook(scope, meta)
|
1962
|
-
return nil unless scope == :suite
|
1963
|
-
|
1964
|
-
unless meta.empty?
|
1965
|
-
# TODO: in RSpec 4, consider raising an error here.
|
1966
|
-
# We warn only for backwards compatibility.
|
1967
|
-
RSpec.warn_with "WARNING: `:suite` hooks do not support metadata since " \
|
1968
|
-
"they apply to the suite as a whole rather than " \
|
1969
|
-
"any individual example or example group that has metadata. " \
|
1970
|
-
"The metadata you have provided (#{meta.inspect}) will be ignored."
|
1971
|
-
end
|
1972
|
-
|
1973
|
-
yield
|
1974
|
-
end
|
1975
|
-
|
1976
|
-
def run_suite_hooks(hook_description, hooks)
|
1977
|
-
context = SuiteHookContext.new(hook_description, reporter)
|
1978
|
-
|
1979
|
-
hooks.each do |hook|
|
1980
|
-
begin
|
1981
|
-
hook.run(context)
|
1982
|
-
rescue Support::AllExceptionsExceptOnesWeMustNotRescue => ex
|
1983
|
-
context.set_exception(ex)
|
1984
|
-
|
1985
|
-
# Do not run subsequent `before` hooks if one fails.
|
1986
|
-
# But for `after` hooks, we run them all so that all
|
1987
|
-
# cleanup bits get a chance to complete, minimizing the
|
1988
|
-
# chance that resources get left behind.
|
1989
|
-
break if hooks.equal?(@before_suite_hooks)
|
1990
|
-
end
|
1991
|
-
end
|
1992
|
-
end
|
1993
|
-
|
1994
|
-
def get_files_to_run(paths)
|
1995
|
-
files = FlatMap.flat_map(paths_to_check(paths)) do |path|
|
1996
|
-
path = path.gsub(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR
|
1997
|
-
File.directory?(path) ? gather_directories(path) : extract_location(path)
|
1998
|
-
end.uniq
|
1999
|
-
|
2000
|
-
return files unless only_failures?
|
2001
|
-
relative_files = files.map { |f| Metadata.relative_path(File.expand_path f) }
|
2002
|
-
intersection = (relative_files & spec_files_with_failures.to_a)
|
2003
|
-
intersection.empty? ? files : intersection
|
2004
|
-
end
|
2005
|
-
|
2006
|
-
def paths_to_check(paths)
|
2007
|
-
return paths if pattern_might_load_specs_from_vendored_dirs?
|
2008
|
-
paths + [Dir.getwd]
|
2009
|
-
end
|
2010
|
-
|
2011
|
-
def pattern_might_load_specs_from_vendored_dirs?
|
2012
|
-
pattern.split(File::SEPARATOR).first.include?('**')
|
2013
|
-
end
|
2014
|
-
|
2015
|
-
def gather_directories(path)
|
2016
|
-
include_files = get_matching_files(path, pattern)
|
2017
|
-
exclude_files = get_matching_files(path, exclude_pattern)
|
2018
|
-
(include_files - exclude_files).uniq
|
2019
|
-
end
|
2020
|
-
|
2021
|
-
def get_matching_files(path, pattern)
|
2022
|
-
raw_files = Dir[file_glob_from(path, pattern)]
|
2023
|
-
raw_files.map { |file| File.expand_path(file) }.sort
|
2024
|
-
end
|
2025
|
-
|
2026
|
-
def file_glob_from(path, pattern)
|
2027
|
-
stripped = "{#{pattern.gsub(/\s*,\s*/, ',')}}"
|
2028
|
-
return stripped if pattern =~ /^(\.\/)?#{Regexp.escape path}/ || absolute_pattern?(pattern)
|
2029
|
-
File.join(path, stripped)
|
2030
|
-
end
|
2031
|
-
|
2032
|
-
if RSpec::Support::OS.windows?
|
2033
|
-
# :nocov:
|
2034
|
-
def absolute_pattern?(pattern)
|
2035
|
-
pattern =~ /\A[A-Z]:\\/ || windows_absolute_network_path?(pattern)
|
2036
|
-
end
|
2037
|
-
|
2038
|
-
def windows_absolute_network_path?(pattern)
|
2039
|
-
return false unless ::File::ALT_SEPARATOR
|
2040
|
-
pattern.start_with?(::File::ALT_SEPARATOR + ::File::ALT_SEPARATOR)
|
2041
|
-
end
|
2042
|
-
# :nocov:
|
2043
|
-
else
|
2044
|
-
def absolute_pattern?(pattern)
|
2045
|
-
pattern.start_with?(File::Separator)
|
2046
|
-
end
|
2047
|
-
end
|
2048
|
-
|
2049
|
-
def extract_location(path)
|
2050
|
-
match = /^(.*?)((?:\:\d+)+)$/.match(path)
|
2051
|
-
|
2052
|
-
if match
|
2053
|
-
captures = match.captures
|
2054
|
-
path = captures[0]
|
2055
|
-
lines = captures[1][1..-1].split(":").map(&:to_i)
|
2056
|
-
filter_manager.add_location path, lines
|
2057
|
-
else
|
2058
|
-
path, scoped_ids = Example.parse_id(path)
|
2059
|
-
filter_manager.add_ids(path, scoped_ids.split(/\s*,\s*/)) if scoped_ids
|
2060
|
-
end
|
2061
|
-
|
2062
|
-
return [] if path == default_path
|
2063
|
-
File.expand_path(path)
|
2064
|
-
end
|
2065
|
-
|
2066
|
-
def command
|
2067
|
-
$0.split(File::SEPARATOR).last
|
2068
|
-
end
|
2069
|
-
|
2070
|
-
def value_for(key)
|
2071
|
-
@preferred_options.fetch(key) { yield }
|
2072
|
-
end
|
2073
|
-
|
2074
|
-
def define_built_in_hooks
|
2075
|
-
around(:example, :aggregate_failures => true) do |procsy|
|
2076
|
-
begin
|
2077
|
-
aggregate_failures(nil, :hide_backtrace => true, &procsy)
|
2078
|
-
rescue Support::AllExceptionsExceptOnesWeMustNotRescue => exception
|
2079
|
-
procsy.example.set_aggregate_failures_exception(exception)
|
2080
|
-
end
|
2081
|
-
end
|
2082
|
-
end
|
2083
|
-
|
2084
|
-
def assert_no_example_groups_defined(config_option)
|
2085
|
-
return unless world.example_groups.any?
|
2086
|
-
|
2087
|
-
raise MustBeConfiguredBeforeExampleGroupsError.new(
|
2088
|
-
"RSpec's #{config_option} configuration option must be configured before " \
|
2089
|
-
"any example groups are defined, but you have already defined a group."
|
2090
|
-
)
|
2091
|
-
end
|
2092
|
-
|
2093
|
-
def output_wrapper
|
2094
|
-
@output_wrapper ||= OutputWrapper.new(output_stream)
|
2095
|
-
end
|
2096
|
-
|
2097
|
-
def output_to_tty?(output=output_stream)
|
2098
|
-
output.respond_to?(:tty?) && output.tty?
|
2099
|
-
end
|
2100
|
-
|
2101
|
-
def conditionally_disable_mocks_monkey_patching
|
2102
|
-
return unless disable_monkey_patching && rspec_mocks_loaded?
|
2103
|
-
|
2104
|
-
RSpec::Mocks.configuration.tap do |config|
|
2105
|
-
config.syntax = :expect
|
2106
|
-
config.patch_marshal_to_support_partial_doubles = false
|
2107
|
-
end
|
2108
|
-
end
|
2109
|
-
|
2110
|
-
def conditionally_disable_expectations_monkey_patching
|
2111
|
-
return unless disable_monkey_patching && rspec_expectations_loaded?
|
2112
|
-
|
2113
|
-
RSpec::Expectations.configuration.syntax = :expect
|
2114
|
-
end
|
2115
|
-
|
2116
|
-
def rspec_mocks_loaded?
|
2117
|
-
defined?(RSpec::Mocks.configuration)
|
2118
|
-
end
|
2119
|
-
|
2120
|
-
def rspec_expectations_loaded?
|
2121
|
-
defined?(RSpec::Expectations.configuration)
|
2122
|
-
end
|
2123
|
-
|
2124
|
-
def update_pattern_attr(name, value)
|
2125
|
-
if @spec_files_loaded
|
2126
|
-
RSpec.warning "Configuring `#{name}` to #{value} has no effect since " \
|
2127
|
-
"RSpec has already loaded the spec files."
|
2128
|
-
end
|
2129
|
-
|
2130
|
-
instance_variable_set(:"@#{name}", value)
|
2131
|
-
@files_to_run = nil
|
2132
|
-
end
|
2133
|
-
|
2134
|
-
def clear_values_derived_from_example_status_persistence_file_path
|
2135
|
-
@last_run_statuses = nil
|
2136
|
-
@spec_files_with_failures = nil
|
2137
|
-
end
|
2138
|
-
|
2139
|
-
def configure_group_with(group, module_list, application_method)
|
2140
|
-
module_list.items_for(group.metadata).each do |mod|
|
2141
|
-
__send__(application_method, mod, group)
|
2142
|
-
end
|
2143
|
-
end
|
2144
|
-
|
2145
|
-
def add_hook_to_existing_matching_groups(meta, scope, &block)
|
2146
|
-
# For example hooks, we have to apply it to each of the top level
|
2147
|
-
# groups, even if the groups do not match. When we apply it, we
|
2148
|
-
# apply it with the metadata, so it will only apply to examples
|
2149
|
-
# in the group that match the metadata.
|
2150
|
-
# #2280 for background and discussion.
|
2151
|
-
if scope == :example || scope == :each || scope.nil?
|
2152
|
-
world.example_groups.each(&block)
|
2153
|
-
else
|
2154
|
-
meta = Metadata.build_hash_from(meta.dup)
|
2155
|
-
on_existing_matching_groups(meta, &block)
|
2156
|
-
end
|
2157
|
-
end
|
2158
|
-
|
2159
|
-
def on_existing_matching_groups(meta)
|
2160
|
-
world.traverse_example_group_trees_until do |group|
|
2161
|
-
metadata_applies_to_group?(meta, group).tap do |applies|
|
2162
|
-
yield group if applies
|
2163
|
-
end
|
2164
|
-
end
|
2165
|
-
end
|
2166
|
-
|
2167
|
-
def metadata_applies_to_group?(meta, group)
|
2168
|
-
meta.empty? || MetadataFilter.apply?(:any?, meta, group.metadata)
|
2169
|
-
end
|
2170
|
-
|
2171
|
-
if RSpec::Support::RubyFeatures.module_prepends_supported?
|
2172
|
-
def safe_prepend(mod, host)
|
2173
|
-
host.__send__(:prepend, mod) unless host < mod
|
2174
|
-
end
|
2175
|
-
end
|
2176
|
-
|
2177
|
-
if RUBY_VERSION.to_f >= 1.9
|
2178
|
-
def safe_include(mod, host)
|
2179
|
-
host.__send__(:include, mod) unless host < mod
|
2180
|
-
end
|
2181
|
-
|
2182
|
-
def safe_extend(mod, host)
|
2183
|
-
host.extend(mod) unless host.singleton_class < mod
|
2184
|
-
end
|
2185
|
-
else # for 1.8.7
|
2186
|
-
# :nocov:
|
2187
|
-
def safe_include(mod, host)
|
2188
|
-
host.__send__(:include, mod) unless host.included_modules.include?(mod)
|
2189
|
-
end
|
2190
|
-
|
2191
|
-
def safe_extend(mod, host)
|
2192
|
-
host.extend(mod) unless (class << host; self; end).included_modules.include?(mod)
|
2193
|
-
end
|
2194
|
-
# :nocov:
|
2195
|
-
end
|
2196
|
-
|
2197
|
-
def define_mixed_in_module(mod, filters, mod_list, config_method, &block)
|
2198
|
-
unless Module === mod
|
2199
|
-
raise TypeError, "`RSpec.configuration.#{config_method}` expects a module but got: #{mod.inspect}"
|
2200
|
-
end
|
2201
|
-
|
2202
|
-
meta = Metadata.build_hash_from(filters, :warn_about_example_group_filtering)
|
2203
|
-
mod_list.append(mod, meta)
|
2204
|
-
on_existing_matching_groups(meta, &block)
|
2205
|
-
end
|
2206
|
-
end
|
2207
|
-
# rubocop:enable Metrics/ClassLength
|
2208
|
-
end
|
2209
|
-
end
|