class Scm::Workflow::CodeCollab

Attributes

app_exec_path[RW]
observers[RW]
reviewers[RW]
serverurl[RW]
username[RW]

Public Class Methods

new() click to toggle source
# File lib/scm-workflow/configuration.rb, line 42
def initialize
  @execpath = ConfigElement.new("Path to code collab executable", false, "/Applications/ccollab_client/ccollab")
  @serverurl = ConfigElement.new("Code collab server url", false, "https://development-us:8443")
  @username = ConfigElement.new("Code collab username", false, "")
  @reviewers = ConfigElement.new("List of reviewers id, coma separated", false, "")
  @observers = ConfigElement.new("List of observers id, coma separated", false, "")
end

Public Instance Methods

to_s() click to toggle source
# File lib/scm-workflow/configuration.rb, line 50
def to_s
  return "Specify code collab related information: "
end