1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-09 12:47:49 +02:00

Merge branch 'gh-pages' into epl-2.0

This commit is contained in:
Mike Linksvayer 2017-12-29 14:58:54 -08:00 committed by GitHub
commit 7b6067ed2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 9 deletions

View File

@ -5,7 +5,7 @@ script: "./script/cibuild"
#environment
language: ruby
rvm:
- 2.4.0
- 2.4.2
addons:
apt:

View File

@ -1,5 +1,5 @@
---
title: BSD 2-clause "Simplified" License
title: BSD 2-Clause "Simplified" License
spdx-id: BSD-2-Clause
redirect_from: /licenses/bsd/
source: https://opensource.org/licenses/BSD-2-Clause

View File

@ -1,5 +1,5 @@
---
title: BSD 3-clause Clear License
title: BSD 3-Clause Clear License
spdx-id: BSD-3-Clause-Clear
source: https://spdx.org/licenses/BSD-3-Clause-Clear.html

View File

@ -1,5 +1,5 @@
---
title: BSD 3-clause "New" or "Revised" License
title: BSD 3-Clause "New" or "Revised" License
spdx-id: BSD-3-Clause
source: https://opensource.org/licenses/BSD-3-Clause
hidden: false

View File

@ -32,8 +32,8 @@ University of Illinois/NCSA Open Source License
Copyright (c) [year] [fullname]. All rights reserved.
Developed by: [fullname]
[project]
Developed by: [project]
[fullname]
[project_url]
Permission is hereby granted, free of charge, to any person

View File

@ -71,8 +71,13 @@ def rule?(tag, group)
end
def spdx_list
url = 'https://raw.githubusercontent.com/sindresorhus/spdx-license-list/master/spdx.json'
SpecHelper.spdx ||= JSON.parse(open(url).read)
SpecHelper.spdx ||= begin
url = 'https://spdx.org/licenses/licenses.json'
list = JSON.parse(open(url).read)['licenses']
list.each_with_object({}) do |values, memo|
memo[values['licenseId']] = values
end
end
end
def spdx_ids
@ -86,7 +91,7 @@ end
def osi_approved_licenses
SpecHelper.osi_approved_licenses ||= begin
licenses = {}
list = spdx_list.select { |_id, meta| meta['osiApproved'] }
list = spdx_list.select { |_id, meta| meta['isOsiApproved'] }
list.each do |id, meta|
licenses[id.downcase] = meta['name']
end