Class: Ibex::CLIWatch::Build
- Inherits:
-
Object
- Object
- Ibex::CLIWatch::Build
- Defined in:
- lib/ibex/cli/watch.rb
Overview
Rendered watch generation awaiting its stability-guarded publication.
Instance Attribute Summary collapse
-
#artifacts ⇒ Object
readonly
: ArtifactSet.
-
#attempted_paths ⇒ Object
readonly
: Array.
-
#source_paths ⇒ Object
readonly
: Array.
-
#source_records ⇒ Object
readonly
: Array.
-
#statuses ⇒ Object
readonly
: Array.
Instance Method Summary collapse
-
#initialize(artifacts:, statuses:, source_paths:, attempted_paths:, source_records:) ⇒ Build
constructor
rubocop:disable Layout/LineLength.
Constructor Details
#initialize(artifacts:, statuses:, source_paths:, attempted_paths:, source_records:) ⇒ Build
rubocop:disable Layout/LineLength
25 26 27 28 29 30 31 32 |
# File 'lib/ibex/cli/watch.rb', line 25 def initialize(artifacts:, statuses:, source_paths:, attempted_paths:, source_records:) @artifacts = artifacts @statuses = statuses.freeze @source_paths = source_paths.freeze @attempted_paths = attempted_paths.freeze @source_records = source_records.freeze freeze end |
Instance Attribute Details
#artifacts ⇒ Object (readonly)
: ArtifactSet
17 18 19 |
# File 'lib/ibex/cli/watch.rb', line 17 def artifacts @artifacts end |
#attempted_paths ⇒ Object (readonly)
: Array
20 21 22 |
# File 'lib/ibex/cli/watch.rb', line 20 def attempted_paths @attempted_paths end |
#source_paths ⇒ Object (readonly)
: Array
19 20 21 |
# File 'lib/ibex/cli/watch.rb', line 19 def source_paths @source_paths end |
#source_records ⇒ Object (readonly)
: Array
21 22 23 |
# File 'lib/ibex/cli/watch.rb', line 21 def source_records @source_records end |
#statuses ⇒ Object (readonly)
: Array
18 19 20 |
# File 'lib/ibex/cli/watch.rb', line 18 def statuses @statuses end |