licensee 9.13.1 → 9.15.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (133) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.md +1 -1
  3. data/bin/licensee +1 -1
  4. data/lib/licensee.rb +4 -4
  5. data/lib/licensee/commands/detect.rb +3 -5
  6. data/lib/licensee/commands/diff.rb +3 -5
  7. data/lib/licensee/content_helper.rb +46 -42
  8. data/lib/licensee/hash_helper.rb +1 -1
  9. data/lib/licensee/license.rb +29 -15
  10. data/lib/licensee/matchers.rb +1 -0
  11. data/lib/licensee/matchers/cabal.rb +1 -1
  12. data/lib/licensee/matchers/cargo.rb +1 -1
  13. data/lib/licensee/matchers/copyright.rb +3 -8
  14. data/lib/licensee/matchers/cran.rb +1 -1
  15. data/lib/licensee/matchers/dice.rb +2 -2
  16. data/lib/licensee/matchers/dist_zilla.rb +1 -1
  17. data/lib/licensee/matchers/gemspec.rb +4 -4
  18. data/lib/licensee/matchers/npm_bower.rb +5 -2
  19. data/lib/licensee/matchers/nuget.rb +43 -0
  20. data/lib/licensee/matchers/spdx.rb +1 -1
  21. data/lib/licensee/project_files/license_file.rb +29 -22
  22. data/lib/licensee/project_files/package_manager_file.rb +3 -2
  23. data/lib/licensee/project_files/project_file.rb +3 -4
  24. data/lib/licensee/project_files/readme_file.rb +1 -1
  25. data/lib/licensee/projects/fs_project.rb +8 -5
  26. data/lib/licensee/projects/git_project.rb +6 -4
  27. data/lib/licensee/projects/github_project.rb +1 -1
  28. data/lib/licensee/projects/project.rb +11 -10
  29. data/lib/licensee/version.rb +1 -1
  30. data/licensee.gemspec +7 -8
  31. data/spec/fixture_spec.rb +3 -3
  32. data/spec/fixtures/bom/LICENSE.txt +21 -0
  33. data/spec/fixtures/bsd-3-authorowner/LICENSE +27 -0
  34. data/spec/fixtures/cc-by-sa-mdlinks/License.md +173 -0
  35. data/spec/fixtures/cc-by-sa-nocclicensor/License.md +425 -0
  36. data/spec/fixtures/crlf-bsd/LICENSE.md +27 -0
  37. data/spec/fixtures/detect.json +16 -22
  38. data/spec/fixtures/eupl-cal2017/LICENSE.txt +274 -0
  39. data/spec/fixtures/fixtures.yml +62 -22
  40. data/spec/fixtures/license-hashes.json +39 -38
  41. data/spec/fixtures/markdown-artistic/LICENSE.md +192 -0
  42. data/spec/fixtures/pixar-modified-apache/LICENSE.txt +174 -0
  43. data/spec/fixtures/readme-invalid-encoding/README.md +24 -0
  44. data/spec/fixtures/vim/LICENSE +78 -0
  45. data/spec/integration_spec.rb +86 -9
  46. data/spec/licensee/commands/detect_spec.rb +2 -2
  47. data/spec/licensee/content_helper_spec.rb +21 -21
  48. data/spec/licensee/hash_helper_spec.rb +22 -22
  49. data/spec/licensee/license_meta_spec.rb +5 -11
  50. data/spec/licensee/license_spec.rb +14 -10
  51. data/spec/licensee/matchers/dice_matcher_spec.rb +4 -11
  52. data/spec/licensee/matchers/matcher_spec.rb +6 -6
  53. data/spec/licensee/matchers/npm_bower_matcher_spec.rb +9 -0
  54. data/spec/licensee/matchers/nu_get_matcher_spec.rb +91 -0
  55. data/spec/licensee/project_files/license_file_spec.rb +34 -27
  56. data/spec/licensee/project_files/package_info_spec.rb +8 -0
  57. data/spec/licensee/project_spec.rb +1 -3
  58. data/spec/licensee/rule_spec.rb +1 -1
  59. data/spec/licensee_spec.rb +1 -1
  60. data/spec/spec_helper.rb +3 -3
  61. data/spec/vendored_license_spec.rb +2 -2
  62. data/vendor/choosealicense.com/_data/meta.yml +1 -1
  63. data/vendor/choosealicense.com/_data/rules.yml +13 -13
  64. data/vendor/choosealicense.com/_licenses/0bsd.txt +3 -3
  65. data/vendor/choosealicense.com/_licenses/apache-2.0.txt +3 -3
  66. data/vendor/choosealicense.com/_licenses/bsd-2-clause.txt +3 -3
  67. data/vendor/choosealicense.com/_licenses/bsd-3-clause.txt +3 -3
  68. data/vendor/choosealicense.com/_licenses/bsd-4-clause.txt +3 -3
  69. data/vendor/choosealicense.com/_licenses/bsl-1.0.txt +3 -3
  70. data/vendor/choosealicense.com/_licenses/cc-by-4.0.txt +16 -16
  71. data/vendor/choosealicense.com/_licenses/cc-by-sa-4.0.txt +16 -16
  72. data/vendor/choosealicense.com/_licenses/cc0-1.0.txt +3 -3
  73. data/vendor/choosealicense.com/_licenses/cecill-2.1.txt +3 -3
  74. data/vendor/choosealicense.com/_licenses/ecl-2.0.txt +3 -3
  75. data/vendor/choosealicense.com/_licenses/epl-1.0.txt +3 -3
  76. data/vendor/choosealicense.com/_licenses/epl-2.0.txt +3 -3
  77. data/vendor/choosealicense.com/_licenses/eupl-1.2.txt +77 -60
  78. data/vendor/choosealicense.com/_licenses/gpl-2.0.txt +3 -3
  79. data/vendor/choosealicense.com/_licenses/gpl-3.0.txt +3 -3
  80. data/vendor/choosealicense.com/_licenses/isc.txt +3 -3
  81. data/vendor/choosealicense.com/_licenses/mit-0.txt +45 -0
  82. data/vendor/choosealicense.com/_licenses/mit.txt +3 -3
  83. data/vendor/choosealicense.com/_licenses/mpl-2.0.txt +3 -3
  84. data/vendor/choosealicense.com/_licenses/ncsa.txt +3 -3
  85. data/vendor/choosealicense.com/_licenses/odbl-1.0.txt +3 -3
  86. data/vendor/choosealicense.com/_licenses/ofl-1.1.txt +3 -3
  87. data/vendor/choosealicense.com/_licenses/osl-3.0.txt +3 -3
  88. data/vendor/choosealicense.com/_licenses/postgresql.txt +3 -3
  89. data/vendor/choosealicense.com/_licenses/unlicense.txt +3 -3
  90. data/vendor/choosealicense.com/_licenses/upl-1.0.txt +3 -3
  91. data/vendor/choosealicense.com/_licenses/vim.txt +3 -3
  92. data/vendor/choosealicense.com/_licenses/zlib.txt +3 -3
  93. data/vendor/license-list-XML/src/0BSD.xml +21 -0
  94. data/vendor/license-list-XML/src/AFL-3.0.xml +212 -0
  95. data/vendor/license-list-XML/src/AGPL-3.0.xml +852 -0
  96. data/vendor/license-list-XML/src/Apache-2.0.xml +223 -0
  97. data/vendor/license-list-XML/src/Artistic-2.0.xml +238 -0
  98. data/vendor/license-list-XML/src/BSD-2-Clause.xml +42 -0
  99. data/vendor/license-list-XML/src/BSD-3-Clause-Clear.xml +59 -0
  100. data/vendor/license-list-XML/src/BSD-3-Clause.xml +46 -0
  101. data/vendor/license-list-XML/src/BSD-4-Clause.xml +59 -0
  102. data/vendor/license-list-XML/src/BSL-1.0.xml +30 -0
  103. data/vendor/license-list-XML/src/CC-BY-4.0.xml +444 -0
  104. data/vendor/license-list-XML/src/CC-BY-SA-4.0.xml +475 -0
  105. data/vendor/license-list-XML/src/CC0-1.0.xml +153 -0
  106. data/vendor/license-list-XML/src/CECILL-2.1.xml +669 -0
  107. data/vendor/license-list-XML/src/ECL-2.0.xml +242 -0
  108. data/vendor/license-list-XML/src/EPL-1.0.xml +255 -0
  109. data/vendor/license-list-XML/src/EPL-2.0.xml +639 -0
  110. data/vendor/license-list-XML/src/EUPL-1.1.xml +337 -0
  111. data/vendor/license-list-XML/src/EUPL-1.2.xml +502 -0
  112. data/vendor/license-list-XML/src/GPL-2.0.xml +474 -0
  113. data/vendor/license-list-XML/src/GPL-3.0.xml +858 -0
  114. data/vendor/license-list-XML/src/ISC.xml +29 -0
  115. data/vendor/license-list-XML/src/LGPL-2.1.xml +662 -0
  116. data/vendor/license-list-XML/src/LGPL-3.0.xml +260 -0
  117. data/vendor/license-list-XML/src/LPPL-1.3c.xml +380 -0
  118. data/vendor/license-list-XML/src/MIT-0.xml +40 -0
  119. data/vendor/license-list-XML/src/MIT.xml +32 -0
  120. data/vendor/license-list-XML/src/MPL-2.0.xml +438 -0
  121. data/vendor/license-list-XML/src/MS-PL.xml +89 -0
  122. data/vendor/license-list-XML/src/MS-RL.xml +97 -0
  123. data/vendor/license-list-XML/src/NCSA.xml +60 -0
  124. data/vendor/license-list-XML/src/ODbL-1.0.xml +660 -0
  125. data/vendor/license-list-XML/src/OFL-1.1.xml +94 -0
  126. data/vendor/license-list-XML/src/OSL-3.0.xml +209 -0
  127. data/vendor/license-list-XML/src/PostgreSQL.xml +32 -0
  128. data/vendor/license-list-XML/src/UPL-1.0.xml +46 -0
  129. data/vendor/license-list-XML/src/Unlicense.xml +27 -0
  130. data/vendor/license-list-XML/src/Vim.xml +124 -0
  131. data/vendor/license-list-XML/src/WTFPL.xml +30 -0
  132. data/vendor/license-list-XML/src/Zlib.xml +38 -0
  133. metadata +97 -32
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <SPDXLicenseCollection xmlns="http://www.spdx.org/license">
3
+ <license isOsiApproved="false" licenseId="WTFPL"
4
+ name="Do What The F*ck You Want To Public License">
5
+ <crossRefs>
6
+ <crossRef>http://www.wtfpl.net/about/</crossRef>
7
+ <crossRef>http://sam.zoy.org/wtfpl/COPYING</crossRef>
8
+ </crossRefs>
9
+ <text>
10
+ <titleText>
11
+ <p>DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
12
+ <br/>Version 2, December 2004
13
+ </p>
14
+ </titleText>
15
+ <p>Copyright (C) 2004 Sam Hocevar &lt;sam@hocevar.net&gt;</p>
16
+
17
+ <p>Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and
18
+ changing it is allowed as long as the name is changed.</p>
19
+ <p>DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
20
+ <br/>TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
21
+ </p>
22
+ <list>
23
+ <item>
24
+ <bullet>0.</bullet>
25
+ You just DO WHAT THE FUCK YOU WANT TO.
26
+ </item>
27
+ </list>
28
+ </text>
29
+ </license>
30
+ </SPDXLicenseCollection>
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <SPDXLicenseCollection xmlns="http://www.spdx.org/license">
3
+ <license isOsiApproved="true" licenseId="Zlib" name="zlib License">
4
+ <crossRefs>
5
+ <crossRef>http://www.zlib.net/zlib_license.html</crossRef>
6
+ <crossRef>https://opensource.org/licenses/Zlib</crossRef>
7
+ </crossRefs>
8
+ <text>
9
+ <titleText>
10
+ <p>zlib License</p>
11
+ </titleText>
12
+ <copyrightText>
13
+ <p>Copyright (c) &lt;year&gt; &lt;copyright holders&gt;</p>
14
+ </copyrightText>
15
+ <p>This software is provided 'as-is', without any express or implied warranty. In no event will the authors
16
+ be held liable for any damages arising from the use of this software.</p>
17
+ <p>Permission is granted to anyone to use this software for any purpose, including commercial applications,
18
+ and to alter it and redistribute it freely, subject to the following restrictions:</p>
19
+ <list>
20
+ <item>
21
+ <bullet>1.</bullet>
22
+ The origin of this software must not be misrepresented; you must not claim that you wrote the
23
+ original software. If you use this software in a product, an acknowledgment in the product
24
+ documentation would be appreciated but is not required.
25
+ </item>
26
+ <item>
27
+ <bullet>2.</bullet>
28
+ Altered source versions must be plainly marked as such, and must not be misrepresented as being
29
+ the original software.
30
+ </item>
31
+ <item>
32
+ <bullet>3.</bullet>
33
+ This notice may not be removed or altered from any source distribution.
34
+ </item>
35
+ </list>
36
+ </text>
37
+ </license>
38
+ </SPDXLicenseCollection>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: licensee
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.13.1
4
+ version: 9.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Balter
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-13 00:00:00.000000000 Z
11
+ date: 2021-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '4.17'
33
+ version: '4.20'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '4.17'
40
+ version: '4.20'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: reverse_markdown
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -56,30 +56,56 @@ dependencies:
56
56
  name: rugged
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0.24'
62
+ - - "<"
63
+ - !ruby/object:Gem::Version
64
+ version: '2.0'
62
65
  type: :runtime
63
66
  prerelease: false
64
67
  version_requirements: !ruby/object:Gem::Requirement
65
68
  requirements:
66
- - - "~>"
69
+ - - ">="
67
70
  - !ruby/object:Gem::Version
68
71
  version: '0.24'
72
+ - - "<"
73
+ - !ruby/object:Gem::Version
74
+ version: '2.0'
69
75
  - !ruby/object:Gem::Dependency
70
76
  name: thor
71
77
  requirement: !ruby/object:Gem::Requirement
72
78
  requirements:
73
- - - "~>"
79
+ - - ">="
74
80
  - !ruby/object:Gem::Version
75
81
  version: '0.19'
82
+ - - "<"
83
+ - !ruby/object:Gem::Version
84
+ version: '2.0'
76
85
  type: :runtime
77
86
  prerelease: false
78
87
  version_requirements: !ruby/object:Gem::Requirement
79
88
  requirements:
80
- - - "~>"
89
+ - - ">="
81
90
  - !ruby/object:Gem::Version
82
91
  version: '0.19'
92
+ - - "<"
93
+ - !ruby/object:Gem::Version
94
+ version: '2.0'
95
+ - !ruby/object:Gem::Dependency
96
+ name: gem-release
97
+ requirement: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - "~>"
100
+ - !ruby/object:Gem::Version
101
+ version: '2.0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - "~>"
107
+ - !ruby/object:Gem::Version
108
+ version: '2.0'
83
109
  - !ruby/object:Gem::Dependency
84
110
  name: mustache
85
111
  requirement: !ruby/object:Gem::Requirement
@@ -114,20 +140,6 @@ dependencies:
114
140
  - - "~>"
115
141
  - !ruby/object:Gem::Version
116
142
  version: '0.9'
117
- - !ruby/object:Gem::Dependency
118
- name: rake
119
- requirement: !ruby/object:Gem::Requirement
120
- requirements:
121
- - - "~>"
122
- - !ruby/object:Gem::Version
123
- version: '10.3'
124
- type: :development
125
- prerelease: false
126
- version_requirements: !ruby/object:Gem::Requirement
127
- requirements:
128
- - - "~>"
129
- - !ruby/object:Gem::Version
130
- version: '10.3'
131
143
  - !ruby/object:Gem::Dependency
132
144
  name: rspec
133
145
  requirement: !ruby/object:Gem::Requirement
@@ -148,14 +160,14 @@ dependencies:
148
160
  requirements:
149
161
  - - "~>"
150
162
  - !ruby/object:Gem::Version
151
- version: '0.80'
163
+ version: '1.0'
152
164
  type: :development
153
165
  prerelease: false
154
166
  version_requirements: !ruby/object:Gem::Requirement
155
167
  requirements:
156
168
  - - "~>"
157
169
  - !ruby/object:Gem::Version
158
- version: '0.80'
170
+ version: '1.0'
159
171
  - !ruby/object:Gem::Dependency
160
172
  name: rubocop-performance
161
173
  requirement: !ruby/object:Gem::Requirement
@@ -176,14 +188,14 @@ dependencies:
176
188
  requirements:
177
189
  - - "~>"
178
190
  - !ruby/object:Gem::Version
179
- version: '1.36'
191
+ version: '2.0'
180
192
  type: :development
181
193
  prerelease: false
182
194
  version_requirements: !ruby/object:Gem::Requirement
183
195
  requirements:
184
196
  - - "~>"
185
197
  - !ruby/object:Gem::Version
186
- version: '1.36'
198
+ version: '2.0'
187
199
  - !ruby/object:Gem::Dependency
188
200
  name: simplecov
189
201
  requirement: !ruby/object:Gem::Requirement
@@ -245,6 +257,7 @@ files:
245
257
  - lib/licensee/matchers/gemspec.rb
246
258
  - lib/licensee/matchers/matcher.rb
247
259
  - lib/licensee/matchers/npm_bower.rb
260
+ - lib/licensee/matchers/nuget.rb
248
261
  - lib/licensee/matchers/package.rb
249
262
  - lib/licensee/matchers/reference.rb
250
263
  - lib/licensee/matchers/spdx.rb
@@ -266,6 +279,8 @@ files:
266
279
  - spec/fixtures/apache-with-readme-notice/LICENSE
267
280
  - spec/fixtures/apache-with-readme-notice/LICENSE.header
268
281
  - spec/fixtures/apache-with-readme-notice/README.md
282
+ - spec/fixtures/bom/LICENSE.txt
283
+ - spec/fixtures/bsd-3-authorowner/LICENSE
269
284
  - spec/fixtures/bsd-3-lists/LICENSE.BULLETS
270
285
  - spec/fixtures/bsd-3-lists/LICENSE.NUMBERS
271
286
  - spec/fixtures/bsd-3-noendorseslash/LICENSE
@@ -275,13 +290,17 @@ files:
275
290
  - spec/fixtures/case-sensitive/LiCeNsE.TxT
276
291
  - spec/fixtures/cc-by-nc-sa/LICENSE
277
292
  - spec/fixtures/cc-by-nd/LICENSE
293
+ - spec/fixtures/cc-by-sa-mdlinks/License.md
294
+ - spec/fixtures/cc-by-sa-nocclicensor/License.md
278
295
  - spec/fixtures/cc0-cal2013/LICENSE
279
296
  - spec/fixtures/cc0-cc/LICENSE
280
297
  - spec/fixtures/copyright-encoding/COPYING
298
+ - spec/fixtures/crlf-bsd/LICENSE.md
281
299
  - spec/fixtures/crlf-license/LICENSE
282
300
  - spec/fixtures/description-license/DESCRIPTION
283
301
  - spec/fixtures/description-license/LICENSE
284
302
  - spec/fixtures/detect.json
303
+ - spec/fixtures/eupl-cal2017/LICENSE.txt
285
304
  - spec/fixtures/fcpl-modified-mpl/LICENSE
286
305
  - spec/fixtures/fixtures.yml
287
306
  - spec/fixtures/gemspec/project._gemspec
@@ -296,6 +315,7 @@ files:
296
315
  - spec/fixtures/license-in-parent-folder/license-folder/LICENSE.txt
297
316
  - spec/fixtures/license-with-readme-reference/LICENSE
298
317
  - spec/fixtures/license-with-readme-reference/README
318
+ - spec/fixtures/markdown-artistic/LICENSE.md
299
319
  - spec/fixtures/markdown-gpl/LICENSE.md
300
320
  - spec/fixtures/mit-optional/LICENSE.txt
301
321
  - spec/fixtures/mit-with-copyright/COPYRIGHT.md
@@ -306,8 +326,11 @@ files:
306
326
  - spec/fixtures/multiple-arrs/LICENSE
307
327
  - spec/fixtures/multiple-license-files/LICENSE
308
328
  - spec/fixtures/multiple-license-files/LICENSE.txt
329
+ - spec/fixtures/pixar-modified-apache/LICENSE.txt
330
+ - spec/fixtures/readme-invalid-encoding/README.md
309
331
  - spec/fixtures/readme/README.md
310
332
  - spec/fixtures/unlicense-noinfo/LICENSE
333
+ - spec/fixtures/vim/LICENSE
311
334
  - spec/fixtures/webmock/licensee.json
312
335
  - spec/fixtures/wrk-modified-apache/LICENSE
313
336
  - spec/integration_spec.rb
@@ -330,6 +353,7 @@ files:
330
353
  - spec/licensee/matchers/gemspec_matcher_spec.rb
331
354
  - spec/licensee/matchers/matcher_spec.rb
332
355
  - spec/licensee/matchers/npm_bower_matcher_spec.rb
356
+ - spec/licensee/matchers/nu_get_matcher_spec.rb
333
357
  - spec/licensee/matchers/package_matcher_spec.rb
334
358
  - spec/licensee/matchers/reference_matcher_spec.rb
335
359
  - spec/licensee/matchers/spdx_matcher_spec.rb
@@ -372,6 +396,7 @@ files:
372
396
  - vendor/choosealicense.com/_licenses/lgpl-2.1.txt
373
397
  - vendor/choosealicense.com/_licenses/lgpl-3.0.txt
374
398
  - vendor/choosealicense.com/_licenses/lppl-1.3c.txt
399
+ - vendor/choosealicense.com/_licenses/mit-0.txt
375
400
  - vendor/choosealicense.com/_licenses/mit.txt
376
401
  - vendor/choosealicense.com/_licenses/mpl-2.0.txt
377
402
  - vendor/choosealicense.com/_licenses/ms-pl.txt
@@ -386,27 +411,67 @@ files:
386
411
  - vendor/choosealicense.com/_licenses/vim.txt
387
412
  - vendor/choosealicense.com/_licenses/wtfpl.txt
388
413
  - vendor/choosealicense.com/_licenses/zlib.txt
414
+ - vendor/license-list-XML/src/0BSD.xml
415
+ - vendor/license-list-XML/src/AFL-3.0.xml
416
+ - vendor/license-list-XML/src/AGPL-3.0.xml
417
+ - vendor/license-list-XML/src/Apache-2.0.xml
418
+ - vendor/license-list-XML/src/Artistic-2.0.xml
419
+ - vendor/license-list-XML/src/BSD-2-Clause.xml
420
+ - vendor/license-list-XML/src/BSD-3-Clause-Clear.xml
421
+ - vendor/license-list-XML/src/BSD-3-Clause.xml
422
+ - vendor/license-list-XML/src/BSD-4-Clause.xml
423
+ - vendor/license-list-XML/src/BSL-1.0.xml
424
+ - vendor/license-list-XML/src/CC-BY-4.0.xml
425
+ - vendor/license-list-XML/src/CC-BY-SA-4.0.xml
426
+ - vendor/license-list-XML/src/CC0-1.0.xml
427
+ - vendor/license-list-XML/src/CECILL-2.1.xml
428
+ - vendor/license-list-XML/src/ECL-2.0.xml
429
+ - vendor/license-list-XML/src/EPL-1.0.xml
430
+ - vendor/license-list-XML/src/EPL-2.0.xml
431
+ - vendor/license-list-XML/src/EUPL-1.1.xml
432
+ - vendor/license-list-XML/src/EUPL-1.2.xml
433
+ - vendor/license-list-XML/src/GPL-2.0.xml
434
+ - vendor/license-list-XML/src/GPL-3.0.xml
435
+ - vendor/license-list-XML/src/ISC.xml
436
+ - vendor/license-list-XML/src/LGPL-2.1.xml
437
+ - vendor/license-list-XML/src/LGPL-3.0.xml
438
+ - vendor/license-list-XML/src/LPPL-1.3c.xml
439
+ - vendor/license-list-XML/src/MIT-0.xml
440
+ - vendor/license-list-XML/src/MIT.xml
441
+ - vendor/license-list-XML/src/MPL-2.0.xml
442
+ - vendor/license-list-XML/src/MS-PL.xml
443
+ - vendor/license-list-XML/src/MS-RL.xml
444
+ - vendor/license-list-XML/src/NCSA.xml
445
+ - vendor/license-list-XML/src/ODbL-1.0.xml
446
+ - vendor/license-list-XML/src/OFL-1.1.xml
447
+ - vendor/license-list-XML/src/OSL-3.0.xml
448
+ - vendor/license-list-XML/src/PostgreSQL.xml
449
+ - vendor/license-list-XML/src/UPL-1.0.xml
450
+ - vendor/license-list-XML/src/Unlicense.xml
451
+ - vendor/license-list-XML/src/Vim.xml
452
+ - vendor/license-list-XML/src/WTFPL.xml
453
+ - vendor/license-list-XML/src/Zlib.xml
389
454
  homepage: https://github.com/benbalter/licensee
390
455
  licenses:
391
456
  - MIT
392
457
  metadata: {}
393
- post_install_message:
458
+ post_install_message:
394
459
  rdoc_options: []
395
460
  require_paths:
396
461
  - lib
397
462
  required_ruby_version: !ruby/object:Gem::Requirement
398
463
  requirements:
399
- - - ">"
464
+ - - ">="
400
465
  - !ruby/object:Gem::Version
401
- version: '2.3'
466
+ version: '2.5'
402
467
  required_rubygems_version: !ruby/object:Gem::Requirement
403
468
  requirements:
404
469
  - - ">="
405
470
  - !ruby/object:Gem::Version
406
471
  version: '0'
407
472
  requirements: []
408
- rubygems_version: 3.1.2
409
- signing_key:
473
+ rubygems_version: 3.2.12
474
+ signing_key:
410
475
  specification_version: 4
411
476
  summary: A Ruby Gem to detect open source project licenses
412
477
  test_files: []