mirror of
https://github.com/github/choosealicense.com
synced 2024-12-22 21:00:10 +01:00
42 lines
1.2 KiB
Ruby
Executable File
42 lines
1.2 KiB
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require 'jekyll'
|
|
require 'tmpdir'
|
|
|
|
tmp_dir = Dir.mktmpdir
|
|
git_cmd = "git clone --depth=1 'https://github.com/spdx/license-list-data.git' #{tmp_dir}"
|
|
system(git_cmd)
|
|
text_dir = File.join(tmp_dir, 'text')
|
|
|
|
site_path = File.expand_path('../', File.dirname(__FILE__))
|
|
config = Jekyll.configuration('source' => site_path)
|
|
site = Jekyll::Site.new(config)
|
|
site.read
|
|
site.collections['licenses'].docs.each do |license|
|
|
puts "Updating the #{license.data['title']}..."
|
|
text_file = File.join(text_dir, "#{license.data['spdx-id']}.txt")
|
|
spdx_text = File.read(text_file).gsub(/\s+\n/, "\n")
|
|
license_text = ''
|
|
|
|
spdx_text.lines.each do |line|
|
|
if line.length <= 78
|
|
license_text += line
|
|
else
|
|
indented_line = line.match(/\A(\s*)(.*)/)
|
|
line_indent = indented_line[1]
|
|
line_text = indented_line[2]
|
|
text_width = 78 - line_indent.length
|
|
license_text += line_text.gsub(/(.{1,#{text_width}})(\s+|\Z)/, "#{line_indent}\\1\n")
|
|
end
|
|
end
|
|
raw_content = File.read(license.path)
|
|
matches = raw_content.match Jekyll::Document::YAML_FRONT_MATTER_REGEXP
|
|
|
|
output = matches[1]
|
|
output << "---\n\n"
|
|
output << license_text.gsub(/\s+\n/, "\n")
|
|
|
|
File.write(license.path, output)
|
|
end
|