module GitCli::WsCommon

Public Instance Methods

check_repos() click to toggle source
# File lib/git_cli.rb, line 101
def check_repos
  raise_if_empty(@repos, "Repository must not be null", GitCliException)
end
check_vcs() click to toggle source
# File lib/git_cli.rb, line 96
def check_vcs
  raise_if_empty(@vcs, "VCS must not be null", GitCliException)
  raise_if_empty(@wsPath, "Workspace path must not be null", GitCliException)
end