ory-hydra-client 2.1.0 → 2.2.0.rc3
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 +12 -10
- data/README.md +12 -5
- data/docs/AcceptOAuth2LoginRequest.md +2 -0
- data/docs/CreateVerifiableCredentialRequestBody.md +22 -0
- data/docs/CredentialSupportedDraft00.md +24 -0
- data/docs/OidcApi.md +67 -0
- data/docs/OidcConfiguration.md +4 -0
- data/docs/RFC6749ErrorJson.md +26 -0
- data/docs/VerifiableCredentialPrimingResponse.md +32 -0
- data/docs/VerifiableCredentialProof.md +20 -0
- data/docs/VerifiableCredentialResponse.md +20 -0
- data/lib/ory-hydra-client/api/jwk_api.rb +1 -1
- data/lib/ory-hydra-client/api/metadata_api.rb +1 -1
- data/lib/ory-hydra-client/api/o_auth2_api.rb +1 -1
- data/lib/ory-hydra-client/api/oidc_api.rb +65 -1
- data/lib/ory-hydra-client/api/wellknown_api.rb +1 -1
- data/lib/ory-hydra-client/api_client.rb +1 -1
- data/lib/ory-hydra-client/api_error.rb +1 -1
- data/lib/ory-hydra-client/configuration.rb +1 -1
- data/lib/ory-hydra-client/models/accept_o_auth2_consent_request.rb +1 -1
- data/lib/ory-hydra-client/models/accept_o_auth2_consent_request_session.rb +1 -1
- data/lib/ory-hydra-client/models/accept_o_auth2_login_request.rb +12 -2
- data/lib/ory-hydra-client/models/create_json_web_key_set.rb +1 -1
- data/lib/ory-hydra-client/models/create_verifiable_credential_request_body.rb +239 -0
- data/lib/ory-hydra-client/models/credential_supported_draft00.rb +257 -0
- data/lib/ory-hydra-client/models/error_o_auth2.rb +1 -1
- data/lib/ory-hydra-client/models/generic_error.rb +1 -1
- data/lib/ory-hydra-client/models/get_version200_response.rb +1 -1
- data/lib/ory-hydra-client/models/health_not_ready_status.rb +1 -1
- data/lib/ory-hydra-client/models/health_status.rb +1 -1
- data/lib/ory-hydra-client/models/introspected_o_auth2_token.rb +1 -1
- data/lib/ory-hydra-client/models/is_ready200_response.rb +1 -1
- data/lib/ory-hydra-client/models/is_ready503_response.rb +1 -1
- data/lib/ory-hydra-client/models/json_patch.rb +1 -1
- data/lib/ory-hydra-client/models/json_web_key.rb +1 -1
- data/lib/ory-hydra-client/models/json_web_key_set.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_client.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_client_token_lifespans.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_consent_request.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_consent_request_open_id_connect_context.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_consent_session.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_consent_session_expires_at.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_login_request.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_logout_request.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_redirect_to.rb +1 -1
- data/lib/ory-hydra-client/models/o_auth2_token_exchange.rb +1 -1
- data/lib/ory-hydra-client/models/oidc_configuration.rb +24 -2
- data/lib/ory-hydra-client/models/oidc_user_info.rb +1 -1
- data/lib/ory-hydra-client/models/pagination.rb +1 -1
- data/lib/ory-hydra-client/models/pagination_headers.rb +1 -1
- data/lib/ory-hydra-client/models/reject_o_auth2_request.rb +1 -1
- data/lib/ory-hydra-client/models/rfc6749_error_json.rb +255 -0
- data/lib/ory-hydra-client/models/token_pagination.rb +1 -1
- data/lib/ory-hydra-client/models/token_pagination_headers.rb +1 -1
- data/lib/ory-hydra-client/models/token_pagination_request_parameters.rb +1 -1
- data/lib/ory-hydra-client/models/token_pagination_response_headers.rb +1 -1
- data/lib/ory-hydra-client/models/trust_o_auth2_jwt_grant_issuer.rb +1 -1
- data/lib/ory-hydra-client/models/trusted_o_auth2_jwt_grant_issuer.rb +1 -1
- data/lib/ory-hydra-client/models/trusted_o_auth2_jwt_grant_json_web_key.rb +1 -1
- data/lib/ory-hydra-client/models/verifiable_credential_priming_response.rb +282 -0
- data/lib/ory-hydra-client/models/verifiable_credential_proof.rb +228 -0
- data/lib/ory-hydra-client/models/verifiable_credential_response.rb +228 -0
- data/lib/ory-hydra-client/models/version.rb +1 -1
- data/lib/ory-hydra-client/version.rb +2 -2
- data/lib/ory-hydra-client.rb +7 -1
- data/ory-hydra-client.gemspec +1 -1
- data/spec/api/jwk_api_spec.rb +1 -1
- data/spec/api/metadata_api_spec.rb +1 -1
- data/spec/api/o_auth2_api_spec.rb +1 -1
- data/spec/api/oidc_api_spec.rb +13 -1
- data/spec/api/wellknown_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/accept_o_auth2_consent_request_session_spec.rb +1 -1
- data/spec/models/accept_o_auth2_consent_request_spec.rb +1 -1
- data/spec/models/accept_o_auth2_login_request_spec.rb +7 -1
- data/spec/models/create_json_web_key_set_spec.rb +1 -1
- data/spec/models/create_verifiable_credential_request_body_spec.rb +46 -0
- data/spec/models/credential_supported_draft00_spec.rb +52 -0
- data/spec/models/error_o_auth2_spec.rb +1 -1
- data/spec/models/generic_error_spec.rb +1 -1
- data/spec/models/get_version200_response_spec.rb +1 -1
- data/spec/models/health_not_ready_status_spec.rb +1 -1
- data/spec/models/health_status_spec.rb +1 -1
- data/spec/models/introspected_o_auth2_token_spec.rb +1 -1
- data/spec/models/is_ready200_response_spec.rb +1 -1
- data/spec/models/is_ready503_response_spec.rb +1 -1
- data/spec/models/json_patch_spec.rb +1 -1
- data/spec/models/json_web_key_set_spec.rb +1 -1
- data/spec/models/json_web_key_spec.rb +1 -1
- data/spec/models/o_auth2_client_spec.rb +1 -1
- data/spec/models/o_auth2_client_token_lifespans_spec.rb +1 -1
- data/spec/models/o_auth2_consent_request_open_id_connect_context_spec.rb +1 -1
- data/spec/models/o_auth2_consent_request_spec.rb +1 -1
- data/spec/models/o_auth2_consent_session_expires_at_spec.rb +1 -1
- data/spec/models/o_auth2_consent_session_spec.rb +1 -1
- data/spec/models/o_auth2_login_request_spec.rb +1 -1
- data/spec/models/o_auth2_logout_request_spec.rb +1 -1
- data/spec/models/o_auth2_redirect_to_spec.rb +1 -1
- data/spec/models/o_auth2_token_exchange_spec.rb +1 -1
- data/spec/models/oidc_configuration_spec.rb +13 -1
- data/spec/models/oidc_user_info_spec.rb +1 -1
- data/spec/models/pagination_headers_spec.rb +1 -1
- data/spec/models/pagination_spec.rb +1 -1
- data/spec/models/reject_o_auth2_request_spec.rb +1 -1
- data/spec/models/rfc6749_error_json_spec.rb +58 -0
- data/spec/models/token_pagination_headers_spec.rb +1 -1
- data/spec/models/token_pagination_request_parameters_spec.rb +1 -1
- data/spec/models/token_pagination_response_headers_spec.rb +1 -1
- data/spec/models/token_pagination_spec.rb +1 -1
- data/spec/models/trust_o_auth2_jwt_grant_issuer_spec.rb +1 -1
- data/spec/models/trusted_o_auth2_jwt_grant_issuer_spec.rb +1 -1
- data/spec/models/trusted_o_auth2_jwt_grant_json_web_key_spec.rb +1 -1
- data/spec/models/verifiable_credential_priming_response_spec.rb +76 -0
- data/spec/models/verifiable_credential_proof_spec.rb +40 -0
- data/spec/models/verifiable_credential_response_spec.rb +40 -0
- data/spec/models/version_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/bin/racc +27 -0
- data/vendor/bundle/ruby/2.5.0/cache/jaro_winkler-1.5.6.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/parallel-1.23.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/parser-3.2.2.3.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/racc-1.7.1.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-core-3.12.2.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-expectations-3.12.3.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-mocks-3.12.6.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-support-3.12.1.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/stringio-3.0.6.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/byebug-11.1.3/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ffi-1.15.5/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/gem_make.out +6 -6
- data/vendor/bundle/ruby/2.5.0/{gems/jaro_winkler-1.5.4/ext → extensions/x86_64-linux/2.5.0/jaro_winkler-1.5.6}/jaro_winkler/jaro_winkler_ext.so +0 -0
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/psych-4.0.6/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/racc-1.7.1/gem_make.out +17 -0
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/racc-1.7.1/mkmf.log +56 -0
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/racc-1.7.1/racc/cparse.so +0 -0
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/{stringio-3.0.5 → stringio-3.0.6}/gem_make.out +6 -6
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/{stringio-3.0.5 → stringio-3.0.6}/mkmf.log +2 -2
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/stringio-3.0.6/stringio.so +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/byebug-11.1.3/ext/byebug/Makefile +2 -2
- data/vendor/bundle/ruby/2.5.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +2 -2
- data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/Makefile +2 -2
- data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/adj_matrix.o +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/codepoints.o +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/jaro.o +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/jaro_winkler.c +12 -7
- data/vendor/bundle/ruby/2.5.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler/jaro_winkler.o +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4/lib → jaro_winkler-1.5.6/ext}/jaro_winkler/jaro_winkler_ext.so +0 -0
- data/vendor/bundle/ruby/2.5.0/{extensions/x86_64-linux/2.5.0/jaro_winkler-1.5.4 → gems/jaro_winkler-1.5.6/lib}/jaro_winkler/jaro_winkler_ext.so +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/lib/jaro_winkler/version.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/parallel-1.23.0/lib/parallel/version.rb +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/{parallel-1.22.1 → parallel-1.23.0}/lib/parallel.rb +43 -3
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/builders/default.rb +13 -24
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/macruby.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby18.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby19.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby20.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby21.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby22.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby23.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby24.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby25.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby26.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby27.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/parser-3.2.2.3/lib/parser/ruby28.rb +8047 -0
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby30.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby31.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby32.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ruby33.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/rubymotion.rb +3 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/version.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/parser.gemspec +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/psych-4.0.6/ext/psych/Makefile +2 -2
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/COPYING +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/ChangeLog +846 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/README.ja.rdoc +94 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/README.rdoc +79 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/TODO +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/bin/racc +320 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/en/NEWS.en.rdoc +282 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/en/grammar.en.rdoc +226 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/en/grammar2.en.rdoc +219 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/ja/NEWS.ja.rdoc +307 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/ja/command.ja.html +94 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/ja/debug.ja.rdoc +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/ja/grammar.ja.rdoc +348 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/ja/index.ja.html +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/ja/parser.ja.rdoc +125 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/doc/ja/usage.ja.html +414 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/ext/racc/MANIFEST +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/ext/racc/cparse/.sitearchdir.-.racc.time +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/ext/racc/cparse/Makefile +264 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/ext/racc/cparse/cparse.c +861 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/ext/racc/cparse/cparse.o +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/ext/racc/cparse/cparse.so +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/ext/racc/cparse/extconf.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/compat.rb +33 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/cparse.so +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/debugflags.rb +60 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/exception.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/grammar.rb +1114 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/grammarfileparser.rb +561 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/info.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/iset.rb +92 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/logfilegenerator.rb +212 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/parser-text.rb +658 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/parser.rb +632 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/parserfilegenerator.rb +470 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/sourcetext.rb +35 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/state.rb +972 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/statetransitiontable.rb +311 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc/static.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/racc-1.7.1/lib/racc.rb +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/Changelog.md +8 -1
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/project_initializer/spec/spec_helper.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/reporter.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/version.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/Changelog.md +12 -5
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations/version.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/include.rb +9 -2
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/Changelog.md +9 -1
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/method_double.rb +11 -4
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/version.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/Changelog.md +9 -1
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/shell_out.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/version.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support.rb +8 -2
- data/vendor/bundle/ruby/2.5.0/gems/stringio-3.0.6/ext/stringio/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/{stringio-3.0.5 → stringio-3.0.6}/ext/stringio/Makefile +2 -2
- data/vendor/bundle/ruby/2.5.0/gems/{stringio-3.0.5 → stringio-3.0.6}/ext/stringio/stringio.c +6 -11
- data/vendor/bundle/ruby/2.5.0/gems/stringio-3.0.6/ext/stringio/stringio.o +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/stringio-3.0.6/ext/stringio/stringio.so +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/stringio-3.0.6/lib/stringio.so +0 -0
- data/vendor/bundle/ruby/2.5.0/specifications/{jaro_winkler-1.5.4.gemspec → jaro_winkler-1.5.6.gemspec} +7 -9
- data/vendor/bundle/ruby/2.5.0/specifications/{parallel-1.22.1.gemspec → parallel-1.23.0.gemspec} +4 -4
- data/vendor/bundle/ruby/2.5.0/specifications/{parser-3.2.2.0.gemspec → parser-3.2.2.3.gemspec} +7 -7
- data/vendor/bundle/ruby/2.5.0/specifications/racc-1.7.1.gemspec +27 -0
- data/vendor/bundle/ruby/2.5.0/specifications/{rspec-core-3.12.1.gemspec → rspec-core-3.12.2.gemspec} +5 -5
- data/vendor/bundle/ruby/2.5.0/specifications/{rspec-expectations-3.12.2.gemspec → rspec-expectations-3.12.3.gemspec} +5 -5
- data/vendor/bundle/ruby/2.5.0/specifications/{rspec-mocks-3.12.5.gemspec → rspec-mocks-3.12.6.gemspec} +5 -5
- data/vendor/bundle/ruby/2.5.0/specifications/{rspec-support-3.12.0.gemspec → rspec-support-3.12.1.gemspec} +5 -5
- data/vendor/bundle/ruby/2.5.0/specifications/{stringio-3.0.5.gemspec → stringio-3.0.6.gemspec} +3 -3
- metadata +426 -355
- data/vendor/bundle/ruby/2.5.0/cache/jaro_winkler-1.5.4.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/parallel-1.22.1.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/parser-3.2.2.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-core-3.12.1.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-expectations-3.12.2.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-mocks-3.12.5.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-support-3.12.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/stringio-3.0.5.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/stringio-3.0.5/stringio.so +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/jaro_winkler.o +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/parallel-1.22.1/lib/parallel/processor_count.rb +0 -44
- data/vendor/bundle/ruby/2.5.0/gems/parallel-1.22.1/lib/parallel/version.rb +0 -4
- data/vendor/bundle/ruby/2.5.0/gems/stringio-3.0.5/ext/stringio/stringio.o +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/stringio-3.0.5/ext/stringio/stringio.so +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/stringio-3.0.5/lib/stringio.so +0 -0
- /data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/{stringio-3.0.5 → racc-1.7.1}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/2.5.0/{gems/jaro_winkler-1.5.4/ext/jaro_winkler/.sitearchdir.-.jaro_winkler.time → extensions/x86_64-linux/2.5.0/stringio-3.0.6/gem.build_complete} +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{stringio-3.0.5/ext/stringio/.sitearchdir.time → jaro_winkler-1.5.6/ext/jaro_winkler/.sitearchdir.-.jaro_winkler.time} +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/adj_matrix.c +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/adj_matrix.h +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/codepoints.c +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/codepoints.h +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/extconf.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/jaro.c +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/ext/jaro_winkler/jaro.h +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/lib/jaro_winkler/adjusting_table.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/lib/jaro_winkler/jaro_winkler_pure.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{jaro_winkler-1.5.4 → jaro_winkler-1.5.6}/lib/jaro_winkler.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parallel-1.22.1 → parallel-1.23.0}/MIT-LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/bin/ruby-parse +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/bin/ruby-rewrite +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/gauntlet_parser.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/all.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ast/node.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/ast/processor.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/base.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/clobbering_error.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/color.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/context.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/current.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/current_arg_stack.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/deprecation.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/diagnostic/engine.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/diagnostic.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/lexer/dedenter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/lexer/explanation.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/lexer/literal.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/lexer/stack_state.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/lexer-F0.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/lexer-F1.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/lexer-strings.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/max_numparam_stack.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/messages.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/meta.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/rewriter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/runner/ruby_parse.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/runner/ruby_rewrite.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/runner.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/buffer.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/comment/associator.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/comment.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/collection.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/condition.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/constant.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/definition.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/for.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/heredoc.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/index.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/keyword.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/method_definition.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/objc_kwarg.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/operator.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/rescue_body.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/send.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/ternary.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map/variable.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/map.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/range.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/rewriter/action.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/rewriter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/tree_rewriter/action.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/source/tree_rewriter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/static_environment.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/syntax_error.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/tree_rewriter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser/variables_stack.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{parser-3.2.2.0 → parser-3.2.2.3}/lib/parser.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/.document +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/.yardopts +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/README.md +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/exe/rspec +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/autorun.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/backtrace_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/bisect/coordinator.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/bisect/example_minimizer.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/bisect/fork_runner.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/bisect/server.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/bisect/shell_command.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/bisect/shell_runner.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/bisect/utilities.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/configuration.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/configuration_options.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/did_you_mean.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/drb.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/dsl.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/example.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/example_group.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/example_status_persister.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/filter_manager.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/flat_map.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/base_bisect_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/base_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/base_text_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/bisect_drb_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/bisect_progress_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/console_codes.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/deprecation_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/documentation_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/exception_presenter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/failure_list_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/fallback_message_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/helpers.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/html_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/html_printer.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/html_snippet_extractor.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/json_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/profile_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/progress_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/protocol.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/snippet_extractor.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters/syntax_highlighter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/formatters.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/hooks.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/invocations.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/memoized_helpers.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/metadata.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/metadata_filter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/minitest_assertions_adapter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/mocking_adapters/flexmock.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/mocking_adapters/mocha.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/mocking_adapters/null.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/mocking_adapters/rr.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/mocking_adapters/rspec.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/notifications.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/option_parser.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/ordering.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/output_wrapper.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/pending.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/profiler.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/project_initializer/.rspec +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/project_initializer.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/rake_task.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/ruby_project.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/runner.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/sandbox.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/set.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/shared_context.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/shared_example_group.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/shell_escape.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/test_unit_assertions_adapter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/warnings.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core/world.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-core-3.12.1 → rspec-core-3.12.2}/lib/rspec/core.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/.document +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/.yardopts +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/README.md +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations/block_snippet_extractor.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations/configuration.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations/expectation_target.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations/fail_with.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations/failure_aggregator.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations/handler.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations/minitest_integration.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations/syntax.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/expectations.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/aliased_matcher.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/all.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/base_matcher.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/be.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/be_between.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/be_instance_of.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/be_kind_of.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/be_within.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/change.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/compound.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/contain_exactly.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/count_expectation.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/cover.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/eq.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/eql.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/equal.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/exist.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/has.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/have_attributes.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/match.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/operators.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/output.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/raise_error.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/respond_to.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/satisfy.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/start_or_end_with.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/throw_symbol.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in/yield.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/built_in.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/composable.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/dsl.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/english_phrasing.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/fail_matchers.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/generated_descriptions.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/matcher_delegator.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers/matcher_protocol.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-expectations-3.12.2 → rspec-expectations-3.12.3}/lib/rspec/matchers.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/.document +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/.yardopts +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/README.md +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance/chain.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance/error_generator.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance/expect_chain_chain.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance/message_chains.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance/proxy.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance/recorder.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance/stub_chain.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/any_instance.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/argument_list_matcher.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/argument_matchers.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/configuration.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/error_generator.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/example_methods.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/instance_method_stasher.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/marshal_extension.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/matchers/expectation_customization.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/matchers/have_received.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/matchers/receive.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/matchers/receive_message_chain.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/matchers/receive_messages.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/message_chain.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/message_expectation.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/method_reference.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/minitest_integration.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/mutate_const.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/object_reference.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/order_group.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/proxy.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/space.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/standalone.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/syntax.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/targets.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/test_double.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/verifying_double.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/verifying_message_expectation.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks/verifying_proxy.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-mocks-3.12.5 → rspec-mocks-3.12.6}/lib/rspec/mocks.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/README.md +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/caller_filter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/comparable_version.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/differ.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/directory_maker.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/encoded_string.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/fuzzy_matcher.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/hunk_generator.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/matcher_definition.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/method_signature_verifier.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/mutex.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/object_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/recursive_const_methods.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/reentrant_mutex.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/ruby_features.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source/location.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source/node.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source/token.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/deprecation_helpers.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/diff_helpers.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/formatting_support.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/in_sub_process.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/library_wide_checks.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/stderr_splitter.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/string_matcher.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/with_isolated_directory.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/with_isolated_stderr.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/warnings.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/with_keywords_when_needed.rb +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{stringio-3.0.5 → stringio-3.0.6}/README.md +0 -0
- /data/vendor/bundle/ruby/2.5.0/gems/{stringio-3.0.5 → stringio-3.0.6}/ext/stringio/extconf.rb +0 -0
@@ -0,0 +1,282 @@
|
|
1
|
+
= NEWS
|
2
|
+
|
3
|
+
=== 1.4.6
|
4
|
+
|
5
|
+
* Bugfixes
|
6
|
+
|
7
|
+
* bin/racc -g option renamed to -t
|
8
|
+
* racc/compiler.rb is removed
|
9
|
+
* '|' is allowed with meta rules
|
10
|
+
* Ruby 1.8.7 compatibility fixes
|
11
|
+
* Ruby 1.9 compatibility fixes
|
12
|
+
|
13
|
+
=== 1.4.5 (2005-11-21)
|
14
|
+
* [FEATURE CHANGE] --no-extensions option was removed.
|
15
|
+
* [fix] racc command should not depend on `raccrt' package.
|
16
|
+
* [fix] --no-omit-actions did not work.
|
17
|
+
* setup.rb 3.4.1.
|
18
|
+
|
19
|
+
=== 1.4.4 (2003-10-12)
|
20
|
+
* document changed.
|
21
|
+
* -all packages does not include amstd and strscan.
|
22
|
+
* setup.rb 3.2.1.
|
23
|
+
|
24
|
+
=== 1.4.3 (2002-11-14)
|
25
|
+
* [fix] reduce ruby 1.8 warnings.
|
26
|
+
|
27
|
+
=== 1.4.2 (2002-01-29)
|
28
|
+
* [new] new option --no-extentions
|
29
|
+
|
30
|
+
=== 1.4.1 (2001-12-02)
|
31
|
+
* now Racc does not depend on amstd library.
|
32
|
+
* update y2racc and racc2y for racc 1.4.1
|
33
|
+
|
34
|
+
=== 1.4.0 (2001-11-30)
|
35
|
+
* minor version up for checking in runtime library into ruby CVS repositry.
|
36
|
+
* RaccParser, RaccScanner -> GrammarFileParser, GrammarFileScanner
|
37
|
+
* modify typo (grammer -> grammar)
|
38
|
+
|
39
|
+
=== 1.3.12 (2001-11-22)
|
40
|
+
* modify installer bug (thanks Tanaka Akira)
|
41
|
+
* enhance regexp/%-strings/gvar detection in action block
|
42
|
+
|
43
|
+
=== 1.3.11 (2001-08-28)
|
44
|
+
* modify scan error on $' $` $/ etc.
|
45
|
+
|
46
|
+
=== 1.3.10 (2001-08-12)
|
47
|
+
* modify prototype missmatch in cparse.c
|
48
|
+
|
49
|
+
=== 1.3.9 (2001-04-07)
|
50
|
+
* support Ruby 1.4 again.
|
51
|
+
|
52
|
+
=== 1.3.8 (2001-03-17)
|
53
|
+
* output symbol name when error
|
54
|
+
* Racc::Parser#token_to_str
|
55
|
+
|
56
|
+
=== 1.3.7 (2001-02-04)
|
57
|
+
* allow nil for EndOfInput (experimental)
|
58
|
+
* more sample grammar files
|
59
|
+
|
60
|
+
=== 1.3.6 (2001-01-22)
|
61
|
+
* modify cparse.so for static link
|
62
|
+
|
63
|
+
=== 1.3.5 (2001-01-18)
|
64
|
+
* %-string scanning was wrong
|
65
|
+
* new directive "expect"
|
66
|
+
|
67
|
+
=== 1.3.4 (2001-01-11)
|
68
|
+
* cparse: add type checks
|
69
|
+
* cparse: rm depend
|
70
|
+
* cparse: does not pass non-VALUE object to rb_iterate()
|
71
|
+
|
72
|
+
=== 1.3.3 (2000-12-25)
|
73
|
+
* <em>critical bug</em> in generator (from 1.3.1)
|
74
|
+
* racc --runtime-version
|
75
|
+
|
76
|
+
=== 1.3.2 (2000-12-21)
|
77
|
+
* bug with racc -E
|
78
|
+
* package strscan togather (again)
|
79
|
+
|
80
|
+
=== 1.3.1 (2000-12-17)
|
81
|
+
* dynamically determine RE_DUP_MAX
|
82
|
+
* ruby version routine was used always
|
83
|
+
|
84
|
+
=== 1.3.0 (2000-11-30)
|
85
|
+
* can yield(sym,val) from scanner (Parser#yyparse)
|
86
|
+
|
87
|
+
=== 1.2.6 (2000-11-28)
|
88
|
+
* class M::C
|
89
|
+
|
90
|
+
=== 1.2.5 (2000-11-20)
|
91
|
+
* big changes in option; -h -f -p -i -n -c -A are incompatible
|
92
|
+
* support long options
|
93
|
+
* y2racc, racc2y leaves actions as default
|
94
|
+
|
95
|
+
=== 1.2.4 (2000-09-13)
|
96
|
+
* updates installer and documents
|
97
|
+
|
98
|
+
=== 1.2.3 (2000-08-14)
|
99
|
+
* output useless rules and nonterminals (version 2)
|
100
|
+
* nonassoc makes error (never shift/reduce)
|
101
|
+
|
102
|
+
=== 1.2.2 (2000-08-12)
|
103
|
+
* internal changes
|
104
|
+
|
105
|
+
=== 1.2.1 (2000-08-05)
|
106
|
+
* racc2y, y2racc
|
107
|
+
|
108
|
+
=== 1.2.0 (2000-08-02)
|
109
|
+
* uses bison's lookahead algorithm
|
110
|
+
|
111
|
+
=== 1.1.6 (2000-07-25)
|
112
|
+
* new keyword "options" and its parameter "no_result_var"
|
113
|
+
|
114
|
+
=== 1.1.5 (2000-07-21)
|
115
|
+
* [IMPORTANT] change keyword "token" to "convert"
|
116
|
+
* NEW keyword "token" for token declearation
|
117
|
+
|
118
|
+
=== 1.1.4 (2000-07-13)
|
119
|
+
* update installer
|
120
|
+
* samples had bugs
|
121
|
+
|
122
|
+
=== 1.1.3 (2000-06-30)
|
123
|
+
* new option -a; does not omit void action call
|
124
|
+
|
125
|
+
=== 1.1.2 (2000-06-29)
|
126
|
+
* now racc does not use strscan.so
|
127
|
+
* ScanError -> Racc::ScanError, ParseError -> Racc::ParseError
|
128
|
+
* more friendly error messages
|
129
|
+
|
130
|
+
=== 1.1.1 (2000-06-15)
|
131
|
+
* require miss
|
132
|
+
* conflicts were not reported with -v
|
133
|
+
|
134
|
+
=== 1.1.0 (2000-06-12)
|
135
|
+
* use other algolithm for generating state table
|
136
|
+
|
137
|
+
=== 1.0.4 (2000-06-04)
|
138
|
+
* S/R conflict & -v flag causes unexpected exception (reported by Tosh)
|
139
|
+
* output useless nonterminals/rules
|
140
|
+
|
141
|
+
=== 1.0.3 (2000-06-03)
|
142
|
+
* use Array#collect! instead of #filter.
|
143
|
+
|
144
|
+
=== 1.0.2 (2000-05-16)
|
145
|
+
* update installer (setup.rb)
|
146
|
+
|
147
|
+
=== 1.0.1 (2000-05-12)
|
148
|
+
* state.rb: faster lookahead & debug lalr code
|
149
|
+
* refine code
|
150
|
+
* update amstd package (1.7.0)
|
151
|
+
|
152
|
+
=== 1.0.0 (2000-05-06)
|
153
|
+
* version 1.0
|
154
|
+
|
155
|
+
=== 0.14.6 (2000-05-05)
|
156
|
+
* much more debug output
|
157
|
+
|
158
|
+
=== 0.14.5 (2000-05-01)
|
159
|
+
|
160
|
+
=== 0.14.4 (2000-04-09)
|
161
|
+
* Racc_* are included in Racc_arg
|
162
|
+
* faster state generation (a little)
|
163
|
+
|
164
|
+
=== 0.14.3 (2000-04-04)
|
165
|
+
* check both of SYM2ID and ID2SYM (thanks Katsuyuki Komatsu)
|
166
|
+
|
167
|
+
=== 0.14.2 (2000-04-03)
|
168
|
+
* "class" on first line causes parse error (thanks Yoshiki Wada)
|
169
|
+
* new option "racc -V"
|
170
|
+
|
171
|
+
=== 0.14.1 (2000-03-31)
|
172
|
+
|
173
|
+
=== 0.14.0 (2000-03-21)
|
174
|
+
* implement "fast" table (same to bison)
|
175
|
+
* stop line no. conversion temporaliry because of ruby bug
|
176
|
+
|
177
|
+
=== 0.13.1 (2000-03-21)
|
178
|
+
* racc --version --copyright did not work (thanks Tadayoshi Funaba)
|
179
|
+
|
180
|
+
=== 0.13.0 (2000-03-20)
|
181
|
+
* implement yyerror/yyerrok/yyaccept
|
182
|
+
|
183
|
+
=== 0.12.2 (2000-03-19)
|
184
|
+
* -E flag had bug
|
185
|
+
|
186
|
+
=== 0.12.1 (2000-03-16)
|
187
|
+
* modify the way to decide default action
|
188
|
+
|
189
|
+
=== 0.12.0 (2000-03-15)
|
190
|
+
* implement real LALR
|
191
|
+
* use both SLR and LALR to resolve conflicts
|
192
|
+
|
193
|
+
=== 0.11.3 (2000-03-09)
|
194
|
+
* modify lookahead routine again
|
195
|
+
|
196
|
+
=== 0.11.2 (2000-03-09)
|
197
|
+
* bug in lookahead routine
|
198
|
+
* modify cparse.so for Symbol class of ruby 1.5
|
199
|
+
|
200
|
+
=== 0.11.1 (2000-03-08)
|
201
|
+
* modify for Symbol
|
202
|
+
* update strscan
|
203
|
+
|
204
|
+
=== 0.11.0 (2000-02-19)
|
205
|
+
* if error is occured in action, ruby print line number of grammar file
|
206
|
+
|
207
|
+
=== 0.10.9 (2000-01-19)
|
208
|
+
* change package/setup
|
209
|
+
|
210
|
+
=== 0.10.8 (2000-01-03)
|
211
|
+
* (1-17 re-packed) add/modify documents
|
212
|
+
|
213
|
+
=== 0.10.7 (2000-01-03)
|
214
|
+
* modify setup.rb, compile.rb, amstd/inst. (thanks: Koji Arai)
|
215
|
+
|
216
|
+
=== 0.10.6 (1999-12-24)
|
217
|
+
* racc -e ruby
|
218
|
+
* omit void action call
|
219
|
+
|
220
|
+
=== 0.10.5 (1999-12-21)
|
221
|
+
* critical bug in embedded action implement
|
222
|
+
* bug in setup.rb
|
223
|
+
* modify calc[2].y for 0.10
|
224
|
+
|
225
|
+
=== 0.10.4 (1999-12-19)
|
226
|
+
* support error recover ('error' token)
|
227
|
+
* can embed runtime by "racc -E"
|
228
|
+
* Racc is module
|
229
|
+
|
230
|
+
=== 0.10.3 (1999-12-01)
|
231
|
+
* support embedded action
|
232
|
+
* modify .output bug
|
233
|
+
|
234
|
+
=== 0.10.2 (1999-11-27)
|
235
|
+
* update document
|
236
|
+
* separate libracc.rb
|
237
|
+
|
238
|
+
=== 0.10.1 (1999-11-19)
|
239
|
+
* rewrite runtime routine in C
|
240
|
+
* once next_token returns [false, *], not call next_token
|
241
|
+
* action is only default, not call next_token
|
242
|
+
* $end is obsolute
|
243
|
+
* LALRactionTable
|
244
|
+
|
245
|
+
=== 0.10.0 (1999-11-06)
|
246
|
+
* next_value, peep_token is obsolute
|
247
|
+
* @__debug__ -> @yydebug
|
248
|
+
* class...rule...end
|
249
|
+
* refine libracc.rb
|
250
|
+
* unify strscan library
|
251
|
+
* *.rb are installed in lib/ruby/VERSION/racc/
|
252
|
+
|
253
|
+
=== 0.9.5 (1999-10-03)
|
254
|
+
* too few arguments for __show_stack__
|
255
|
+
* could not scan $end
|
256
|
+
* typo in d.format.rb
|
257
|
+
|
258
|
+
=== 0.9.4 (1999-09-??)
|
259
|
+
|
260
|
+
=== 0.9.3 (1999-09-03)
|
261
|
+
|
262
|
+
=== 0.9.2 (1999-06-26)
|
263
|
+
|
264
|
+
=== 0.9.1 (1999-06-08)
|
265
|
+
|
266
|
+
=== 0.9.0 (1999-06-03)
|
267
|
+
|
268
|
+
=== 0.8.11 (?)
|
269
|
+
|
270
|
+
=== 0.8.10 (?)
|
271
|
+
|
272
|
+
=== 0.8.9 (1999-03-21)
|
273
|
+
|
274
|
+
=== 0.8.8 (1999-03-20)
|
275
|
+
|
276
|
+
=== 0.8.7 (1999-03-01)
|
277
|
+
|
278
|
+
=== 0.8.0 (1999-01-16)
|
279
|
+
|
280
|
+
=== 0.5.0 (1999-01-07)
|
281
|
+
|
282
|
+
=== 0.1.0 (1999-01-01)
|
@@ -0,0 +1,226 @@
|
|
1
|
+
= Racc Grammar File Reference
|
2
|
+
|
3
|
+
== Global Structure
|
4
|
+
|
5
|
+
== Class Block and User Code Block
|
6
|
+
|
7
|
+
There are two top-level blocks: the 'class' block, and the 'user code'
|
8
|
+
block. The 'user code' block MUST be after the 'class' block.
|
9
|
+
|
10
|
+
== Comment
|
11
|
+
|
12
|
+
Comments can be added about everywhere. Two comment styles are
|
13
|
+
supported: Ruby style (`# ...`) and C style (`/* ... */`).
|
14
|
+
|
15
|
+
== Class Block
|
16
|
+
|
17
|
+
The class block is formed like this:
|
18
|
+
--
|
19
|
+
class CLASS_NAME
|
20
|
+
[precedence table]
|
21
|
+
[token declarations]
|
22
|
+
[expected number of S/R conflict]
|
23
|
+
[options]
|
24
|
+
[semantic value conversion]
|
25
|
+
[start rule]
|
26
|
+
rule
|
27
|
+
GRAMMARS
|
28
|
+
--
|
29
|
+
CLASS_NAME is a name of parser class.
|
30
|
+
This is the name of generating parser class.
|
31
|
+
|
32
|
+
If CLASS_NAME includes '::', Racc outputs module clause.
|
33
|
+
For example, writing "class M::C" causes creating the code bellow:
|
34
|
+
--
|
35
|
+
module M
|
36
|
+
class C
|
37
|
+
:
|
38
|
+
:
|
39
|
+
end
|
40
|
+
end
|
41
|
+
--
|
42
|
+
|
43
|
+
== Grammar Block
|
44
|
+
|
45
|
+
The grammar block describes the grammar
|
46
|
+
to be understood by parser. Syntax is:
|
47
|
+
--
|
48
|
+
(token): (token) (token) (token).... (action)
|
49
|
+
|
50
|
+
(token): (token) (token) (token).... (action)
|
51
|
+
| (token) (token) (token).... (action)
|
52
|
+
| (token) (token) (token).... (action)
|
53
|
+
--
|
54
|
+
(action) is an action which is executed when its (token)s are found.
|
55
|
+
(action) is a ruby code block, which is surrounded by braces:
|
56
|
+
--
|
57
|
+
{ print val[0]
|
58
|
+
puts val[1] }
|
59
|
+
--
|
60
|
+
Note that you cannot use '%' string, here document, '%r' regexp in action.
|
61
|
+
|
62
|
+
Actions can be omitted.
|
63
|
+
When it is omitted, '' (empty string) is used.
|
64
|
+
|
65
|
+
A return value of action is a value of left side value ($$).
|
66
|
+
It is value of result, or returned value by "return" statement.
|
67
|
+
|
68
|
+
Here is an example of whole grammar block.
|
69
|
+
--
|
70
|
+
rule
|
71
|
+
goal: definition rules source { result = val }
|
72
|
+
|
73
|
+
definition: /* none */ { result = [] }
|
74
|
+
| definition startdesig { result[0] = val[1] }
|
75
|
+
| definition
|
76
|
+
precrule # this line continue from upper line
|
77
|
+
{
|
78
|
+
result[1] = val[1]
|
79
|
+
}
|
80
|
+
|
81
|
+
startdesig: START TOKEN
|
82
|
+
--
|
83
|
+
You can use following special local variables in action.
|
84
|
+
|
85
|
+
* result ($$)
|
86
|
+
|
87
|
+
The value of left-hand side (lhs). A default value is val[0].
|
88
|
+
|
89
|
+
* val ($1,$2,$3...)
|
90
|
+
|
91
|
+
An array of value of right-hand side (rhs).
|
92
|
+
|
93
|
+
* _values (...$-2,$-1,$0)
|
94
|
+
|
95
|
+
A stack of values.
|
96
|
+
DO NOT MODIFY this stack unless you know what you are doing.
|
97
|
+
|
98
|
+
== Operator Precedence
|
99
|
+
|
100
|
+
This function is equal to '%prec' in yacc.
|
101
|
+
To designate this block:
|
102
|
+
--
|
103
|
+
prechigh
|
104
|
+
nonassoc '++'
|
105
|
+
left '*' '/'
|
106
|
+
left '+' '-'
|
107
|
+
right '='
|
108
|
+
preclow
|
109
|
+
--
|
110
|
+
`right' is yacc's %right, `left' is yacc's %left.
|
111
|
+
|
112
|
+
`=' + (symbol) means yacc's %prec:
|
113
|
+
--
|
114
|
+
prechigh
|
115
|
+
nonassoc UMINUS
|
116
|
+
left '*' '/'
|
117
|
+
left '+' '-'
|
118
|
+
preclow
|
119
|
+
|
120
|
+
rule
|
121
|
+
exp: exp '*' exp
|
122
|
+
| exp '-' exp
|
123
|
+
| '-' exp =UMINUS # equals to "%prec UMINUS"
|
124
|
+
:
|
125
|
+
:
|
126
|
+
--
|
127
|
+
|
128
|
+
== expect
|
129
|
+
|
130
|
+
Racc supports Bison's "expect" directive to declare the expected
|
131
|
+
number of shift/reduce conflicts.
|
132
|
+
--
|
133
|
+
class MyParser
|
134
|
+
rule
|
135
|
+
expect 3
|
136
|
+
:
|
137
|
+
:
|
138
|
+
--
|
139
|
+
Then warnings are issued only when the effective number of conflicts differs.
|
140
|
+
|
141
|
+
|
142
|
+
== Declaring Tokens
|
143
|
+
|
144
|
+
Declaring tokens avoids many bugs.
|
145
|
+
|
146
|
+
Racc outputs warnings for declared tokens that do not exist, or existing tokens not declared.
|
147
|
+
The syntax is:
|
148
|
+
--
|
149
|
+
token TOKEN_NAME AND_IS_THIS
|
150
|
+
ALSO_THIS_IS AGAIN_AND_AGAIN THIS_IS_LAST
|
151
|
+
--
|
152
|
+
|
153
|
+
== Options
|
154
|
+
|
155
|
+
You can write options for racc command in your racc file.
|
156
|
+
--
|
157
|
+
options OPTION OPTION ...
|
158
|
+
--
|
159
|
+
Options are:
|
160
|
+
|
161
|
+
* omit_action_call
|
162
|
+
|
163
|
+
omit empty action call or not.
|
164
|
+
|
165
|
+
* result_var
|
166
|
+
|
167
|
+
use/does not use local variable "result"
|
168
|
+
|
169
|
+
You can use 'no_' prefix to invert its meanings.
|
170
|
+
|
171
|
+
== Converting Token Symbol
|
172
|
+
|
173
|
+
Token symbols are, as default,
|
174
|
+
|
175
|
+
* naked token strings in racc file (TOK, XFILE, this_is_token, ...)
|
176
|
+
--> symbol (:TOK, :XFILE, :this_is_token, ...)
|
177
|
+
* quoted strings (':', '.', '(', ...)
|
178
|
+
--> same string (':', '.', '(', ...)
|
179
|
+
|
180
|
+
You can change this default using a "convert" block.
|
181
|
+
Here is an example:
|
182
|
+
--
|
183
|
+
convert
|
184
|
+
PLUS 'PlusClass' # We use PlusClass for symbol of `PLUS'
|
185
|
+
MIN 'MinusClass' # We use MinusClass for symbol of `MIN'
|
186
|
+
end
|
187
|
+
--
|
188
|
+
We can use almost all ruby value can be used by token symbol,
|
189
|
+
except 'false' and 'nil'. These are causes unexpected parse error.
|
190
|
+
|
191
|
+
If you want to use String as token symbol, special care is required.
|
192
|
+
For example:
|
193
|
+
--
|
194
|
+
convert
|
195
|
+
class '"cls"' # in code, "cls"
|
196
|
+
PLUS '"plus\n"' # in code, "plus\n"
|
197
|
+
MIN "\"minus#{val}\"" # in code, \"minus#{val}\"
|
198
|
+
end
|
199
|
+
--
|
200
|
+
|
201
|
+
== Start Rule
|
202
|
+
|
203
|
+
'%start' in yacc. This changes the start symbol.
|
204
|
+
--
|
205
|
+
start real_target
|
206
|
+
--
|
207
|
+
|
208
|
+
|
209
|
+
== User Code Block
|
210
|
+
|
211
|
+
A "User Code Block" is a piece of Ruby source code copied in the output.
|
212
|
+
There are three user code blocks, "header" "inner" and "footer".
|
213
|
+
|
214
|
+
User code blocks are introduced by four '-' at the beginning of a line,
|
215
|
+
followed by a single-word name:
|
216
|
+
--
|
217
|
+
---- header
|
218
|
+
ruby statement
|
219
|
+
ruby statement
|
220
|
+
ruby statement
|
221
|
+
|
222
|
+
---- inner
|
223
|
+
ruby statement
|
224
|
+
:
|
225
|
+
:
|
226
|
+
--
|
@@ -0,0 +1,219 @@
|
|
1
|
+
= Racc Grammar File Reference
|
2
|
+
|
3
|
+
== Global Structure
|
4
|
+
|
5
|
+
== Class Block and User Code Block
|
6
|
+
|
7
|
+
There are two blocks on the toplevel. One is the 'class' block, the other is the 'user code'
|
8
|
+
block. The 'user code' block MUST be placed after the 'class' block.
|
9
|
+
|
10
|
+
== Comments
|
11
|
+
|
12
|
+
You can insert comments about all places. Two styles of comments can be used, Ruby style '#.....' and C style '/\*......*\/'.
|
13
|
+
|
14
|
+
== Class Block
|
15
|
+
|
16
|
+
The class block is formed like this:
|
17
|
+
|
18
|
+
class CLASS_NAME
|
19
|
+
[precedence table]
|
20
|
+
[token declarations]
|
21
|
+
[expected number of S/R conflicts]
|
22
|
+
[options]
|
23
|
+
[semantic value conversion]
|
24
|
+
[start rule]
|
25
|
+
rule
|
26
|
+
GRAMMARS
|
27
|
+
|
28
|
+
CLASS_NAME is a name of the parser class. This is the name of the generating parser
|
29
|
+
class.
|
30
|
+
|
31
|
+
If CLASS_NAME includes '::', Racc outputs the module clause. For example, writing
|
32
|
+
"class M::C" causes the code below to be created:
|
33
|
+
|
34
|
+
module M
|
35
|
+
class C
|
36
|
+
:
|
37
|
+
:
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
== Grammar Block
|
42
|
+
|
43
|
+
The grammar block describes grammar which is able to be understood by the parser.
|
44
|
+
Syntax is:
|
45
|
+
|
46
|
+
(token): (token) (token) (token).... (action)
|
47
|
+
|
48
|
+
(token): (token) (token) (token).... (action)
|
49
|
+
| (token) (token) (token).... (action)
|
50
|
+
| (token) (token) (token).... (action)
|
51
|
+
|
52
|
+
(action) is an action which is executed when its (token)s are found.
|
53
|
+
(action) is a ruby code block, which is surrounded by braces:
|
54
|
+
|
55
|
+
{ print val[0]
|
56
|
+
puts val[1] }
|
57
|
+
|
58
|
+
Note that you cannot use '%' string, here document, '%r' regexp in action.
|
59
|
+
|
60
|
+
Actions can be omitted. When it is omitted, '' (empty string) is used.
|
61
|
+
|
62
|
+
A return value of action is a value of the left side value ($$). It is the value of the
|
63
|
+
result, or the returned value by `return` statement.
|
64
|
+
|
65
|
+
Here is an example of the whole grammar block.
|
66
|
+
|
67
|
+
rule
|
68
|
+
goal: definition rules source { result = val }
|
69
|
+
|
70
|
+
definition: /* none */ { result = [] }
|
71
|
+
| definition startdesig { result[0] = val[1] }
|
72
|
+
| definition
|
73
|
+
precrule # this line continues from upper line
|
74
|
+
{
|
75
|
+
result[1] = val[1]
|
76
|
+
}
|
77
|
+
|
78
|
+
startdesig: START TOKEN
|
79
|
+
|
80
|
+
You can use the following special local variables in action:
|
81
|
+
|
82
|
+
* result ($$)
|
83
|
+
|
84
|
+
The value of the left-hand side (lhs). A default value is val[0].
|
85
|
+
|
86
|
+
* val ($1,$2,$3...)
|
87
|
+
|
88
|
+
An array of value of the right-hand side (rhs).
|
89
|
+
|
90
|
+
* _values (...$-2,$-1,$0)
|
91
|
+
|
92
|
+
A stack of values. DO NOT MODIFY this stack unless you know what you are doing.
|
93
|
+
|
94
|
+
== Operator Precedence
|
95
|
+
|
96
|
+
This function is equal to '%prec' in yacc.
|
97
|
+
To designate this block:
|
98
|
+
|
99
|
+
prechigh
|
100
|
+
nonassoc '++'
|
101
|
+
left '*' '/'
|
102
|
+
left '+' '-'
|
103
|
+
right '='
|
104
|
+
preclow
|
105
|
+
|
106
|
+
`right` is yacc's %right, `left` is yacc's %left.
|
107
|
+
|
108
|
+
`=` + (symbol) means yacc's %prec:
|
109
|
+
|
110
|
+
prechigh
|
111
|
+
nonassoc UMINUS
|
112
|
+
left '*' '/'
|
113
|
+
left '+' '-'
|
114
|
+
preclow
|
115
|
+
|
116
|
+
rule
|
117
|
+
exp: exp '*' exp
|
118
|
+
| exp '-' exp
|
119
|
+
| '-' exp =UMINUS # equals to "%prec UMINUS"
|
120
|
+
:
|
121
|
+
:
|
122
|
+
|
123
|
+
== expect
|
124
|
+
|
125
|
+
Racc has bison's "expect" directive.
|
126
|
+
|
127
|
+
# Example
|
128
|
+
|
129
|
+
class MyParser
|
130
|
+
rule
|
131
|
+
expect 3
|
132
|
+
:
|
133
|
+
:
|
134
|
+
|
135
|
+
This directive declares "expected" number of shift/reduce conflicts. If
|
136
|
+
"expected" number is equal to real number of conflicts, Racc does not print
|
137
|
+
conflict warning message.
|
138
|
+
|
139
|
+
== Declaring Tokens
|
140
|
+
|
141
|
+
By declaring tokens, you can avoid many meaningless bugs. If declared token
|
142
|
+
does not exist or existing token does not decleared, Racc output warnings.
|
143
|
+
Declaration syntax is:
|
144
|
+
|
145
|
+
token TOKEN_NAME AND_IS_THIS
|
146
|
+
ALSO_THIS_IS AGAIN_AND_AGAIN THIS_IS_LAST
|
147
|
+
|
148
|
+
== Options
|
149
|
+
|
150
|
+
You can write options for Racc command in your Racc file.
|
151
|
+
|
152
|
+
options OPTION OPTION ...
|
153
|
+
|
154
|
+
Options are:
|
155
|
+
|
156
|
+
* omit_action_call
|
157
|
+
|
158
|
+
omits empty action call or not.
|
159
|
+
|
160
|
+
* result_var
|
161
|
+
|
162
|
+
uses local variable "result" or not.
|
163
|
+
|
164
|
+
You can use 'no_' prefix to invert their meanings.
|
165
|
+
|
166
|
+
== Converting Token Symbol
|
167
|
+
|
168
|
+
Token symbols are, as default,
|
169
|
+
|
170
|
+
* naked token string in Racc file (TOK, XFILE, this_is_token, ...)
|
171
|
+
--> symbol (:TOK, :XFILE, :this_is_token, ...)
|
172
|
+
* quoted string (':', '.', '(', ...)
|
173
|
+
--> same string (':', '.', '(', ...)
|
174
|
+
|
175
|
+
You can change this default by "convert" block.
|
176
|
+
Here is an example:
|
177
|
+
|
178
|
+
convert
|
179
|
+
PLUS 'PlusClass' # We use PlusClass for symbol of `PLUS'
|
180
|
+
MIN 'MinusClass' # We use MinusClass for symbol of `MIN'
|
181
|
+
end
|
182
|
+
|
183
|
+
We can use almost all ruby value can be used by token symbol,
|
184
|
+
except 'false' and 'nil'. These cause unexpected parse error.
|
185
|
+
|
186
|
+
If you want to use String as token symbol, special care is required.
|
187
|
+
For example:
|
188
|
+
|
189
|
+
convert
|
190
|
+
class '"cls"' # in code, "cls"
|
191
|
+
PLUS '"plus\n"' # in code, "plus\n"
|
192
|
+
MIN "\"minus#{val}\"" # in code, \"minus#{val}\"
|
193
|
+
end
|
194
|
+
|
195
|
+
== Start Rule
|
196
|
+
|
197
|
+
'%start' in yacc. This changes start rule.
|
198
|
+
|
199
|
+
start real_target
|
200
|
+
|
201
|
+
== User Code Block
|
202
|
+
|
203
|
+
"User Code Block" is a Ruby source code which is copied to output. There are
|
204
|
+
three user code blocks, "header" "inner" and "footer".
|
205
|
+
|
206
|
+
Format of user code is like this:
|
207
|
+
|
208
|
+
---- header
|
209
|
+
ruby statement
|
210
|
+
ruby statement
|
211
|
+
ruby statement
|
212
|
+
|
213
|
+
---- inner
|
214
|
+
ruby statement
|
215
|
+
:
|
216
|
+
:
|
217
|
+
|
218
|
+
If four '-' exist on the line head, Racc treats it as the beginning of the
|
219
|
+
user code block. The name of the user code block must be one word.
|