class CartBinaryUploader::GitHelper

Public Instance Methods

push() click to toggle source
# File lib/git_tools/git_helper.rb, line 17
def push
  CartLogger.log_info 'Pushing tag to Git '
  begin
    cmd = 'git push --tags'
    exec( cmd )
    CartLogger.log_info 'Tag pushed'
  rescue
    CartLogger.log_error 'Problem to push tag on git'
  end

end
tag_to(version) click to toggle source
# File lib/git_tools/git_helper.rb, line 6
def tag_to(version)
  CartLogger.log_info "Tagging version to:  #{version}"
  begin
    cmd = "git tag -f #{version}"
    exec(cmd)
    CartLogger.log_info 'Version tagged'
  rescue
    CartLogger.log_error 'Problem to generate tag on git'
  end
end