debian-mirror-gitlab/app/helpers/git_helper.rb
2020-01-01 13:55:28 +05:30

15 lines
422 B
Ruby

# frozen_string_literal: true
module GitHelper
def strip_signature(text)
text = text.gsub(/-----BEGIN PGP SIGNATURE-----(.*)-----END PGP SIGNATURE-----/m, "")
text = text.gsub(/-----BEGIN PGP MESSAGE-----(.*)-----END PGP MESSAGE-----/m, "")
text = text.gsub(/-----BEGIN SIGNED MESSAGE-----(.*)-----END SIGNED MESSAGE-----/m, "")
text
end
def short_sha(text)
Commit.truncate_sha(text)
end
end