Class: Ibex::CLIWatch::Build
- Inherits:
-
Object
- Object
- Ibex::CLIWatch::Build
- Defined in:
- lib/ibex/cli/watch.rb,
sig/ibex/cli/watch.rbs
Overview
Rendered watch generation awaiting its stability-guarded publication.
Instance Attribute Summary collapse
- #artifacts ⇒ ArtifactSet readonly
- #attempted_paths ⇒ Array[String] readonly
- #source_paths ⇒ Array[String] readonly
- #source_records ⇒ Array[GenerationInput] readonly
- #statuses ⇒ Array[String] readonly
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 ⇒ ArtifactSet (readonly)
17 18 19 |
# File 'lib/ibex/cli/watch.rb', line 17 def artifacts @artifacts end |
#attempted_paths ⇒ Array[String] (readonly)
20 21 22 |
# File 'lib/ibex/cli/watch.rb', line 20 def attempted_paths @attempted_paths end |
#source_paths ⇒ Array[String] (readonly)
19 20 21 |
# File 'lib/ibex/cli/watch.rb', line 19 def source_paths @source_paths end |
#source_records ⇒ Array[GenerationInput] (readonly)
21 22 23 |
# File 'lib/ibex/cli/watch.rb', line 21 def source_records @source_records end |
#statuses ⇒ Array[String] (readonly)
18 19 20 |
# File 'lib/ibex/cli/watch.rb', line 18 def statuses @statuses end |