in lib/licensee/projects/project.rb [23:32]
def license
return @license if defined? @license
@license = if licenses_without_copyright.count == 1 || lgpl?
licenses_without_copyright.first
elsif licenses_without_copyright.count > 1
Licensee::License.find('other')
end
end