Class: Jets::Git::Gitlab

Inherits:
Object
  • Object
show all
Defined in:
lib/jets/git/gitlab.rb

Instance Method Summary collapse

Instance Method Details

#git_branchObject



16
17
18
# File 'lib/jets/git/gitlab.rb', line 16

def git_branch
  ENV['CI_COMMIT_REF_NAME']
end

#git_shaObject



20
21
22
# File 'lib/jets/git/gitlab.rb', line 20

def git_sha
  ENV['CI_COMMIT_SHA']
end

#git_urlObject



24
25
26
27
28
# File 'lib/jets/git/gitlab.rb', line 24

def git_url
  host = ENV['CI_SERVER_URL'] || 'https://gitlab.com'
  full_repo = ENV['CI_PROJECT_PATH']
  "#{host}/#{full_repo}"
end

#paramsObject



3
4
5
6
7
8
9
10
11
12
13
14
# File 'lib/jets/git/gitlab.rb', line 3

def params
  params = {
    git_system: 'gitlab',
    git_branch: git_branch,
    git_sha: git_sha,
    git_dirty: false,
    # git_message: nil,
    # git_version: nil,
  }
  params[:git_url] = git_url if git_url
  params
end