mirror of https://github.com/licensee/licensee.git
comply with new rubocop
This commit is contained in:
parent
f5f01b6cc2
commit
7166a9cf3b
|
@ -125,7 +125,7 @@ module Licensee
|
|||
|
||||
# Returns the human-readable license name
|
||||
def name
|
||||
title ? title : key.capitalize
|
||||
title || spdx_id
|
||||
end
|
||||
|
||||
def name_without_version
|
||||
|
|
|
@ -25,7 +25,7 @@ RSpec.describe Licensee::ContentHelper do
|
|||
This license provided 'as is'. Please respect the contributors' wishes when
|
||||
implementing the license's "software".
|
||||
-----------
|
||||
LICENSE
|
||||
LICENSE
|
||||
end
|
||||
subject { ContentHelperTestHelper.new(content) }
|
||||
let(:mit) { Licensee::License.find('mit') }
|
||||
|
|
|
@ -201,7 +201,7 @@ RSpec.describe Licensee::License do
|
|||
end
|
||||
|
||||
it 'uses the default name when none exists' do
|
||||
expect(other.name).to eql('Other')
|
||||
expect(other.name).to eql('NOASSERTION')
|
||||
end
|
||||
|
||||
it 'expoeses the nickname' do
|
||||
|
|
Loading…
Reference in New Issue