class ShouldaMatchmakers::Configuration

Attributes

action_controller_controller_names_excluded[RW]
action_controller_controller_names_included[RW]
action_controller_controller_tests_path[RW]
active_record_class_names_excluded[RW]
active_record_class_names_included[RW]
active_record_model_class_names_for_factories_excluded[RW]
active_record_model_class_names_for_factories_included[RW]
active_record_model_factories_path[RW]
active_record_model_tests_path[RW]
include_enums[RW]
preferred_generated_code_line_length[RW]

Public Class Methods

new() click to toggle source
# File lib/shoulda_matchmakers.rb, line 28
def initialize

  @active_record_class_names_included = %w()
  @active_record_class_names_excluded = %w()
  @active_record_model_tests_path     = 'spec/shoulda_matchmakers/models/active_record'

  @action_controller_controller_names_included = %w()
  @action_controller_controller_names_excluded = %w()
  @action_controller_controller_tests_path     = 'spec/shoulda_matchmakers/controllers/action_controller'

  @active_record_model_class_names_for_factories_included = %w()
  @active_record_model_class_names_for_factories_excluded = %w()
  @active_record_model_factories_path                     = 'spec/shoulda_matchmakers/factories/active_record'

  @include_enums = true
  @preferred_generated_code_line_length = 120

end