├── .document ├── .gitignore ├── .hound.yml ├── .rspec ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── blockscore.gemspec ├── circle.yml ├── circleci.sh ├── config ├── devtools.yml ├── flay.yml ├── flog.yml ├── mutant.yml ├── reek.yml ├── rubocop.yml └── yardstick.yml ├── contributing.json ├── example.env ├── lib ├── blockscore.rb └── blockscore │ ├── actions │ ├── all.rb │ ├── create.rb │ ├── delete.rb │ ├── retrieve.rb │ ├── update.rb │ └── write_once.rb │ ├── base.rb │ ├── candidate.rb │ ├── collection.rb │ ├── collection │ └── member.rb │ ├── company.rb │ ├── connection.rb │ ├── dispatch.rb │ ├── errors │ ├── api_connection_error.rb │ ├── api_error.rb │ ├── authentication_error.rb │ ├── error.rb │ ├── invalid_request_error.rb │ ├── no_api_key_error.rb │ └── not_found_error.rb │ ├── fingerprint.rb │ ├── person.rb │ ├── question_set.rb │ ├── response.rb │ ├── util.rb │ ├── version.rb │ └── watchlist_hit.rb └── spec ├── cassettes ├── BlockScore_Actions_All │ └── _all │ │ ├── 1_1_1.yml │ │ ├── 1_1_2.yml │ │ ├── 1_1_3.yml │ │ ├── invalid_comparison_operator │ │ └── returns_an_error_if_comparison_operator_not_in_allowed_list.yml │ │ └── invalid_filter_parameter │ │ └── returns_an_error_if_filter_parameter_not_in_list.yml ├── BlockScore_Actions_Create │ └── _create │ │ ├── 1_1_1.yml │ │ └── 1_1_2.yml ├── BlockScore_Actions_Delete │ ├── _delete │ │ ├── deleted_ │ │ │ └── 1_1_2_1.yml │ │ ├── persisted_ │ │ │ └── 1_1_1_1.yml │ │ └── previously_deleted │ │ │ └── was_already_deleted.yml │ └── _delete_ │ │ ├── 1_3_1.yml │ │ ├── deleted_ │ │ └── 1_2_2_1.yml │ │ ├── persisted_ │ │ └── 1_2_1_1.yml │ │ └── previously_deleted │ │ └── was_already_deleted.yml ├── BlockScore_Actions_Retrieve │ └── _retrieve │ │ ├── 1_1_1.yml │ │ ├── 1_1_3.yml │ │ └── name_first │ │ └── 1_1_2_1.yml ├── BlockScore_Actions_Update │ └── _save_ │ │ └── when_changing_first_update_candidate │ │ └── has_the_same_attributes.yml ├── BlockScore_Actions_WriteOnce │ ├── _save_ │ │ ├── when_creating_a_new_person │ │ │ ├── 1_1_1_1.yml │ │ │ └── name_first │ │ │ │ └── 1_1_1_2_1.yml │ │ └── when_updating_an_existing_person │ │ │ └── prevents_saving.yml │ └── object_is_immutable │ │ └── prevents_alteration.yml ├── BlockScore_Base │ ├── _attributes │ │ ├── name_first │ │ │ └── 1_4_1_1.yml │ │ └── retrieves_the_attributes.yml │ ├── _capture_attributes │ │ └── captures_the_attributes_from_a_http_response.yml │ ├── _deleted_ │ │ └── reflects_deleted_.yml │ ├── _id │ │ └── id │ │ │ └── 1_7_1_1.yml │ ├── _initialize │ │ ├── loads_the_block.yml │ │ └── name_first │ │ │ └── 1_5_1_1.yml │ ├── _inspect │ │ ├── 1_9_1.yml │ │ └── 1_9_2.yml │ ├── _save │ │ ├── when_creating_a_new_candidate │ │ │ ├── name_first │ │ │ │ └── 1_1_1_2_1.yml │ │ │ └── persisted_ │ │ │ │ └── 1_1_1_1_1.yml │ │ ├── when_encountering_a_deleted_item │ │ │ └── is_false_when_previously_deleted.yml │ │ └── when_updating_an_existing_candidate │ │ │ ├── name_first │ │ │ └── 1_1_2_2_1.yml │ │ │ └── persisted_ │ │ │ └── 1_1_2_1_1.yml │ ├── _save_ │ │ ├── when_encountering_a_deleted_item │ │ │ └── raises_an_error_when_previously_deleted.yml │ │ └── when_updating_an_new_candidate │ │ │ └── successfully_saves_an_alteration.yml │ └── _wrap_hash │ │ └── details │ │ └── 1_8_1_1.yml ├── BlockScore_Candidate │ ├── _create │ │ ├── 1_2_2.yml │ │ └── persisted_ │ │ │ └── 1_2_1_1.yml │ ├── _history │ │ ├── 1_4_1.yml │ │ ├── 1_4_2.yml │ │ ├── 1_4_3.yml │ │ └── 1_4_4.yml │ ├── _hits │ │ ├── hits │ │ │ └── 1_5_1_1.yml │ │ └── returns_a_watchlist_hit.yml │ ├── _save │ │ └── when_iteratively_updating_an_existing_candidate │ │ │ ├── name_first │ │ │ └── 1_3_1_2_1.yml │ │ │ ├── name_middle │ │ │ └── 1_3_1_3_1.yml │ │ │ └── persisted_ │ │ │ └── 1_3_1_1_1.yml │ └── _search │ │ ├── 1_6_1.yml │ │ ├── 1_6_2.yml │ │ ├── cannot_search_on_unsaved_candidate │ │ └── is_an_invalid_request.yml │ │ ├── has_a_good_confidence.yml │ │ ├── proof_of_similarity_filtering │ │ └── 1_6_8_1.yml │ │ ├── proof_of_similarity_filtering_rejected_and_accepted_ │ │ └── 1_6_9_1.yml │ │ ├── proof_of_similarity_filtering_with_match_on_company │ │ └── 1_6_10_1.yml │ │ ├── search_by_company │ │ └── 1_6_5_1.yml │ │ ├── search_empty_candidate_with_similarity │ │ └── 1_6_7_1.yml │ │ └── search_with_similarity │ │ ├── 1_6_6_1.yml │ │ ├── 1_6_6_2.yml │ │ └── has_a_good_confidence.yml ├── BlockScore_Collection │ ├── 1_1.yml │ ├── 1_2.yml │ ├── _all │ │ ├── 1_3_1.yml │ │ └── 1_3_2.yml │ ├── _create │ │ ├── 1_6_1.yml │ │ ├── 1_6_3.yml │ │ └── count │ │ │ └── 1_6_2_1.yml │ ├── _new │ │ ├── 1_4_1.yml │ │ ├── 1_4_3.yml │ │ └── count │ │ │ └── 1_4_2_1.yml │ ├── _refresh │ │ ├── 1_5_1.yml │ │ └── 1_5_2.yml │ └── _retrieve │ │ └── is_the_proper_class.yml ├── BlockScore_Collection_Member │ └── _save │ │ ├── previously_saved_person │ │ └── contains_the_proper_fields.yml │ │ └── unsaved_person │ │ └── saves_the_person_as_part_of_member_save.yml ├── BlockScore_Company │ └── _create │ │ ├── invalid_company │ │ ├── 1_2_2_1.yml │ │ └── 1_2_2_2.yml │ │ └── valid_company │ │ ├── 1_2_1_1.yml │ │ └── 1_2_1_2.yml ├── BlockScore_InvalidRequestError │ └── behaves_like_an_error │ │ └── 1_1_1.yml ├── BlockScore_NotFoundError │ └── behaves_like_an_error │ │ └── 1_1_1.yml ├── BlockScore_Person │ ├── _create │ │ ├── invalid_person │ │ │ ├── 1_2_2_1.yml │ │ │ └── 1_2_2_2.yml │ │ └── valid_person │ │ │ ├── 1_2_1_1.yml │ │ │ └── 1_2_1_2.yml │ ├── _invalid_ │ │ ├── invalid_person │ │ │ ├── 1_4_2_1.yml │ │ │ ├── 1_4_2_2.yml │ │ │ └── 1_4_2_3.yml │ │ └── valid_person │ │ │ ├── 1_4_1_1.yml │ │ │ ├── 1_4_1_2.yml │ │ │ └── 1_4_1_3.yml │ └── _valid_ │ │ ├── invalid_person │ │ ├── 1_3_2_1.yml │ │ ├── 1_3_2_2.yml │ │ └── 1_3_2_3.yml │ │ └── valid_person │ │ ├── 1_3_1_1.yml │ │ ├── 1_3_1_2.yml │ │ └── 1_3_1_3.yml └── BlockScore_QuestionSet │ ├── _create │ ├── invalid_person │ │ └── is_an_invalid_request.yml │ └── valid_person │ │ ├── 1_2_1_1.yml │ │ └── 1_2_1_2.yml │ └── _score │ ├── correct_answers │ └── 1_3_1_1.yml │ ├── incorrect_answers │ └── 1_3_2_1.yml │ ├── malformed_answers │ └── raises_an_error_when_answers_are_not_an_array_of_hashes.yml │ ├── previous_answers │ └── 1_3_4_1.yml │ └── previously_no_answers │ └── 1_3_5_1.yml ├── factories ├── candidates.rb ├── companies.rb ├── people.rb └── question_sets.rb ├── spec.rb ├── spec_helper.rb ├── support ├── api_request_behavior.rb ├── error_behavior.rb ├── included_class_methods.rb ├── question_set_helper.rb └── vcr_helper.rb ├── unit └── block_score │ ├── actions │ ├── all_spec.rb │ ├── create_spec.rb │ ├── delete_spec.rb │ ├── retrieve_spec.rb │ ├── update_spec.rb │ └── write_once_spec.rb │ ├── api_connection_error_spec.rb │ ├── base_spec.rb │ ├── candidate_spec.rb │ ├── collection │ └── member_spec.rb │ ├── collection_spec.rb │ ├── company_spec.rb │ ├── connection_spec.rb │ ├── invalid_request_error_spec.rb │ ├── not_found_error_spec.rb │ ├── person_spec.rb │ ├── question_set_spec.rb │ └── util_spec.rb └── vcr_setup.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | .rubocop.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/.rspec -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /blockscore.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/blockscore.gemspec -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/circle.yml -------------------------------------------------------------------------------- /circleci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/circleci.sh -------------------------------------------------------------------------------- /config/devtools.yml: -------------------------------------------------------------------------------- 1 | --- 2 | unit_test_timeout: 3.0 3 | -------------------------------------------------------------------------------- /config/flay.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 16 3 | total_score: 187 4 | -------------------------------------------------------------------------------- /config/flog.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 28.8 3 | -------------------------------------------------------------------------------- /config/mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/config/mutant.yml -------------------------------------------------------------------------------- /config/reek.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/config/reek.yml -------------------------------------------------------------------------------- /config/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/config/rubocop.yml -------------------------------------------------------------------------------- /config/yardstick.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 100 3 | -------------------------------------------------------------------------------- /contributing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/contributing.json -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- 1 | # https://manage.blockscore.com/api_keys 2 | export BLOCKSCORE_TEST_KEY= 3 | -------------------------------------------------------------------------------- /lib/blockscore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore.rb -------------------------------------------------------------------------------- /lib/blockscore/actions/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/actions/all.rb -------------------------------------------------------------------------------- /lib/blockscore/actions/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/actions/create.rb -------------------------------------------------------------------------------- /lib/blockscore/actions/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/actions/delete.rb -------------------------------------------------------------------------------- /lib/blockscore/actions/retrieve.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/actions/retrieve.rb -------------------------------------------------------------------------------- /lib/blockscore/actions/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/actions/update.rb -------------------------------------------------------------------------------- /lib/blockscore/actions/write_once.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/actions/write_once.rb -------------------------------------------------------------------------------- /lib/blockscore/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/base.rb -------------------------------------------------------------------------------- /lib/blockscore/candidate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/candidate.rb -------------------------------------------------------------------------------- /lib/blockscore/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/collection.rb -------------------------------------------------------------------------------- /lib/blockscore/collection/member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/collection/member.rb -------------------------------------------------------------------------------- /lib/blockscore/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/company.rb -------------------------------------------------------------------------------- /lib/blockscore/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/connection.rb -------------------------------------------------------------------------------- /lib/blockscore/dispatch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/dispatch.rb -------------------------------------------------------------------------------- /lib/blockscore/errors/api_connection_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/errors/api_connection_error.rb -------------------------------------------------------------------------------- /lib/blockscore/errors/api_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/errors/api_error.rb -------------------------------------------------------------------------------- /lib/blockscore/errors/authentication_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/errors/authentication_error.rb -------------------------------------------------------------------------------- /lib/blockscore/errors/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/errors/error.rb -------------------------------------------------------------------------------- /lib/blockscore/errors/invalid_request_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/errors/invalid_request_error.rb -------------------------------------------------------------------------------- /lib/blockscore/errors/no_api_key_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/errors/no_api_key_error.rb -------------------------------------------------------------------------------- /lib/blockscore/errors/not_found_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/errors/not_found_error.rb -------------------------------------------------------------------------------- /lib/blockscore/fingerprint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/fingerprint.rb -------------------------------------------------------------------------------- /lib/blockscore/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/person.rb -------------------------------------------------------------------------------- /lib/blockscore/question_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/question_set.rb -------------------------------------------------------------------------------- /lib/blockscore/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/response.rb -------------------------------------------------------------------------------- /lib/blockscore/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/util.rb -------------------------------------------------------------------------------- /lib/blockscore/version.rb: -------------------------------------------------------------------------------- 1 | module BlockScore 2 | VERSION = '4.2.1'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/blockscore/watchlist_hit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/lib/blockscore/watchlist_hit.rb -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_All/_all/1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_All/_all/1_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_All/_all/1_1_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_All/_all/1_1_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_All/_all/1_1_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_All/_all/1_1_3.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_All/_all/invalid_comparison_operator/returns_an_error_if_comparison_operator_not_in_allowed_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_All/_all/invalid_comparison_operator/returns_an_error_if_comparison_operator_not_in_allowed_list.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_All/_all/invalid_filter_parameter/returns_an_error_if_filter_parameter_not_in_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_All/_all/invalid_filter_parameter/returns_an_error_if_filter_parameter_not_in_list.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Create/_create/1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Create/_create/1_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Create/_create/1_1_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Create/_create/1_1_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Delete/_delete/deleted_/1_1_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Delete/_delete/deleted_/1_1_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Delete/_delete/persisted_/1_1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Delete/_delete/persisted_/1_1_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Delete/_delete/previously_deleted/was_already_deleted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Delete/_delete/previously_deleted/was_already_deleted.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Delete/_delete_/1_3_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Delete/_delete_/1_3_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Delete/_delete_/deleted_/1_2_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Delete/_delete_/deleted_/1_2_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Delete/_delete_/persisted_/1_2_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Delete/_delete_/persisted_/1_2_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Delete/_delete_/previously_deleted/was_already_deleted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Delete/_delete_/previously_deleted/was_already_deleted.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Retrieve/_retrieve/1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Retrieve/_retrieve/1_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Retrieve/_retrieve/1_1_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Retrieve/_retrieve/1_1_3.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Retrieve/_retrieve/name_first/1_1_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Retrieve/_retrieve/name_first/1_1_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_Update/_save_/when_changing_first_update_candidate/has_the_same_attributes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_Update/_save_/when_changing_first_update_candidate/has_the_same_attributes.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_WriteOnce/_save_/when_creating_a_new_person/1_1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_WriteOnce/_save_/when_creating_a_new_person/1_1_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_WriteOnce/_save_/when_creating_a_new_person/name_first/1_1_1_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_WriteOnce/_save_/when_creating_a_new_person/name_first/1_1_1_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_WriteOnce/_save_/when_updating_an_existing_person/prevents_saving.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_WriteOnce/_save_/when_updating_an_existing_person/prevents_saving.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Actions_WriteOnce/object_is_immutable/prevents_alteration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Actions_WriteOnce/object_is_immutable/prevents_alteration.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_attributes/name_first/1_4_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_attributes/name_first/1_4_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_attributes/retrieves_the_attributes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_attributes/retrieves_the_attributes.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_capture_attributes/captures_the_attributes_from_a_http_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_capture_attributes/captures_the_attributes_from_a_http_response.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_deleted_/reflects_deleted_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_deleted_/reflects_deleted_.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_id/id/1_7_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_id/id/1_7_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_initialize/loads_the_block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_initialize/loads_the_block.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_initialize/name_first/1_5_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_initialize/name_first/1_5_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_inspect/1_9_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_inspect/1_9_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_inspect/1_9_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_inspect/1_9_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_save/when_creating_a_new_candidate/name_first/1_1_1_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_save/when_creating_a_new_candidate/name_first/1_1_1_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_save/when_creating_a_new_candidate/persisted_/1_1_1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_save/when_creating_a_new_candidate/persisted_/1_1_1_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_save/when_encountering_a_deleted_item/is_false_when_previously_deleted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_save/when_encountering_a_deleted_item/is_false_when_previously_deleted.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_save/when_updating_an_existing_candidate/name_first/1_1_2_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_save/when_updating_an_existing_candidate/name_first/1_1_2_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_save/when_updating_an_existing_candidate/persisted_/1_1_2_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_save/when_updating_an_existing_candidate/persisted_/1_1_2_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_save_/when_encountering_a_deleted_item/raises_an_error_when_previously_deleted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_save_/when_encountering_a_deleted_item/raises_an_error_when_previously_deleted.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_save_/when_updating_an_new_candidate/successfully_saves_an_alteration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_save_/when_updating_an_new_candidate/successfully_saves_an_alteration.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Base/_wrap_hash/details/1_8_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Base/_wrap_hash/details/1_8_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_create/1_2_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_create/1_2_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_create/persisted_/1_2_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_create/persisted_/1_2_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_history/1_4_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_history/1_4_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_history/1_4_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_history/1_4_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_history/1_4_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_history/1_4_3.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_history/1_4_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_history/1_4_4.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_hits/hits/1_5_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_hits/hits/1_5_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_hits/returns_a_watchlist_hit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_hits/returns_a_watchlist_hit.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_save/when_iteratively_updating_an_existing_candidate/name_first/1_3_1_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_save/when_iteratively_updating_an_existing_candidate/name_first/1_3_1_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_save/when_iteratively_updating_an_existing_candidate/name_middle/1_3_1_3_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_save/when_iteratively_updating_an_existing_candidate/name_middle/1_3_1_3_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_save/when_iteratively_updating_an_existing_candidate/persisted_/1_3_1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_save/when_iteratively_updating_an_existing_candidate/persisted_/1_3_1_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/1_6_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/1_6_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/1_6_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/1_6_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/cannot_search_on_unsaved_candidate/is_an_invalid_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/cannot_search_on_unsaved_candidate/is_an_invalid_request.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/has_a_good_confidence.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/has_a_good_confidence.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/proof_of_similarity_filtering/1_6_8_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/proof_of_similarity_filtering/1_6_8_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/proof_of_similarity_filtering_rejected_and_accepted_/1_6_9_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/proof_of_similarity_filtering_rejected_and_accepted_/1_6_9_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/proof_of_similarity_filtering_with_match_on_company/1_6_10_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/proof_of_similarity_filtering_with_match_on_company/1_6_10_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/search_by_company/1_6_5_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/search_by_company/1_6_5_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/search_empty_candidate_with_similarity/1_6_7_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/search_empty_candidate_with_similarity/1_6_7_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/search_with_similarity/1_6_6_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/search_with_similarity/1_6_6_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/search_with_similarity/1_6_6_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/search_with_similarity/1_6_6_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Candidate/_search/search_with_similarity/has_a_good_confidence.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Candidate/_search/search_with_similarity/has_a_good_confidence.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/1_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/1_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_all/1_3_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_all/1_3_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_all/1_3_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_all/1_3_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_create/1_6_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_create/1_6_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_create/1_6_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_create/1_6_3.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_create/count/1_6_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_create/count/1_6_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_new/1_4_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_new/1_4_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_new/1_4_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_new/1_4_3.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_new/count/1_4_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_new/count/1_4_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_refresh/1_5_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_refresh/1_5_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_refresh/1_5_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_refresh/1_5_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection/_retrieve/is_the_proper_class.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection/_retrieve/is_the_proper_class.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection_Member/_save/previously_saved_person/contains_the_proper_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection_Member/_save/previously_saved_person/contains_the_proper_fields.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Collection_Member/_save/unsaved_person/saves_the_person_as_part_of_member_save.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Collection_Member/_save/unsaved_person/saves_the_person_as_part_of_member_save.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Company/_create/invalid_company/1_2_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Company/_create/invalid_company/1_2_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Company/_create/invalid_company/1_2_2_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Company/_create/invalid_company/1_2_2_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Company/_create/valid_company/1_2_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Company/_create/valid_company/1_2_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Company/_create/valid_company/1_2_1_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Company/_create/valid_company/1_2_1_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_InvalidRequestError/behaves_like_an_error/1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_InvalidRequestError/behaves_like_an_error/1_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_NotFoundError/behaves_like_an_error/1_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_NotFoundError/behaves_like_an_error/1_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_create/invalid_person/1_2_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_create/invalid_person/1_2_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_create/invalid_person/1_2_2_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_create/invalid_person/1_2_2_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_create/valid_person/1_2_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_create/valid_person/1_2_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_create/valid_person/1_2_1_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_create/valid_person/1_2_1_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_invalid_/invalid_person/1_4_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_invalid_/invalid_person/1_4_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_invalid_/invalid_person/1_4_2_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_invalid_/invalid_person/1_4_2_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_invalid_/invalid_person/1_4_2_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_invalid_/invalid_person/1_4_2_3.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_invalid_/valid_person/1_4_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_invalid_/valid_person/1_4_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_invalid_/valid_person/1_4_1_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_invalid_/valid_person/1_4_1_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_invalid_/valid_person/1_4_1_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_invalid_/valid_person/1_4_1_3.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_valid_/invalid_person/1_3_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_valid_/invalid_person/1_3_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_valid_/invalid_person/1_3_2_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_valid_/invalid_person/1_3_2_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_valid_/invalid_person/1_3_2_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_valid_/invalid_person/1_3_2_3.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_valid_/valid_person/1_3_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_valid_/valid_person/1_3_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_valid_/valid_person/1_3_1_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_valid_/valid_person/1_3_1_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_Person/_valid_/valid_person/1_3_1_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_Person/_valid_/valid_person/1_3_1_3.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_QuestionSet/_create/invalid_person/is_an_invalid_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_QuestionSet/_create/invalid_person/is_an_invalid_request.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_QuestionSet/_create/valid_person/1_2_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_QuestionSet/_create/valid_person/1_2_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_QuestionSet/_create/valid_person/1_2_1_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_QuestionSet/_create/valid_person/1_2_1_2.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_QuestionSet/_score/correct_answers/1_3_1_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_QuestionSet/_score/correct_answers/1_3_1_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_QuestionSet/_score/incorrect_answers/1_3_2_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_QuestionSet/_score/incorrect_answers/1_3_2_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_QuestionSet/_score/malformed_answers/raises_an_error_when_answers_are_not_an_array_of_hashes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_QuestionSet/_score/malformed_answers/raises_an_error_when_answers_are_not_an_array_of_hashes.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_QuestionSet/_score/previous_answers/1_3_4_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_QuestionSet/_score/previous_answers/1_3_4_1.yml -------------------------------------------------------------------------------- /spec/cassettes/BlockScore_QuestionSet/_score/previously_no_answers/1_3_5_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/cassettes/BlockScore_QuestionSet/_score/previously_no_answers/1_3_5_1.yml -------------------------------------------------------------------------------- /spec/factories/candidates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/factories/candidates.rb -------------------------------------------------------------------------------- /spec/factories/companies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/factories/companies.rb -------------------------------------------------------------------------------- /spec/factories/people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/factories/people.rb -------------------------------------------------------------------------------- /spec/factories/question_sets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/factories/question_sets.rb -------------------------------------------------------------------------------- /spec/spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/api_request_behavior.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/support/api_request_behavior.rb -------------------------------------------------------------------------------- /spec/support/error_behavior.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/support/error_behavior.rb -------------------------------------------------------------------------------- /spec/support/included_class_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/support/included_class_methods.rb -------------------------------------------------------------------------------- /spec/support/question_set_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/support/question_set_helper.rb -------------------------------------------------------------------------------- /spec/support/vcr_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/support/vcr_helper.rb -------------------------------------------------------------------------------- /spec/unit/block_score/actions/all_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/actions/all_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/actions/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/actions/create_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/actions/delete_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/actions/delete_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/actions/retrieve_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/actions/retrieve_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/actions/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/actions/update_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/actions/write_once_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/actions/write_once_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/api_connection_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/api_connection_error_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/base_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/candidate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/candidate_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/collection/member_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/collection/member_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/collection_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/company_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/company_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/connection_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/invalid_request_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/invalid_request_error_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/not_found_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/not_found_error_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/person_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/person_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/question_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/question_set_spec.rb -------------------------------------------------------------------------------- /spec/unit/block_score/util_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/unit/block_score/util_spec.rb -------------------------------------------------------------------------------- /spec/vcr_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScore/blockscore-ruby/HEAD/spec/vcr_setup.rb --------------------------------------------------------------------------------