Class: ArchivesspaceChecker::RuleKeyStr
- Inherits:
-
Delegator
- Object
- Delegator
- ArchivesspaceChecker::RuleKeyStr
- Defined in:
- archivesspace_checker.rb
Overview
A tagged string class, used to attach phase information to the rule descriptions
Delegates most functionality to String
Instance Attribute Summary (collapse)
-
- (Object) manual
writeonly
Sets the attribute manual.
Instance Method Summary (collapse)
-
- (RuleKeyStr) initialize(obj)
constructor
A new instance of RuleKeyStr.
-
- (Boolean) manual?
Requires manual intervention to fix this error?.
Constructor Details
- (RuleKeyStr) initialize(obj)
Returns a new instance of RuleKeyStr
61 62 63 64 65 |
# File 'archivesspace_checker.rb', line 61 def initialize(obj) super @str = obj @manual = nil end |
Instance Attribute Details
- (Object) manual=(value) (writeonly)
Sets the attribute manual
58 59 60 |
# File 'archivesspace_checker.rb', line 58 def manual=(value) @manual = value end |
Instance Method Details
- (Boolean) manual?
Requires manual intervention to fix this error?
68 69 70 |
# File 'archivesspace_checker.rb', line 68 def manual? @manual end |