Recognize 'UNLICENSE' license files

This commit is contained in:
J.D. Bean 2018-09-06 12:36:19 +00:00 committed by Rémy Coutable
parent 4a14ff5bce
commit 643c6f31e5
3 changed files with 11 additions and 2 deletions

View File

@ -0,0 +1,5 @@
---
title: Recognize 'UNLICENSE' license files
merge_request: 21508
author: J.D. Bean
type: added

View File

@ -8,7 +8,7 @@ module Gitlab
# Project files
readme: %r{\Areadme[^/]*\z}i,
changelog: %r{\A(changelog|history|changes|news)[^/]*\z}i,
license: %r{\A(licen[sc]e|copying)(\.[^/]+)?\z}i,
license: %r{\A((un)?licen[sc]e|copying)(\.[^/]+)?\z}i,
contributing: %r{\Acontributing[^/]*\z}i,
version: 'version',
avatar: /\Alogo\.(png|jpg|gif)\z/,

View File

@ -29,11 +29,15 @@ describe Gitlab::FileDetector do
end
it 'returns the type of a license file' do
%w(LICENSE LICENCE COPYING).each do |file|
%w(LICENSE LICENCE COPYING UNLICENSE UNLICENCE).each do |file|
expect(described_class.type_of(file)).to eq(:license)
end
end
it 'returns nil for an UNCOPYING file' do
expect(described_class.type_of('UNCOPYING')).to be_nil
end
it 'returns the type of a version file' do
expect(described_class.type_of('VERSION')).to eq(:version)
end