licensee 9.14.0 → 9.14.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/lib/licensee/commands/detect.rb +1 -1
  3. data/lib/licensee/commands/diff.rb +2 -2
  4. data/lib/licensee/content_helper.rb +17 -10
  5. data/lib/licensee/license.rb +1 -1
  6. data/lib/licensee/matchers/cabal.rb +1 -1
  7. data/lib/licensee/matchers/cargo.rb +1 -1
  8. data/lib/licensee/matchers/copyright.rb +1 -1
  9. data/lib/licensee/matchers/dist_zilla.rb +1 -1
  10. data/lib/licensee/matchers/gemspec.rb +4 -4
  11. data/lib/licensee/matchers/npm_bower.rb +5 -2
  12. data/lib/licensee/matchers/nuget.rb +6 -6
  13. data/lib/licensee/matchers/spdx.rb +1 -1
  14. data/lib/licensee/project_files/license_file.rb +3 -3
  15. data/lib/licensee/project_files/project_file.rb +1 -0
  16. data/lib/licensee/projects/github_project.rb +1 -1
  17. data/lib/licensee/version.rb +1 -1
  18. data/licensee.gemspec +1 -1
  19. data/spec/fixtures/bom/LICENSE.txt +21 -0
  20. data/spec/fixtures/crlf-bsd/LICENSE.md +27 -0
  21. data/spec/fixtures/detect.json +12 -18
  22. data/spec/fixtures/fixtures.yml +20 -4
  23. data/spec/fixtures/license-hashes.json +1 -1
  24. data/spec/fixtures/markdown-artistic/LICENSE.md +192 -0
  25. data/spec/fixtures/vim/LICENSE +78 -0
  26. data/spec/integration_spec.rb +39 -2
  27. data/spec/licensee/content_helper_spec.rb +2 -0
  28. data/spec/licensee/hash_helper_spec.rb +22 -22
  29. data/spec/licensee/license_meta_spec.rb +5 -11
  30. data/spec/licensee/license_spec.rb +9 -5
  31. data/spec/licensee/matchers/dice_matcher_spec.rb +1 -1
  32. data/spec/licensee/matchers/matcher_spec.rb +6 -6
  33. data/spec/licensee/matchers/npm_bower_matcher_spec.rb +9 -0
  34. data/spec/licensee/project_files/license_file_spec.rb +27 -26
  35. data/spec/licensee/rule_spec.rb +1 -1
  36. data/vendor/choosealicense.com/_data/meta.yml +1 -1
  37. data/vendor/choosealicense.com/_data/rules.yml +13 -13
  38. data/vendor/choosealicense.com/_licenses/0bsd.txt +3 -3
  39. data/vendor/choosealicense.com/_licenses/apache-2.0.txt +3 -3
  40. data/vendor/choosealicense.com/_licenses/bsd-2-clause.txt +3 -3
  41. data/vendor/choosealicense.com/_licenses/bsd-3-clause.txt +3 -3
  42. data/vendor/choosealicense.com/_licenses/bsd-4-clause.txt +3 -3
  43. data/vendor/choosealicense.com/_licenses/bsl-1.0.txt +3 -3
  44. data/vendor/choosealicense.com/_licenses/cc-by-4.0.txt +3 -3
  45. data/vendor/choosealicense.com/_licenses/cc-by-sa-4.0.txt +3 -3
  46. data/vendor/choosealicense.com/_licenses/cc0-1.0.txt +3 -3
  47. data/vendor/choosealicense.com/_licenses/cecill-2.1.txt +3 -3
  48. data/vendor/choosealicense.com/_licenses/ecl-2.0.txt +3 -3
  49. data/vendor/choosealicense.com/_licenses/epl-1.0.txt +3 -3
  50. data/vendor/choosealicense.com/_licenses/epl-2.0.txt +3 -3
  51. data/vendor/choosealicense.com/_licenses/eupl-1.2.txt +3 -3
  52. data/vendor/choosealicense.com/_licenses/gpl-2.0.txt +3 -3
  53. data/vendor/choosealicense.com/_licenses/gpl-3.0.txt +3 -3
  54. data/vendor/choosealicense.com/_licenses/isc.txt +3 -3
  55. data/vendor/choosealicense.com/_licenses/mit.txt +3 -3
  56. data/vendor/choosealicense.com/_licenses/mpl-2.0.txt +3 -3
  57. data/vendor/choosealicense.com/_licenses/ncsa.txt +3 -3
  58. data/vendor/choosealicense.com/_licenses/odbl-1.0.txt +3 -3
  59. data/vendor/choosealicense.com/_licenses/ofl-1.1.txt +3 -3
  60. data/vendor/choosealicense.com/_licenses/osl-3.0.txt +3 -3
  61. data/vendor/choosealicense.com/_licenses/postgresql.txt +3 -3
  62. data/vendor/choosealicense.com/_licenses/unlicense.txt +3 -3
  63. data/vendor/choosealicense.com/_licenses/upl-1.0.txt +3 -3
  64. data/vendor/choosealicense.com/_licenses/vim.txt +3 -3
  65. data/vendor/choosealicense.com/_licenses/zlib.txt +3 -3
  66. metadata +18 -8
@@ -42,7 +42,7 @@ RSpec.describe Licensee::Matchers::Dice do
42
42
 
43
43
  context 'stacked licenses' do
44
44
  let(:content) do
45
- sub_copyright_info(mit) + "\n\n" + sub_copyright_info(gpl)
45
+ "#{sub_copyright_info(mit)}\n\n#{sub_copyright_info(gpl)}"
46
46
  end
47
47
 
48
48
  it "doesn't match" do
@@ -1,5 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ class MatcherSpecFixture < Licensee::Matchers::Matcher
4
+ def confidence
5
+ 0
6
+ end
7
+ end
8
+
3
9
  RSpec.describe Licensee::Matchers::Matcher do
4
10
  subject { described_class.new(file) }
5
11
 
@@ -16,12 +22,6 @@ RSpec.describe Licensee::Matchers::Matcher do
16
22
  end
17
23
 
18
24
  context 'to_h' do
19
- class MatcherSpecFixture < Licensee::Matchers::Matcher
20
- def confidence
21
- 0
22
- end
23
- end
24
-
25
25
  subject { MatcherSpecFixture.new(file) }
26
26
 
27
27
  let(:hash) { subject.to_h }
@@ -7,6 +7,7 @@ RSpec.describe Licensee::Matchers::NpmBower do
7
7
  let(:file) { Licensee::ProjectFiles::LicenseFile.new(content, 'LICENSE.txt') }
8
8
  let(:mit) { Licensee::License.find('mit') }
9
9
  let(:other) { Licensee::License.find('other') }
10
+ let(:no_license) { Licensee::License.find('no-license') }
10
11
 
11
12
  it 'matches' do
12
13
  expect(subject.match).to eql(mit)
@@ -56,4 +57,12 @@ RSpec.describe Licensee::Matchers::NpmBower do
56
57
  expect(subject.match).to eql(other)
57
58
  end
58
59
  end
60
+
61
+ context 'UNLICENSED' do
62
+ let(:content) { "'license': 'UNLICENSED'" }
63
+
64
+ it 'returns none' do
65
+ expect(subject.match).to eql(no_license)
66
+ end
67
+ end
59
68
  end
@@ -57,32 +57,33 @@ RSpec.describe Licensee::ProjectFiles::LicenseFile do
57
57
 
58
58
  context 'filename scoring' do
59
59
  {
60
- 'license' => 1.00,
61
- 'LICENCE' => 1.00,
62
- 'unLICENSE' => 1.00,
63
- 'unlicence' => 1.00,
64
- 'license.md' => 0.95,
65
- 'LICENSE.md' => 0.95,
66
- 'license.txt' => 0.95,
67
- 'COPYING' => 0.90,
68
- 'copyRIGHT' => 0.90,
69
- 'COPYRIGHT.txt' => 0.85,
70
- 'copying.txt' => 0.85,
71
- 'LICENSE.php' => 0.80,
72
- 'LICENCE.docs' => 0.80,
73
- 'copying.image' => 0.75,
74
- 'COPYRIGHT.go' => 0.75,
75
- 'LICENSE-MIT' => 0.70,
76
- 'LICENSE_1_0.txt' => 0.70,
77
- 'COPYING-GPL' => 0.65,
78
- 'COPYRIGHT-BSD' => 0.65,
79
- 'MIT-LICENSE.txt' => 0.60,
80
- 'mit-license-foo.md' => 0.60,
81
- 'OFL.md' => 0.50,
82
- 'ofl.textile' => 0.45,
83
- 'ofl' => 0.40,
84
- 'not-the-ofl' => 0.00,
85
- 'README.txt' => 0.00
60
+ 'license' => 1.00,
61
+ 'LICENCE' => 1.00,
62
+ 'unLICENSE' => 1.00,
63
+ 'unlicence' => 1.00,
64
+ 'license.md' => 0.95,
65
+ 'LICENSE.md' => 0.95,
66
+ 'license.txt' => 0.95,
67
+ 'COPYING' => 0.90,
68
+ 'copyRIGHT' => 0.90,
69
+ 'COPYRIGHT.txt' => 0.85,
70
+ 'copying.txt' => 0.85,
71
+ 'LICENSE.php' => 0.80,
72
+ 'LICENCE.docs' => 0.80,
73
+ 'copying.image' => 0.75,
74
+ 'COPYRIGHT.go' => 0.75,
75
+ 'LICENSE-MIT' => 0.70,
76
+ 'LICENSE_1_0.txt' => 0.70,
77
+ 'COPYING-GPL' => 0.65,
78
+ 'COPYRIGHT-BSD' => 0.65,
79
+ 'MIT-LICENSE.txt' => 0.60,
80
+ 'mit-license-foo.md' => 0.60,
81
+ 'OFL.md' => 0.50,
82
+ 'ofl.textile' => 0.45,
83
+ 'ofl' => 0.40,
84
+ 'not-the-ofl' => 0.00,
85
+ 'README.txt' => 0.00,
86
+ '.pip-license-ignore' => 0.00
86
87
  }.each do |filename, expected|
87
88
  context "a file named #{filename}" do
88
89
  let(:score) { described_class.name_score(filename) }
@@ -62,7 +62,7 @@ RSpec.describe Licensee::Rule do
62
62
  context 'to_h' do
63
63
  let(:hash) { described_class.all.first.to_h }
64
64
  let(:description) do
65
- 'This software and derivatives may be used for commercial purposes.'
65
+ 'The licensed material and derivatives may be used for commercial purposes.'
66
66
  end
67
67
  let(:expected) do
68
68
  {
@@ -30,7 +30,7 @@
30
30
  required: true
31
31
 
32
32
  - name: using
33
- description: 'A list of 3 notable projects using the license with straightforward LICENSE files which serve as examples newcomers can follow and that can be detected by [licensee](https://github.com/benbalter/licensee) in the form of `project_name: license_file_url`'
33
+ description: 'A list of 3 notable projects using the license with straightforward LICENSE files which serve as examples newcomers can follow and that can be detected by [licensee](https://github.com/licensee/licensee) in the form of `project_name: license_file_url`'
34
34
  required: true
35
35
 
36
36
  # Optional fields
@@ -1,14 +1,14 @@
1
1
  permissions:
2
- - description: This software and derivatives may be used for commercial purposes.
2
+ - description: The licensed material and derivatives may be used for commercial purposes.
3
3
  label: Commercial use
4
4
  tag: commercial-use
5
- - description: This software may be modified.
5
+ - description: The licensed material may be modified.
6
6
  label: Modification
7
7
  tag: modifications
8
- - description: This software may be distributed.
8
+ - description: The licensed material may be distributed.
9
9
  label: Distribution
10
10
  tag: distribution
11
- - description: This software may be used and modified in private.
11
+ - description: The licensed material may be used and modified in private.
12
12
  label: Private use
13
13
  tag: private-use
14
14
  - description: This license provides an express grant of patent rights from contributors.
@@ -16,28 +16,28 @@ permissions:
16
16
  tag: patent-use
17
17
 
18
18
  conditions:
19
- - description: A copy of the license and copyright notice must be included with the software.
19
+ - description: A copy of the license and copyright notice must be included with the licensed material.
20
20
  label: License and copyright notice
21
21
  tag: include-copyright
22
- - description: A copy of the license and copyright notice must be included with the software in source form, but is not required for binaries.
22
+ - description: A copy of the license and copyright notice must be included with the licensed material in source form, but is not required for binaries.
23
23
  label: License and copyright notice for source
24
24
  tag: include-copyright--source
25
- - description: Changes made to the code must be documented.
25
+ - description: Changes made to the licensed material must be documented.
26
26
  label: State changes
27
27
  tag: document-changes
28
- - description: Source code must be made available when the software is distributed.
28
+ - description: Source code must be made available when the licensed material is distributed.
29
29
  label: Disclose source
30
30
  tag: disclose-source
31
- - description: Users who interact with the software via network are given the right to receive a copy of the source code.
31
+ - description: Users who interact with the licensed material via network are given the right to receive a copy of the source code.
32
32
  label: Network use is distribution
33
33
  tag: network-use-disclose
34
- - description: Modifications must be released under the same license when distributing the software. In some cases a similar or related license may be used.
34
+ - description: Modifications must be released under the same license when distributing the licensed material. In some cases a similar or related license may be used.
35
35
  label: Same license
36
36
  tag: same-license
37
- - description: Modifications of existing files must be released under the same license when distributing the software. In some cases a similar or related license may be used.
37
+ - description: Modifications of existing files must be released under the same license when distributing the licensed material. In some cases a similar or related license may be used.
38
38
  label: Same license (file)
39
39
  tag: same-license--file
40
- - description: Modifications must be released under the same license when distributing the software. In some cases a similar or related license may be used, or this condition may not apply to works that use the software as a library.
40
+ - description: Modifications must be released under the same license when distributing the licensed material. In some cases a similar or related license may be used, or this condition may not apply to works that use the licensed material as a library.
41
41
  label: Same license (library)
42
42
  tag: same-license--library
43
43
 
@@ -51,6 +51,6 @@ limitations:
51
51
  - description: This license explicitly states that it does NOT grant any rights in the patents of contributors.
52
52
  label: Patent use
53
53
  tag: patent-use
54
- - description: The license explicitly states that it does NOT provide any warranty.
54
+ - description: This license explicitly states that it does NOT provide any warranty.
55
55
  label: Warranty
56
56
  tag: warranty
@@ -7,9 +7,9 @@ description: The BSD Zero Clause license goes further than the BSD 2-Clause lice
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders. You may take the additional step of removing the copyright notice.
8
8
 
9
9
  using:
10
- - PickMeUp: https://github.com/nazar-pc/PickMeUp/blob/master/copying.md
11
- - smoltcp: https://github.com/m-labs/smoltcp/blob/master/LICENSE-0BSD.txt
12
- - Toybox: https://github.com/landley/toybox/blob/master/LICENSE
10
+ PickMeUp: https://github.com/nazar-pc/PickMeUp/blob/master/copying.md
11
+ smoltcp: https://github.com/m-labs/smoltcp/blob/master/LICENSE-0BSD.txt
12
+ Toybox: https://github.com/landley/toybox/blob/master/LICENSE
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -12,9 +12,9 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
12
12
  note: The Apache Foundation recommends taking the additional step of adding a boilerplate notice to the header of each source file. You can find the notice in the appendix at the very end of the license text.
13
13
 
14
14
  using:
15
- - Kubernetes: https://github.com/kubernetes/kubernetes/blob/master/LICENSE
16
- - PDF.js: https://github.com/mozilla/pdf.js/blob/master/LICENSE
17
- - Swift: https://github.com/apple/swift/blob/master/LICENSE.txt
15
+ Kubernetes: https://github.com/kubernetes/kubernetes/blob/master/LICENSE
16
+ PDF.js: https://github.com/mozilla/pdf.js/blob/master/LICENSE
17
+ Swift: https://github.com/apple/swift/blob/master/LICENSE.txt
18
18
 
19
19
  permissions:
20
20
  - commercial-use
@@ -9,9 +9,9 @@ description: A permissive license that comes in two variants, the <a href="/lice
9
9
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.
10
10
 
11
11
  using:
12
- - go-redis: https://github.com/go-redis/redis/blob/master/LICENSE
13
- - Homebrew: https://github.com/Homebrew/brew/blob/master/LICENSE.txt
14
- - Pony: https://github.com/ponylang/ponyc/blob/master/LICENSE
12
+ go-redis: https://github.com/go-redis/redis/blob/master/LICENSE
13
+ Homebrew: https://github.com/Homebrew/brew/blob/master/LICENSE.txt
14
+ Pony: https://github.com/ponylang/ponyc/blob/master/LICENSE
15
15
 
16
16
  permissions:
17
17
  - commercial-use
@@ -8,9 +8,9 @@ description: A permissive license similar to the <a href="/licenses/bsd-2-clause
8
8
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.
9
9
 
10
10
  using:
11
- - d3: https://github.com/d3/d3/blob/master/LICENSE
12
- - LevelDB: https://github.com/google/leveldb/blob/master/LICENSE
13
- - Quill: https://github.com/quilljs/quill/blob/develop/LICENSE
11
+ d3: https://github.com/d3/d3/blob/master/LICENSE
12
+ LevelDB: https://github.com/google/leveldb/blob/master/LICENSE
13
+ Quill: https://github.com/quilljs/quill/blob/develop/LICENSE
14
14
 
15
15
  permissions:
16
16
  - commercial-use
@@ -7,9 +7,9 @@ description: A permissive license similar to the <a href="/licenses/bsd-3-clause
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders. Replace [project] with the project organization, if any, that sponsors this work.
8
8
 
9
9
  using:
10
- - Yosemite Blockchain: https://github.com/YosemiteLabs/yosemite-public-blockchain/blob/master/LICENSE
11
- - querybuilder: https://github.com/pwolfgang/querybuilder/blob/master/LICENSE
12
- - PMSPAUR-public: https://github.com/ArthurGodet/PMSPAUR-public/blob/master/LICENSE
10
+ Choco-solver: https://github.com/chocoteam/choco-solver/blob/master/LICENSE
11
+ PMSPAUR-public: https://github.com/ArthurGodet/PMSPAUR-public/blob/master/LICENSE
12
+ Switchblade: https://github.com/SwitchbladeBot/switchblade/blob/dev/LICENSE
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -10,9 +10,9 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
10
10
  note: Boost recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the [Boost Software License FAQ](https://www.boost.org/users/license.html#FAQ).
11
11
 
12
12
  using:
13
- - Boost: https://github.com/boostorg/boost/blob/master/LICENSE_1_0.txt
14
- - Catch2: https://github.com/catchorg/Catch2/blob/master/LICENSE.txt
15
- - DMD: https://github.com/dlang/dmd/blob/master/LICENSE.txt
13
+ Boost: https://github.com/boostorg/boost/blob/master/LICENSE_1_0.txt
14
+ Catch2: https://github.com/catchorg/Catch2/blob/master/LICENSE.txt
15
+ DMD: https://github.com/dlang/dmd/blob/master/LICENSE.txt
16
16
 
17
17
  permissions:
18
18
  - commercial-use
@@ -7,9 +7,9 @@ description: Permits almost any use subject to providing credit and license noti
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. It is also acceptable to solely supply a link to a copy of the license, usually to the <a href='https://creativecommons.org/licenses/by/4.0/'>canonical URL for the license</a>.
8
8
 
9
9
  using:
10
- - caniuse: https://github.com/Fyrd/caniuse/blob/master/LICENSE
11
- - WHATWG HTML standard: https://github.com/whatwg/html/blob/master/LICENSE
12
- - Kubernetes documentation: https://github.com/kubernetes/website/blob/master/LICENSE
10
+ caniuse: https://github.com/Fyrd/caniuse/blob/master/LICENSE
11
+ WHATWG HTML standard: https://github.com/whatwg/html/blob/master/LICENSE
12
+ Kubernetes documentation: https://github.com/kubernetes/website/blob/master/LICENSE
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -7,9 +7,9 @@ description: Similar to <a href='/licenses/cc-by-4.0/'>CC-BY-4.0</a> but require
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. It is also acceptable to solely supply a link to a copy of the license, usually to the <a href='https://creativecommons.org/licenses/by-sa/4.0/'>canonical URL for the license</a>.
8
8
 
9
9
  using:
10
- - Flight rules for Git: https://github.com/k88hudson/git-flight-rules/blob/master/LICENSE
11
- - GitHub-Dark: https://github.com/StylishThemes/GitHub-Dark/blob/master/LICENSE
12
- - Material Design Iconic Font: https://github.com/zavoloklom/material-design-iconic-font/blob/master/License.md
10
+ Flight rules for Git: https://github.com/k88hudson/git-flight-rules/blob/master/LICENSE
11
+ Material Design Iconic Font: https://github.com/zavoloklom/material-design-iconic-font/blob/master/License.md
12
+ OWASP MSTG: https://github.com/OWASP/owasp-mstg/blob/master/License.md
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -11,9 +11,9 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
11
11
  note: Creative Commons recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be <a href="https://wiki.creativecommons.org/wiki/CC0_FAQ#May_I_apply_CC0_to_computer_software.3F_If_so.2C_is_there_a_recommended_implementation.3F">found on their website</a>.
12
12
 
13
13
  using:
14
- - Awesome: https://github.com/sindresorhus/awesome/blob/master/license
15
- - Shields.io: https://github.com/badges/shields/blob/master/LICENSE
16
- - psdash: https://github.com/Jahaja/psdash/blob/master/LICENSE
14
+ Awesome: https://github.com/sindresorhus/awesome/blob/main/license
15
+ Shields.io: https://github.com/badges/shields/blob/master/LICENSE
16
+ psdash: https://github.com/Jahaja/psdash/blob/master/LICENSE
17
17
 
18
18
  permissions:
19
19
  - commercial-use
@@ -7,9 +7,9 @@ description: Strong copyleft license made by three French public research organi
7
7
  how: Create a text file (typically named LICENSE or LICENCE) in the root of your source code and copy the text of the license into the file.
8
8
 
9
9
  using:
10
- - BMC-Tools: https://github.com/ANSSI-FR/bmc-tools/blob/master/LICENCE.txt
11
- - Taxe foncière: https://github.com/etalab/taxe-fonciere/blob/master/LICENSE
12
- - VITAM: https://github.com/ProgrammeVitam/vitam/blob/master_0.15.x/Licence_CeCILL_V2.1-fr.txt
10
+ BMC-Tools: https://github.com/ANSSI-FR/bmc-tools/blob/master/LICENCE.txt
11
+ Taxe foncière: https://github.com/etalab/taxe-fonciere/blob/master/LICENSE
12
+ VITAM: https://github.com/ProgrammeVitam/vitam/blob/master_0.15.x/Licence_CeCILL_V2.1-fr.txt
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -9,9 +9,9 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
9
9
  note: The Apereo Foundation recommends taking the additional step of adding a boilerplate notice to the header of each source file. You can find the notice in the appendix at the very end of the license text.
10
10
 
11
11
  using:
12
- - Sakai: https://github.com/sakaiproject/sakai/blob/master/LICENSE
13
- - OAE: https://github.com/oaeproject/Hilary/blob/master/LICENSE
14
- - Opencast: https://github.com/opencast/opencast/blob/develop/LICENSE
12
+ Sakai: https://github.com/sakaiproject/sakai/blob/master/LICENSE
13
+ OAE: https://github.com/oaeproject/Hilary/blob/master/LICENSE
14
+ Opencast: https://github.com/opencast/opencast/blob/develop/LICENSE
15
15
 
16
16
  permissions:
17
17
  - commercial-use
@@ -7,9 +7,9 @@ description: This commercially-friendly copyleft license provides the ability to
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
8
8
 
9
9
  using:
10
- - Eclipse hawkBit: https://github.com/eclipse/hawkbit/blob/master/LICENSE
11
- - JUnit: https://github.com/junit-team/junit4/blob/master/LICENSE-junit.txt
12
- - Quil: https://github.com/quil/quil/blob/master/LICENSE
10
+ Eclipse hawkBit: https://github.com/eclipse/hawkbit/blob/master/LICENSE
11
+ JUnit: https://github.com/junit-team/junit4/blob/main/LICENSE-junit.txt
12
+ Quil: https://github.com/quil/quil/blob/master/LICENSE
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -9,9 +9,9 @@ description: This commercially-friendly copyleft license provides the ability to
9
9
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
10
10
 
11
11
  using:
12
- - Eclipse SmartHome: https://github.com/eclipse/smarthome/blob/master/LICENSE
13
- - openHAB: https://github.com/openhab/openhab-distro/blob/master/LICENSE
14
- - SUMO: https://github.com/eclipse/sumo/blob/master/LICENSE
12
+ Eclipse SmartHome: https://github.com/eclipse/smarthome/blob/master/LICENSE
13
+ openHAB: https://github.com/openhab/openhab-distro/blob/master/LICENSE
14
+ SUMO: https://github.com/eclipse/sumo/blob/master/LICENSE
15
15
 
16
16
  permissions:
17
17
  - commercial-use
@@ -7,9 +7,9 @@ description: The European Union Public Licence (EUPL) is a copyleft free/open so
7
7
  how: Indicate “Licensed under the EUPL” following the copyright notice of your source code, for example in a README file or directly in a source code file as a comment.
8
8
 
9
9
  using:
10
- - AethysRotation: https://github.com/SimCMinMax/AethysRotation/blob/master/LICENSE
11
- - WildDuck: https://github.com/nodemailer/wildduck/blob/master/LICENSE
12
- - ZoneMTA: https://github.com/zone-eu/zone-mta/blob/master/LICENSE
10
+ AethysRotation: https://github.com/SimCMinMax/AethysRotation/blob/master/LICENSE
11
+ WildDuck: https://github.com/nodemailer/wildduck/blob/master/LICENSE
12
+ ZoneMTA: https://github.com/zone-eu/zone-mta/blob/master/LICENSE
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -12,9 +12,9 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
12
12
  note: The Free Software Foundation recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the end of the license.
13
13
 
14
14
  using:
15
- - AliSQL: https://github.com/alibaba/AliSQL/blob/master/COPYING
16
- - Discourse: https://github.com/discourse/discourse/blob/master/LICENSE.txt
17
- - Joomla!: https://github.com/joomla/joomla-cms/blob/staging/LICENSE.txt
15
+ AliSQL: https://github.com/alibaba/AliSQL/blob/master/COPYING
16
+ Discourse: https://github.com/discourse/discourse/blob/master/LICENSE.txt
17
+ Joomla!: https://github.com/joomla/joomla-cms/blob/staging/LICENSE.txt
18
18
 
19
19
  permissions:
20
20
  - commercial-use
@@ -13,9 +13,9 @@ how: Create a text file (typically named COPYING, as per GNU conventions) in the
13
13
  note: The Free Software Foundation recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the end of the license.
14
14
 
15
15
  using:
16
- - Ansible: https://github.com/ansible/ansible/blob/devel/COPYING
17
- - Bash: https://git.savannah.gnu.org/cgit/bash.git/tree/COPYING
18
- - GIMP: https://git.gnome.org/browse/gimp/tree/COPYING
16
+ Ansible: https://github.com/ansible/ansible/blob/devel/COPYING
17
+ Bash: https://git.savannah.gnu.org/cgit/bash.git/tree/COPYING
18
+ GIMP: https://git.gnome.org/browse/gimp/tree/COPYING
19
19
 
20
20
  permissions:
21
21
  - commercial-use
@@ -7,9 +7,9 @@ description: A permissive license lets people do anything with your code with pr
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.
8
8
 
9
9
  using:
10
- - Starship: https://github.com/starship/starship/blob/master/LICENSE
11
- - Node.js semver: https://github.com/npm/node-semver/blob/master/LICENSE
12
- - OpenStreetMap iD: https://github.com/openstreetmap/iD/blob/develop/LICENSE.md
10
+ Starship: https://github.com/starship/starship/blob/master/LICENSE
11
+ Node.js semver: https://github.com/npm/node-semver/blob/master/LICENSE
12
+ OpenStreetMap iD: https://github.com/openstreetmap/iD/blob/develop/LICENSE.md
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -9,9 +9,9 @@ description: A short and simple permissive license with conditions only requirin
9
9
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.
10
10
 
11
11
  using:
12
- - Babel: https://github.com/babel/babel/blob/master/LICENSE
13
- - .NET Core: https://github.com/dotnet/runtime/blob/master/LICENSE.TXT
14
- - Rails: https://github.com/rails/rails/blob/master/MIT-LICENSE
12
+ Babel: https://github.com/babel/babel/blob/master/LICENSE
13
+ .NET Core: https://github.com/dotnet/runtime/blob/master/LICENSE.TXT
14
+ Rails: https://github.com/rails/rails/blob/master/MIT-LICENSE
15
15
 
16
16
  permissions:
17
17
  - commercial-use