Table of Contents - shoulda_matchmakers-0.1.1 Documentation
Pages
-
controller_spec_template.haml
- “require 'rails_helper'”
- “n”
- “RSpec.describe ” + @action_controller_controller_sm_model.app_controller_name.to_s + “, type: :controller, shoulda_matchmakers: true do”
- “n”
- use_before_action_matcher_tests
- “n”
- use_after_action_matcher_tests
- “n”
- use_around_action_matcher_tests
- “n”
- “n”
- filter_param_matcher_tests
- “n”
- permit_matcher_tests
- “n”
- “n”
- route_matcher_tests
- “n”
- “n”
- redirect_to_matcher_tests
- “n”
- render_template_matcher_tests
- “n”
- render_with_layout_matcher_tests
- “n”
- rescue_from_matcher_tests
- “n”
- respond_with_matcher_tests
- “n”
- “n”
- set_flash_matcher_tests
- “n”
- set_session_matcher_tests
- “n”
- “end”
- factory_template.haml
-
model_spec_template.haml
- “RSpec.describe #{ @active_record_model_sm_model.app_class_name }, type: :model, shoulda_matchmakers: true do”
- “n”
- belong_to_matcher_tests
- “n”
- have_one_matcher_tests
- “n”
- have_many_matcher_tests
- “n”
- have_and_belong_to_many_matcher_tests
- “n”
- “n”
- accept_nested_attributes_for_matcher_tests
- “n”
- have_readonly_attribute_matcher_tests
- “n”
- have_secure_password_matcher_tests
- “n”
- “n”
- have_db_column_matcher_tests
- “n”
- have_db_index_matcher_tests
- “n”
- “n”
- define_enum_for_matcher_tests
- “n”
- serialize_matcher_tests
- “n”
- “n”
- delegate_method_matcher_tests
- “n”
- “n”
- allow_value_matcher_tests
- “n”
- validate_absence_of_matcher_tests
- “n”
- validate_acceptance_of_matcher_tests
- “n”
- validate_confirmation_of_matcher_tests
- “n”
- validate_exclusion_of_matcher_tests
- “n”
- validate_inclusion_of_matcher_tests
- “n”
- validate_length_of_matcher_tests
- “n”
- validate_numericality_of_matcher_tests
- “n”
- validate_presence_of_matcher_tests
- “n”
- validate_uniqueness_of_matcher_tests
- “n”
- “end”
Classes and Modules
- CLI
- ShouldaMatchmakers
- ShouldaMatchmakers::Configuration
- ShouldaMatchmakers::Controller
- ShouldaMatchmakers::Controller::ActionController
- ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModel
- ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- ShouldaMatchmakers::Controller::ActionController::Matchmaker
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::Callbacks
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::FilterParam
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::RedirectTo
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderWithLayout
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::RescueFrom
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::RespondWith
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetFlash
- ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetSession
- ShouldaMatchmakers::Controller::ActionController::PermittedParamsDefinition
- ShouldaMatchmakers::ControllerGenerator
- ShouldaMatchmakers::ControllerMatcherGenerator
- ShouldaMatchmakers::FactoryGenerator
- ShouldaMatchmakers::Generator
- ShouldaMatchmakers::Generator::ActionController
- ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- ShouldaMatchmakers::Generator::ActiveRecord
- ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- ShouldaMatchmakers::InstallGenerator
- ShouldaMatchmakers::Model
- ShouldaMatchmakers::Model::ActiveRecord
- ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModel
- ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- ShouldaMatchmakers::Model::ActiveRecord::FactorySmModel
- ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AcceptNestedAttributesFor
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Associations
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DefineEnumFor
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DelegateMethod
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveDbColumn
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveDbIndex
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveReadonlyAttribute
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveSecurePassword
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Serialize
- ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- ShouldaMatchmakers::Model::ActiveRecord::OptionsDefinition
- ShouldaMatchmakers::ModelMatcherGenerator
Methods
- ::configure — ShouldaMatchmakers
- ::new — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModel
- ::new — ShouldaMatchmakers::Controller::ActionController::PermittedParamsDefinition
- ::new — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModel
- ::new — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModel
- ::new — ShouldaMatchmakers::Model::ActiveRecord::OptionsDefinition
- ::new — ShouldaMatchmakers::Configuration
- #accept_nested_attributes_for_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AcceptNestedAttributesFor
- #add_app_controller_permitted_params_calls_to_defs — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #add_dummy_values_to_route_parameters_with_missing_values — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #add_dummy_values_to_route_parameters_with_regexp_values — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #add_test_comment_for_route_parameters_with_missing_values — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #add_test_comment_for_route_parameters_with_regexp_values — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #adjust_conditional_test_indentation — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #all_option_values_are_symbols — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #allow_value_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #append_element — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #append_element — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #apply_option_value_qualifiers — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #association_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Associations
- #cli_flags — CLI
- #compose_conditional_before_strings — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #compose_conditional_non_validating_context_string — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #compose_conditional_validating_context_string — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #compose_extended_app_controller_file_path — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #compose_extended_model_file_path — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #compose_multiple_params_tests_collection — ShouldaMatchmakers::Controller::ActionController::Matchmaker::FilterParam
- #compose_multiple_params_tests_collection_comment — ShouldaMatchmakers::Controller::ActionController::Matchmaker::FilterParam
- #compose_permit_test_expectation_portion — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #compose_permit_test_for_portion — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #compose_permit_test_on_portion — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #compose_permit_test_params_portion — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #compose_redirect_to_action_and_path_hash_for_action — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RedirectTo
- #compose_redirect_to_action_and_path_hash_for_path — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RedirectTo
- #compose_redirect_to_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RedirectTo
- #compose_render_template_occurrence_hashes — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #compose_route_controller — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #compose_route_parameters_hash — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #compose_route_parameters_string — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #compose_view_action_render_occurrence_hash — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #conditional_options_exist — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #consolidate_set_flash_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetFlash
- #consolidate_set_session_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetSession
- #containing_method_is_action — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #copy_initializer — ShouldaMatchmakers::InstallGenerator
- #create_app_controller_permitted_params_def — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #create_controller_matchmakers — ShouldaMatchmakers::ControllerMatcherGenerator
- #create_controller_matchmakers — ShouldaMatchmakers::ControllerGenerator
- #create_model_factories — ShouldaMatchmakers::FactoryGenerator
- #create_model_matchmakers — ShouldaMatchmakers::ModelMatcherGenerator
- #custom_exclusion_inclusion_test_required — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #define_enum_for_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DefineEnumFor
- #delegate_method_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DelegateMethod
- #extract_journey_routes — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #extract_validators — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #factory_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #filter_action_controller_controller_names_with_config_options — ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- #filter_action_controller_controller_names_with_exclude_option — ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- #filter_action_controller_controller_names_with_generator_exclude_and_config_options — ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- #filter_action_controller_controller_names_with_generator_include_and_config_options — ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- #filter_action_controller_controller_names_with_include_option — ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- #filter_active_record_class_names_with_config_options — ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- #filter_active_record_class_names_with_exclude_option — ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- #filter_active_record_class_names_with_generator_exclude_and_config_options — ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- #filter_active_record_class_names_with_generator_include_and_config_options — ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- #filter_active_record_class_names_with_include_option — ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- #filter_app_action_controller_descendants_names — ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- #filter_app_active_record_descendants_names — ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- #filter_param_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::FilterParam
- #flags — CLI
- #format_tests — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #format_tests — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #generate_accept_nested_attributes_for_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AcceptNestedAttributesFor
- #generate_action_controller_controller_matchmakers — ShouldaMatchmakers::ControllerMatcherGenerator
- #generate_active_record_model_factories — ShouldaMatchmakers::FactoryGenerator
- #generate_active_record_model_matchmakers — ShouldaMatchmakers::ModelMatcherGenerator
- #generate_allow_value_expected_not_to_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #generate_allow_value_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #generate_allow_value_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #generate_allow_value_test_multiple_lines — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #generate_association_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Associations
- #generate_association_test_multiple_lines — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Associations
- #generate_association_test_single_line — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Associations
- #generate_conditional_allow_value_non_validating_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #generate_conditional_allow_value_non_validating_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #generate_conditional_allow_value_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #generate_conditional_allow_value_validating_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #generate_conditional_non_validating_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #generate_conditional_non_validating_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #generate_conditional_validating_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #generate_conditional_validation_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #generate_controller_matchmakers — ShouldaMatchmakers::ControllerGenerator
- #generate_custom_serialize_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Serialize
- #generate_define_enum_for_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DefineEnumFor
- #generate_delegate_method_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DelegateMethod
- #generate_delegate_method_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DelegateMethod
- #generate_enum_qualifier_examples — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DefineEnumFor
- #generate_filter_param_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::FilterParam
- #generate_have_db_column_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveDbColumn
- #generate_have_db_index_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveDbIndex
- #generate_have_readonly_attribute_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveReadonlyAttribute
- #generate_have_secure_password_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveSecurePassword
- #generate_nested_attributes_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AcceptNestedAttributesFor
- #generate_nested_attributes_test_multiple_lines — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AcceptNestedAttributesFor
- #generate_nested_attributes_test_single_line — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AcceptNestedAttributesFor
- #generate_permit_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #generate_redirect_to_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RedirectTo
- #generate_redirect_to_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RedirectTo
- #generate_render_template_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #generate_render_template_test_initial — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #generate_render_with_layout_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderWithLayout
- #generate_render_with_layout_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderWithLayout
- #generate_rescue_from_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RescueFrom
- #generate_rescue_from_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RescueFrom
- #generate_respond_with_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RespondWith
- #generate_respond_with_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RespondWith
- #generate_route_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #generate_route_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #generate_route_test_multiple_line — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #generate_route_test_single_line — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #generate_serialize_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Serialize
- #generate_serialize_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Serialize
- #generate_set_flash_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetFlash
- #generate_set_flash_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetFlash
- #generate_set_session_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetSession
- #generate_set_session_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetSession
- #generate_tests_for_one_route — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #generate_use_action_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Callbacks
- #generate_use_action_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Callbacks
- #generate_validation_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #generate_validation_test — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #generate_validation_test_multiple_lines — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #generate_view_action_render_occurrence_test — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #get_absence_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_acceptance_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_allow_value_test_comment — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #get_app_action_controller_descendants_names — ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- #get_app_active_record_descendants_names — ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- #get_app_controller_file_path — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #get_app_controller_permitted_params_defs — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #get_app_controller_routes_by_action — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #get_app_controller_routes_by_path — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #get_attributes_with_defaults — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_confirmation_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_controller_name_from_view_directory_path — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #get_custom_exclusion_inclusion_test_comment — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #get_def_delegate_delegate_method_occurrences — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DelegateMethod
- #get_delegate_delegate_method_occurrences — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DelegateMethod
- #get_delegate_method_occurrences — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DelegateMethod
- #get_enum_names — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::DefineEnumFor
- #get_exclusion_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_external_render_view_and_directory — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #get_flash_key_value_option — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetFlash
- #get_if_context_condition — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #get_inclusion_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_internal_render_view_and_directory — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #get_length_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_numericality_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_options_string — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #get_permitted_params_call_hash — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #get_possible_true_false_permutations — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #get_presence_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_redirect_to_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RedirectTo
- #get_render_template_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #get_render_template_occurrences_by_file_type — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #get_render_view_type — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #get_render_with_layout_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderWithLayout
- #get_request_methods — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #get_required_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_rescue_from_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RescueFrom
- #get_respond_with_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RespondWith
- #get_route_http_method — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #get_route_url — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #get_session_key_and_value — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetSession
- #get_set_flash_message_key_and_value — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetFlash
- #get_set_flash_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetFlash
- #get_set_session_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetSession
- #get_uniqueness_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_unless_context_condition — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #get_use_actions — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Callbacks
- #get_validating_true_false_permutation — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #get_validation_attributes — ShouldaMatchmakers::Model::ActiveRecord::FactorySmModelHelper
- #get_value_format — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AllowValue
- #get_view_directory_from_path — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #get_view_directory_prepended — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #get_view_from_path — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #handle_route_parameters_which_require_special_handling — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #handle_route_parameters_with_missing_values — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #handle_route_parameters_with_regexp_values — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #have_db_column_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveDbColumn
- #have_db_index_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveDbIndex
- #have_readonly_attribute_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveReadonlyAttribute
- #have_secure_password_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::HaveSecurePassword
- #identify_external_render_view_type — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #identify_internal_render_view_type — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #journey_routes_present — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #load_action_controller_controller_names — ShouldaMatchmakers::ControllerGenerator
- #load_application — ShouldaMatchmakers::ControllerGenerator
- #load_application — ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- #load_application — ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- #main — CLI
- #order_options — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #parse_app_controller_for_permitted_params_defs — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #parse_app_controller_for_redirect_to_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RedirectTo
- #parse_app_controller_for_render_with_layout_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderWithLayout
- #parse_app_controller_for_rescue_from_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RescueFrom
- #parse_app_controller_for_respond_with_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RespondWith
- #parse_arguments — CLI
- #parse_controller_for_set_flash_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetFlash
- #parse_controller_for_set_session_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetSession
- #parse_controller_for_view_action_render_occurrences — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #parse_validator_options — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #permit_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #properly_line_space_tests — ShouldaMatchmakers::Controller::ActionController::ActionControllerControllerSmModelHelper
- #properly_line_space_tests — ShouldaMatchmakers::Model::ActiveRecord::ActiveRecordModelSmModelHelper
- #redirect_to_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RedirectTo
- #refine_exclusion_inclusion_non_conditional_option — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #remove_params_require_from_line — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #remove_permit_from_line — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #render_template_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #render_with_layout_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderWithLayout
- #rescue_from_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RescueFrom
- #respond_with_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RespondWith
- #route_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #save_generate — ShouldaMatchmakers::ControllerGenerator
- #save_generate — ShouldaMatchmakers::Generator::ActionController::ControllerMatcherGeneratorHelper
- #save_generate — ShouldaMatchmakers::Generator::ActiveRecord::ModelMatcherGeneratorHelper
- #select_action_controller_controller_names — ShouldaMatchmakers::ControllerGenerator
- #select_controller_names_config — ShouldaMatchmakers::ControllerGenerator
- #select_controller_names_generator_option_exclude — ShouldaMatchmakers::ControllerGenerator
- #select_controller_names_generator_option_exclude_with_config — ShouldaMatchmakers::ControllerGenerator
- #select_controller_names_generator_option_include — ShouldaMatchmakers::ControllerGenerator
- #select_controller_names_generator_option_include_with_config — ShouldaMatchmakers::ControllerGenerator
- #serialize_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Serialize
- #set? — CLI
- #set_flash_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetFlash
- #set_session_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::SetSession
- #special_handling_of_route_parameters_required — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Route
- #trim_options — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::AcceptNestedAttributesFor
- #update_current_app_controller_method — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #update_permitted_params_def — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #update_permitted_params_def_comma_delimited_array_of_symbols_type — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #update_permitted_params_def_other_type — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #update_permitted_params_def_space_delimited_array_of_symbols_type — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Permit
- #use_action_matcher_tests — ShouldaMatchmakers::Controller::ActionController::Matchmaker::Callbacks
- #validator_matcher_tests — ShouldaMatchmakers::Model::ActiveRecord::Matchmaker::Validations
- #view_exist — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate
- #view_partial_exist — ShouldaMatchmakers::Controller::ActionController::Matchmaker::RenderTemplate