class Optimal::CI::Provider::Base

Public Instance Methods

branch() click to toggle source
# File lib/optimal/ci/provider/base.rb, line 25
def branch
  raise "Not Implemented"
end
build_number() click to toggle source
# File lib/optimal/ci/provider/base.rb, line 17
def build_number
  raise "Not Implemented"
end
commit_hash() click to toggle source
# File lib/optimal/ci/provider/base.rb, line 21
def commit_hash
  raise "Not Implemented"
end
name() click to toggle source
# File lib/optimal/ci/provider/base.rb, line 5
def name
  self.class.name.split("::").last.downcase
end
node_index() click to toggle source
# File lib/optimal/ci/provider/base.rb, line 13
def node_index
  raise "Not Implemented"
end
total_nodes() click to toggle source
# File lib/optimal/ci/provider/base.rb, line 9
def total_nodes
  raise "Not Implemented"
end