Class: Ibex::ErrorMessages::Update
- Inherits:
-
Object
- Object
- Ibex::ErrorMessages::Update
- Defined in:
- lib/ibex/error_messages.rb
Overview
Deterministic update output and review classifications.
Instance Attribute Summary collapse
-
#moved ⇒ Object
readonly
: Array.
-
#source ⇒ Object
readonly
: String.
-
#uncovered ⇒ Object
readonly
: Array.
-
#unreachable ⇒ Object
readonly
: Array.
Instance Method Summary collapse
-
#initialize(source:, uncovered:, unreachable:, moved:) ⇒ Update
constructor
A new instance of Update.
Constructor Details
#initialize(source:, uncovered:, unreachable:, moved:) ⇒ Update
Returns a new instance of Update.
58 59 60 61 62 63 64 |
# File 'lib/ibex/error_messages.rb', line 58 def initialize(source:, uncovered:, unreachable:, moved:) @source = source.freeze @uncovered = uncovered.freeze @unreachable = unreachable.freeze @moved = moved.freeze freeze end |
Instance Attribute Details
#moved ⇒ Object (readonly)
: Array
55 56 57 |
# File 'lib/ibex/error_messages.rb', line 55 def moved @moved end |
#source ⇒ Object (readonly)
: String
52 53 54 |
# File 'lib/ibex/error_messages.rb', line 52 def source @source end |
#uncovered ⇒ Object (readonly)
: Array
53 54 55 |
# File 'lib/ibex/error_messages.rb', line 53 def uncovered @uncovered end |
#unreachable ⇒ Object (readonly)
: Array
54 55 56 |
# File 'lib/ibex/error_messages.rb', line 54 def unreachable @unreachable end |