Class: Optimal::CI::Provider::Base
- Inherits:
-
Object
- Object
- Optimal::CI::Provider::Base
- Defined in:
- lib/optimal/ci/provider/base.rb
Instance Method Summary collapse
- #branch ⇒ Object
- #build_number ⇒ Object
- #commit_hash ⇒ Object
- #name ⇒ Object
- #node_index ⇒ Object
- #total_nodes ⇒ Object
Instance Method Details
#branch ⇒ Object
25 26 27 |
# File 'lib/optimal/ci/provider/base.rb', line 25 def branch raise "Not Implemented" end |
#build_number ⇒ Object
17 18 19 |
# File 'lib/optimal/ci/provider/base.rb', line 17 def build_number raise "Not Implemented" end |
#commit_hash ⇒ Object
21 22 23 |
# File 'lib/optimal/ci/provider/base.rb', line 21 def commit_hash raise "Not Implemented" end |
#name ⇒ Object
5 6 7 |
# File 'lib/optimal/ci/provider/base.rb', line 5 def name self.class.name.split("::").last.downcase end |
#node_index ⇒ Object
13 14 15 |
# File 'lib/optimal/ci/provider/base.rb', line 13 def node_index raise "Not Implemented" end |
#total_nodes ⇒ Object
9 10 11 |
# File 'lib/optimal/ci/provider/base.rb', line 9 def total_nodes raise "Not Implemented" end |