diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-22 12:08:15 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-22 12:08:15 +0000 |
commit | 808c799a67a1cf2489a343a6976f55c74aec398b (patch) | |
tree | 4902ff7dbcdd7f3a9dde5ab3bd20dba94835a8a7 /lib/gitlab/diff | |
parent | 4a3ba3e5f261eb09e6b2b4fd44373e7a1c454a72 (diff) | |
download | gitlab-ce-808c799a67a1cf2489a343a6976f55c74aec398b.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/diff')
-rw-r--r-- | lib/gitlab/diff/file.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/gitlab/diff/file.rb b/lib/gitlab/diff/file.rb index d1398ddb642..72dcc4fde71 100644 --- a/lib/gitlab/diff/file.rb +++ b/lib/gitlab/diff/file.rb @@ -225,6 +225,10 @@ module Gitlab new_path.presence || old_path end + def file_hash + Digest::SHA1.hexdigest(file_path) + end + def added_lines @stats&.additions || diff_lines.count(&:added?) end @@ -237,6 +241,10 @@ module Gitlab "#{file_path}-#{new_file?}-#{deleted_file?}-#{renamed_file?}" end + def file_identifier_hash + Digest::SHA1.hexdigest(file_identifier) + end + def diffable? repository.attributes(file_path).fetch('diff') { true } end |