Class: Debci::Runner::Base
- Inherits:
-
Object
- Object
- Debci::Runner::Base
- Defined in:
- lib/debci/runner/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#job ⇒ Object
readonly
Returns the value of attribute job.
Instance Method Summary collapse
-
#initialize(job) ⇒ Base
constructor
A new instance of Base.
- #select_backend ⇒ Object
- #submit ⇒ Object
Constructor Details
#initialize(job) ⇒ Base
Returns a new instance of Base.
6 7 8 |
# File 'lib/debci/runner/base.rb', line 6 def initialize(job) @job = job end |
Instance Attribute Details
#job ⇒ Object (readonly)
Returns the value of attribute job.
4 5 6 |
# File 'lib/debci/runner/base.rb', line 4 def job @job end |
Instance Method Details
#select_backend ⇒ Object
10 11 12 |
# File 'lib/debci/runner/base.rb', line 10 def select_backend raise NotImplementedError.new end |
#submit ⇒ Object
14 15 16 |
# File 'lib/debci/runner/base.rb', line 14 def submit raise NotImplementedError.new end |