Module: Rwc::Concerns::ErrorHandling::Validatable::ClassMethods
- Defined in:
- lib/rwc/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.
54 55 56 |
# File 'lib/rwc/concerns/error_handling.rb', line 54 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.
50 51 52 |
# File 'lib/rwc/concerns/error_handling.rb', line 50 def performs_checks @should_run_checks = true end |