license_scout 1.3.16 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +195 -0
- data/bin/license_scout +3 -59
- data/bin/mix_lock_json +0 -0
- data/bin/rebar_lock_json +0 -0
- data/lib/license_scout/cli.rb +99 -0
- data/lib/license_scout/collector.rb +25 -77
- data/lib/license_scout/config.rb +94 -0
- data/lib/license_scout/data/dependeny_manifest_v2_schema.json +62 -0
- data/lib/license_scout/data/exceptions.json +306 -0
- data/lib/license_scout/data/licenses.json +4653 -0
- data/lib/license_scout/dependency.rb +79 -7
- data/lib/license_scout/dependency_manager/base.rb +74 -42
- data/lib/license_scout/dependency_manager/berkshelf.rb +25 -50
- data/lib/license_scout/dependency_manager/bundler/_bundler_script.rb +1 -1
- data/lib/license_scout/dependency_manager/bundler.rb +47 -69
- data/lib/license_scout/dependency_manager/cpanm.rb +62 -112
- data/lib/license_scout/dependency_manager/dep.rb +29 -36
- data/lib/license_scout/dependency_manager/glide.rb +25 -36
- data/lib/license_scout/dependency_manager/godep.rb +27 -26
- data/lib/license_scout/dependency_manager/habitat.rb +126 -0
- data/lib/license_scout/dependency_manager/mix.rb +105 -0
- data/lib/license_scout/dependency_manager/npm.rb +30 -86
- data/lib/license_scout/dependency_manager/rebar.rb +26 -45
- data/lib/license_scout/dependency_manager.rb +19 -5
- data/lib/license_scout/exceptions.rb +2 -43
- data/lib/license_scout/license.rb +126 -0
- data/lib/license_scout/{license_file_analyzer.rb → log.rb} +4 -6
- data/lib/license_scout/reporter.rb +149 -55
- data/lib/license_scout/spdx.rb +123 -0
- data/lib/license_scout/version.rb +1 -1
- data/lib/license_scout.rb +2 -0
- data/native_parsers/mix_lock_json/README.md +21 -0
- data/native_parsers/mix_lock_json/lib/mix_lock_json.ex +20 -0
- data/native_parsers/mix_lock_json/mix.exs +31 -0
- data/native_parsers/mix_lock_json/mix.lock +3 -0
- data/{erl_src → native_parsers}/rebar_lock_json/rebar.lock +2 -2
- metadata +144 -67
- data/lib/license_scout/canonical_licenses/BSD-2-Clause.txt +0 -19
- data/lib/license_scout/canonical_licenses/BSD-3-Clause.txt +0 -27
- data/lib/license_scout/canonical_licenses/BSD-4-Clause.txt +0 -31
- data/lib/license_scout/canonical_licenses/Chef-MLSA.txt +0 -5
- data/lib/license_scout/canonical_licenses/ISC.txt +0 -14
- data/lib/license_scout/canonical_licenses/MIT.txt +0 -20
- data/lib/license_scout/dependency_manager/bundler/LICENSE.md +0 -23
- data/lib/license_scout/dependency_manager/json/README.md +0 -392
- data/lib/license_scout/dependency_manager/manual.rb +0 -67
- data/lib/license_scout/license_file_analyzer/any_matcher.rb +0 -37
- data/lib/license_scout/license_file_analyzer/definitions.rb +0 -219
- data/lib/license_scout/license_file_analyzer/header_matcher.rb +0 -34
- data/lib/license_scout/license_file_analyzer/matcher.rb +0 -46
- data/lib/license_scout/license_file_analyzer/template.rb +0 -45
- data/lib/license_scout/license_file_analyzer/templates/Apache2-short.txt +0 -11
- data/lib/license_scout/license_file_analyzer/templates/Apache2.txt +0 -170
- data/lib/license_scout/license_file_analyzer/templates/BSD-2-Clause-bullets.txt +0 -18
- data/lib/license_scout/license_file_analyzer/templates/BSD-2-Clause.txt +0 -19
- data/lib/license_scout/license_file_analyzer/templates/BSD-3-Clause-alt-format.txt +0 -24
- data/lib/license_scout/license_file_analyzer/templates/BSD-3-Clause.txt +0 -21
- data/lib/license_scout/license_file_analyzer/templates/BSD.txt +0 -24
- data/lib/license_scout/license_file_analyzer/templates/Chef-MLSA.txt +0 -5
- data/lib/license_scout/license_file_analyzer/templates/EPLICENSE.txt +0 -286
- data/lib/license_scout/license_file_analyzer/templates/GPL-2.0.txt +0 -339
- data/lib/license_scout/license_file_analyzer/templates/GPL-3.0.txt +0 -674
- data/lib/license_scout/license_file_analyzer/templates/ISC.txt +0 -2
- data/lib/license_scout/license_file_analyzer/templates/LGPL-3.0.txt +0 -165
- data/lib/license_scout/license_file_analyzer/templates/MIT.txt +0 -9
- data/lib/license_scout/license_file_analyzer/templates/MPL2.txt +0 -373
- data/lib/license_scout/license_file_analyzer/templates/Python-2.0.txt +0 -47
- data/lib/license_scout/license_file_analyzer/templates/Ruby.txt +0 -52
- data/lib/license_scout/license_file_analyzer/text.rb +0 -46
- data/lib/license_scout/net_fetcher.rb +0 -106
- data/lib/license_scout/options.rb +0 -47
- data/lib/license_scout/overrides.rb +0 -1123
- /data/{erl_src → native_parsers}/rebar_lock_json/README.md +0 -0
- /data/{erl_src → native_parsers}/rebar_lock_json/rebar.config +0 -0
- /data/{erl_src → native_parsers}/rebar_lock_json/src/rebar_lock_json.app.src +0 -0
- /data/{erl_src → native_parsers}/rebar_lock_json/src/rebar_lock_json.erl +0 -0
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: license_scout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Serdar Sutay
|
8
|
+
- Tom Duffield
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2018-04-13 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: ffi-yajl
|
@@ -28,62 +29,142 @@ dependencies:
|
|
28
29
|
name: mixlib-shellout
|
29
30
|
requirement: !ruby/object:Gem::Requirement
|
30
31
|
requirements:
|
31
|
-
- - "
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '2.2'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
32
40
|
- !ruby/object:Gem::Version
|
33
41
|
version: '2.2'
|
34
|
-
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: toml-rb
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
35
47
|
- !ruby/object:Gem::Version
|
36
|
-
version: '
|
48
|
+
version: '1.0'
|
37
49
|
type: :runtime
|
38
50
|
prerelease: false
|
39
51
|
version_requirements: !ruby/object:Gem::Requirement
|
40
52
|
requirements:
|
41
|
-
- - "
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '1.0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: licensee
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '9.8'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '9.8'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: mixlib-config
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - "~>"
|
42
75
|
- !ruby/object:Gem::Version
|
43
76
|
version: '2.2'
|
44
|
-
|
77
|
+
type: :runtime
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - "~>"
|
45
82
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
83
|
+
version: '2.2'
|
47
84
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
85
|
+
name: mixlib-cli
|
49
86
|
requirement: !ruby/object:Gem::Requirement
|
50
87
|
requirements:
|
51
88
|
- - ">="
|
52
89
|
- !ruby/object:Gem::Version
|
53
|
-
version: '
|
54
|
-
|
90
|
+
version: '0'
|
91
|
+
type: :runtime
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
55
96
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
97
|
+
version: '0'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: mixlib-log
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
57
105
|
type: :runtime
|
58
106
|
prerelease: false
|
59
107
|
version_requirements: !ruby/object:Gem::Requirement
|
60
108
|
requirements:
|
61
109
|
- - ">="
|
62
110
|
- !ruby/object:Gem::Version
|
63
|
-
version: '
|
64
|
-
|
111
|
+
version: '0'
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: terminal-table
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
type: :runtime
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
65
124
|
- !ruby/object:Gem::Version
|
66
|
-
version: '
|
125
|
+
version: '0'
|
67
126
|
- !ruby/object:Gem::Dependency
|
68
|
-
name:
|
127
|
+
name: fuzzy_match
|
69
128
|
requirement: !ruby/object:Gem::Requirement
|
70
129
|
requirements:
|
71
130
|
- - ">="
|
72
131
|
- !ruby/object:Gem::Version
|
73
|
-
version: '
|
74
|
-
|
132
|
+
version: '0'
|
133
|
+
type: :runtime
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ">="
|
75
138
|
- !ruby/object:Gem::Version
|
76
|
-
version: '
|
139
|
+
version: '0'
|
140
|
+
- !ruby/object:Gem::Dependency
|
141
|
+
name: bundler
|
142
|
+
requirement: !ruby/object:Gem::Requirement
|
143
|
+
requirements:
|
144
|
+
- - "~>"
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '1.12'
|
77
147
|
type: :development
|
78
148
|
prerelease: false
|
79
149
|
version_requirements: !ruby/object:Gem::Requirement
|
80
150
|
requirements:
|
81
|
-
- - "
|
151
|
+
- - "~>"
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '1.12'
|
154
|
+
- !ruby/object:Gem::Dependency
|
155
|
+
name: rake
|
156
|
+
requirement: !ruby/object:Gem::Requirement
|
157
|
+
requirements:
|
158
|
+
- - "~>"
|
82
159
|
- !ruby/object:Gem::Version
|
83
160
|
version: '10.0'
|
84
|
-
|
161
|
+
type: :development
|
162
|
+
prerelease: false
|
163
|
+
version_requirements: !ruby/object:Gem::Requirement
|
164
|
+
requirements:
|
165
|
+
- - "~>"
|
85
166
|
- !ruby/object:Gem::Version
|
86
|
-
version: '
|
167
|
+
version: '10.0'
|
87
168
|
- !ruby/object:Gem::Dependency
|
88
169
|
name: rspec
|
89
170
|
requirement: !ruby/object:Gem::Requirement
|
@@ -141,7 +222,7 @@ dependencies:
|
|
141
222
|
- !ruby/object:Gem::Version
|
142
223
|
version: '0'
|
143
224
|
- !ruby/object:Gem::Dependency
|
144
|
-
name:
|
225
|
+
name: vcr
|
145
226
|
requirement: !ruby/object:Gem::Requirement
|
146
227
|
requirements:
|
147
228
|
- - ">="
|
@@ -155,7 +236,7 @@ dependencies:
|
|
155
236
|
- !ruby/object:Gem::Version
|
156
237
|
version: '0'
|
157
238
|
- !ruby/object:Gem::Dependency
|
158
|
-
name:
|
239
|
+
name: webmock
|
159
240
|
requirement: !ruby/object:Gem::Requirement
|
160
241
|
requirements:
|
161
242
|
- - ">="
|
@@ -168,75 +249,70 @@ dependencies:
|
|
168
249
|
- - ">="
|
169
250
|
- !ruby/object:Gem::Version
|
170
251
|
version: '0'
|
252
|
+
- !ruby/object:Gem::Dependency
|
253
|
+
name: berkshelf
|
254
|
+
requirement: !ruby/object:Gem::Requirement
|
255
|
+
requirements:
|
256
|
+
- - "~>"
|
257
|
+
- !ruby/object:Gem::Version
|
258
|
+
version: '4.3'
|
259
|
+
type: :development
|
260
|
+
prerelease: false
|
261
|
+
version_requirements: !ruby/object:Gem::Requirement
|
262
|
+
requirements:
|
263
|
+
- - "~>"
|
264
|
+
- !ruby/object:Gem::Version
|
265
|
+
version: '4.3'
|
171
266
|
description: Discovers license files of a project's dependencies.
|
172
267
|
email:
|
173
268
|
- serdar@chef.io
|
269
|
+
- tom@chef.io
|
174
270
|
executables:
|
175
271
|
- license_scout
|
176
272
|
extensions: []
|
177
273
|
extra_rdoc_files: []
|
178
274
|
files:
|
179
275
|
- LICENSE
|
276
|
+
- README.md
|
180
277
|
- bin/license_scout
|
278
|
+
- bin/mix_lock_json
|
181
279
|
- bin/rebar_lock_json
|
182
|
-
- erl_src/rebar_lock_json/README.md
|
183
|
-
- erl_src/rebar_lock_json/rebar.config
|
184
|
-
- erl_src/rebar_lock_json/rebar.lock
|
185
|
-
- erl_src/rebar_lock_json/src/rebar_lock_json.app.src
|
186
|
-
- erl_src/rebar_lock_json/src/rebar_lock_json.erl
|
187
280
|
- lib/license_scout.rb
|
188
|
-
- lib/license_scout/
|
189
|
-
- lib/license_scout/canonical_licenses/BSD-3-Clause.txt
|
190
|
-
- lib/license_scout/canonical_licenses/BSD-4-Clause.txt
|
191
|
-
- lib/license_scout/canonical_licenses/Chef-MLSA.txt
|
192
|
-
- lib/license_scout/canonical_licenses/ISC.txt
|
193
|
-
- lib/license_scout/canonical_licenses/MIT.txt
|
281
|
+
- lib/license_scout/cli.rb
|
194
282
|
- lib/license_scout/collector.rb
|
283
|
+
- lib/license_scout/config.rb
|
284
|
+
- lib/license_scout/data/dependeny_manifest_v2_schema.json
|
285
|
+
- lib/license_scout/data/exceptions.json
|
286
|
+
- lib/license_scout/data/licenses.json
|
195
287
|
- lib/license_scout/dependency.rb
|
196
288
|
- lib/license_scout/dependency_manager.rb
|
197
289
|
- lib/license_scout/dependency_manager/base.rb
|
198
290
|
- lib/license_scout/dependency_manager/berkshelf.rb
|
199
291
|
- lib/license_scout/dependency_manager/bundler.rb
|
200
|
-
- lib/license_scout/dependency_manager/bundler/LICENSE.md
|
201
292
|
- lib/license_scout/dependency_manager/bundler/_bundler_script.rb
|
202
293
|
- lib/license_scout/dependency_manager/cpanm.rb
|
203
294
|
- lib/license_scout/dependency_manager/dep.rb
|
204
295
|
- lib/license_scout/dependency_manager/glide.rb
|
205
296
|
- lib/license_scout/dependency_manager/godep.rb
|
206
|
-
- lib/license_scout/dependency_manager/
|
207
|
-
- lib/license_scout/dependency_manager/
|
297
|
+
- lib/license_scout/dependency_manager/habitat.rb
|
298
|
+
- lib/license_scout/dependency_manager/mix.rb
|
208
299
|
- lib/license_scout/dependency_manager/npm.rb
|
209
300
|
- lib/license_scout/dependency_manager/rebar.rb
|
210
301
|
- lib/license_scout/exceptions.rb
|
211
|
-
- lib/license_scout/
|
212
|
-
- lib/license_scout/
|
213
|
-
- lib/license_scout/license_file_analyzer/definitions.rb
|
214
|
-
- lib/license_scout/license_file_analyzer/header_matcher.rb
|
215
|
-
- lib/license_scout/license_file_analyzer/matcher.rb
|
216
|
-
- lib/license_scout/license_file_analyzer/template.rb
|
217
|
-
- lib/license_scout/license_file_analyzer/templates/Apache2-short.txt
|
218
|
-
- lib/license_scout/license_file_analyzer/templates/Apache2.txt
|
219
|
-
- lib/license_scout/license_file_analyzer/templates/BSD-2-Clause-bullets.txt
|
220
|
-
- lib/license_scout/license_file_analyzer/templates/BSD-2-Clause.txt
|
221
|
-
- lib/license_scout/license_file_analyzer/templates/BSD-3-Clause-alt-format.txt
|
222
|
-
- lib/license_scout/license_file_analyzer/templates/BSD-3-Clause.txt
|
223
|
-
- lib/license_scout/license_file_analyzer/templates/BSD.txt
|
224
|
-
- lib/license_scout/license_file_analyzer/templates/Chef-MLSA.txt
|
225
|
-
- lib/license_scout/license_file_analyzer/templates/EPLICENSE.txt
|
226
|
-
- lib/license_scout/license_file_analyzer/templates/GPL-2.0.txt
|
227
|
-
- lib/license_scout/license_file_analyzer/templates/GPL-3.0.txt
|
228
|
-
- lib/license_scout/license_file_analyzer/templates/ISC.txt
|
229
|
-
- lib/license_scout/license_file_analyzer/templates/LGPL-3.0.txt
|
230
|
-
- lib/license_scout/license_file_analyzer/templates/MIT.txt
|
231
|
-
- lib/license_scout/license_file_analyzer/templates/MPL2.txt
|
232
|
-
- lib/license_scout/license_file_analyzer/templates/Python-2.0.txt
|
233
|
-
- lib/license_scout/license_file_analyzer/templates/Ruby.txt
|
234
|
-
- lib/license_scout/license_file_analyzer/text.rb
|
235
|
-
- lib/license_scout/net_fetcher.rb
|
236
|
-
- lib/license_scout/options.rb
|
237
|
-
- lib/license_scout/overrides.rb
|
302
|
+
- lib/license_scout/license.rb
|
303
|
+
- lib/license_scout/log.rb
|
238
304
|
- lib/license_scout/reporter.rb
|
305
|
+
- lib/license_scout/spdx.rb
|
239
306
|
- lib/license_scout/version.rb
|
307
|
+
- native_parsers/mix_lock_json/README.md
|
308
|
+
- native_parsers/mix_lock_json/lib/mix_lock_json.ex
|
309
|
+
- native_parsers/mix_lock_json/mix.exs
|
310
|
+
- native_parsers/mix_lock_json/mix.lock
|
311
|
+
- native_parsers/rebar_lock_json/README.md
|
312
|
+
- native_parsers/rebar_lock_json/rebar.config
|
313
|
+
- native_parsers/rebar_lock_json/rebar.lock
|
314
|
+
- native_parsers/rebar_lock_json/src/rebar_lock_json.app.src
|
315
|
+
- native_parsers/rebar_lock_json/src/rebar_lock_json.erl
|
240
316
|
homepage: https://github.com/chef/license_scout
|
241
317
|
licenses:
|
242
318
|
- Apache-2.0
|
@@ -249,14 +325,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
249
325
|
requirements:
|
250
326
|
- - ">="
|
251
327
|
- !ruby/object:Gem::Version
|
252
|
-
version: '
|
328
|
+
version: '0'
|
253
329
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
254
330
|
requirements:
|
255
331
|
- - ">="
|
256
332
|
- !ruby/object:Gem::Version
|
257
333
|
version: '0'
|
258
334
|
requirements: []
|
259
|
-
|
335
|
+
rubyforge_project:
|
336
|
+
rubygems_version: 2.7.6
|
260
337
|
signing_key:
|
261
338
|
specification_version: 4
|
262
339
|
summary: Discovers license files of a project's dependencies.
|
@@ -1,19 +0,0 @@
|
|
1
|
-
Redistribution and use in source and binary forms, with or without
|
2
|
-
modification, are permitted provided that the following conditions are met:
|
3
|
-
|
4
|
-
1. Redistributions of source code must retain the above copyright notice, this
|
5
|
-
list of conditions and the following disclaimer.
|
6
|
-
2. Redistributions in binary form must reproduce the above copyright notice,
|
7
|
-
this list of conditions and the following disclaimer in the documentation
|
8
|
-
and/or other materials provided with the distribution.
|
9
|
-
|
10
|
-
THIS SOFTWARE IS PROVIDED BY THE <COPYRIGHT HOLDERS> "AS IS" AND
|
11
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
12
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
13
|
-
DISCLAIMED. IN NO EVENT SHALL THE <COPYRIGHT HOLDERS> BE LIABLE FOR
|
14
|
-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
15
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
16
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
17
|
-
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
18
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
19
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@@ -1,27 +0,0 @@
|
|
1
|
-
Copyright (c) <year> <owner> . All rights reserved. Redistribution and use in
|
2
|
-
source and binary forms, with or without modification, are permitted provided
|
3
|
-
that the following conditions are met:
|
4
|
-
|
5
|
-
1. Redistributions of source code must retain the above copyright notice, this
|
6
|
-
list of conditions and the following disclaimer.
|
7
|
-
|
8
|
-
2. Redistributions in binary form must reproduce the above copyright notice,
|
9
|
-
this list of conditions and the following disclaimer in the documentation
|
10
|
-
and/or other materials provided with the distribution.
|
11
|
-
|
12
|
-
3. Neither the name of the copyright holder nor the names of its contributors
|
13
|
-
may be used to endorse or promote products derived from this software without
|
14
|
-
specific prior written permission.
|
15
|
-
|
16
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
17
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
18
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
19
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
20
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
21
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
22
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
23
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
24
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
25
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
26
|
-
|
27
|
-
|
@@ -1,31 +0,0 @@
|
|
1
|
-
Copyright (c) <year> <owner> . All rights reserved.
|
2
|
-
Redistribution and use in source and binary forms, with or without
|
3
|
-
modification, are permitted provided that the following conditions are met:
|
4
|
-
|
5
|
-
1. Redistributions of source code must retain the above copyright notice, this
|
6
|
-
list of conditions and the following disclaimer.
|
7
|
-
|
8
|
-
2. Redistributions in binary form must reproduce the above copyright notice,
|
9
|
-
this list of conditions and the following disclaimer in the documentation
|
10
|
-
and/or other materials provided with the distribution.
|
11
|
-
|
12
|
-
3. All advertising materials mentioning features or use of this software must
|
13
|
-
display the following acknowledgement: This product includes software developed
|
14
|
-
by the the organization .
|
15
|
-
|
16
|
-
4. Neither the name of the copyright holder nor the names of its contributors
|
17
|
-
may be used to endorse or promote products derived from this software without
|
18
|
-
specific prior written permission.
|
19
|
-
|
20
|
-
THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDER "AS IS" AND ANY EXPRESS OR
|
21
|
-
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
22
|
-
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
23
|
-
EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
24
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
25
|
-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
26
|
-
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
27
|
-
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
28
|
-
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
29
|
-
POSSIBILITY OF SUCH DAMAGE.
|
30
|
-
|
31
|
-
|
@@ -1,14 +0,0 @@
|
|
1
|
-
ISC License (ISC)
|
2
|
-
Copyright (c) 4-digit year, Company or Person's Name <E-mail address>
|
3
|
-
|
4
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
5
|
-
purpose with or without fee is hereby granted, provided that the above
|
6
|
-
copyright notice and this permission notice appear in all copies.
|
7
|
-
|
8
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
9
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
10
|
-
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
11
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
12
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
13
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
14
|
-
PERFORMANCE OF THIS SOFTWARE.
|
@@ -1,20 +0,0 @@
|
|
1
|
-
MIT License
|
2
|
-
Copyright (c) <year> <copyright holders>
|
3
|
-
|
4
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
5
|
-
this software and associated documentation files (the "Software"), to deal in
|
6
|
-
the Software without restriction, including without limitation the rights to
|
7
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
8
|
-
of the Software, and to permit persons to whom the Software is furnished to do
|
9
|
-
so, subject to the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be included in all
|
12
|
-
copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
20
|
-
SOFTWARE.
|
@@ -1,23 +0,0 @@
|
|
1
|
-
Portions copyright (c) 2010 Andre Arko
|
2
|
-
Portions copyright (c) 2009 Engine Yard
|
3
|
-
|
4
|
-
MIT License
|
5
|
-
|
6
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
-
a copy of this software and associated documentation files (the
|
8
|
-
"Software"), to deal in the Software without restriction, including
|
9
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
10
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
-
permit persons to whom the Software is furnished to do so, subject to
|
12
|
-
the following conditions:
|
13
|
-
|
14
|
-
The above copyright notice and this permission notice shall be
|
15
|
-
included in all copies or substantial portions of the Software.
|
16
|
-
|
17
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
18
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
21
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
22
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
23
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|