class IntegrationDiff::RunDetails::GitRepo

Public Instance Methods

author() click to toggle source
# File lib/integration_diff/run_details.rb, line 28
def author
  `git config user.name`.strip
end
branch() click to toggle source
# File lib/integration_diff/run_details.rb, line 24
def branch
  `git rev-parse --abbrev-ref HEAD`.strip
end