Module: Rwc::Core::Concerns::ErrorHandling::Validatable::ClassMethods
- Defined in:
- lib/rwc/core/concerns/error_handling.rb
Instance Attribute Summary collapse
-
#should_run_checks ⇒ Object
readonly
Returns the value of attribute should_run_checks.
Instance Method Summary collapse
-
#performs_checks ⇒ void
Indicates that checks should be performed on input validation.
Instance Attribute Details
#should_run_checks ⇒ Object (readonly)
Returns the value of attribute should_run_checks.
55 56 57 |
# File 'lib/rwc/core/concerns/error_handling.rb', line 55 def should_run_checks @should_run_checks end |
Instance Method Details
#performs_checks ⇒ void
This method returns an undefined value.
Indicates that checks should be performed on input validation.
51 52 53 |
# File 'lib/rwc/core/concerns/error_handling.rb', line 51 def performs_checks @should_run_checks = true end |