11 lines
237 B
Ruby
11 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
module BlobLanguageFromGitAttributes
|
|
extend ActiveSupport::Concern
|
|
|
|
def language_from_gitattributes
|
|
return unless repository&.exists?
|
|
|
|
repository.gitattribute(path, 'gitlab-language')
|
|
end
|
|
end
|