class CodeClimate::TestReporter::Git
def branch_from_git
def branch_from_git git("rev-parse --abbrev-ref HEAD").chomp end
def branch_from_git_or_ci
def branch_from_git_or_ci clean_service_branch || clean_git_branch || "master" end
def clean_git_branch
def clean_git_branch git_branch = String(branch_from_git) clean = git_branch.sub(%r{^origin/}, "") unless git_branch.start_with?("(") !clean.empty? ? clean : nil end
def clean_service_branch
def clean_service_branch ci_branch = String(Ci.service_data[:branch]) clean = ci_branch.strip.sub(%r{^origin/}, "") !clean.empty? ? clean : nil end
def committed_at_from_ci
def committed_at_from_ci if (value = Ci.service_data[:committed_at]) value.to_i end end
def committed_at_from_git
def committed_at_from_git committed_at = git("log -1 --pretty=format:%ct") committed_at.to_i.zero? ? nil : committed_at.to_i end
def committed_at_from_git_or_ci
def committed_at_from_git_or_ci committed_at_from_git || committed_at_from_ci end
def configured_git_dir
def configured_git_dir CodeClimate::TestReporter.configuration.git_dir end
def git(command)
def git(command) `git --git-dir="#{git_dir}/.git" #{command}` end
def git_dir
def git_dir return configured_git_dir unless configured_git_dir.nil? rails_git_dir_present? ? Rails.root : "." end
def head_from_ci
def head_from_ci Ci.service_data[:commit_sha] end
def head_from_git
def head_from_git commit_hash = git("log -1 --pretty=format:'%H'") !commit_hash.empty? ? commit_hash : nil end
def head_from_git_or_ci
def head_from_git_or_ci head_from_git || head_from_ci end
def info
def info { head: head_from_git_or_ci, committed_at: committed_at_from_git_or_ci, branch: branch_from_git_or_ci, } end
def rails_git_dir_present?
def rails_git_dir_present? const_defined?(:Rails) && Rails.respond_to?(:root) && !Rails.root.nil? && File.directory?(File.expand_path(".git", Rails.root)) end