This commit is contained in:
Ben Balter 2016-01-18 16:20:33 -05:00
Родитель 6bc145a0de
Коммит 8de56f6e6f
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -50,8 +50,8 @@ approvals.each do |name, licenses|
end
rows << :separator
elligible = !!(spdx && approved_licenses.include?(license))
rows << ["Elligible", elligible]
eligible = !!(spdx && approved_licenses.include?(license))
rows << ["Eligible", eligible]
puts Terminal::Table.new title: "License: #{license}", rows: rows
puts