cf-registrar 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ coverage/
2
+ Gemfile.lock
3
+ pkg
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --order random
@@ -0,0 +1,9 @@
1
+ ---
2
+ language: ruby
3
+ rvm:
4
+ - 1.9.3
5
+ - 2.0
6
+
7
+ addons:
8
+ code_climate:
9
+ repo_token: aeb6263f033a451b06459e63d301290a979d518ace816232bab281a19f2364bc
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ gem 'vcap-concurrency', github: 'cloudfoundry/vcap-concurrency'
6
+
7
+ group :development do
8
+ gem 'codeclimate-test-reporter', require: false
9
+ end
data/LICENSE ADDED
@@ -0,0 +1,3361 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
203
+
204
+ =======================================================================
205
+
206
+ Cloud Controller NG 09012012
207
+
208
+ Cloud Controller NG 09012012 : includes a number of subcomponents with
209
+ separate copyright notices and license terms. The product that
210
+ includes this file does not necessarily use all the open source
211
+ subcomponents referred to below. Your use of the source
212
+ code for the these subcomponents is subject to the terms and
213
+ conditions of the following licenses.
214
+
215
+
216
+ SECTION 1: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES
217
+
218
+ >>> activesupport-3.2.8
219
+ >>> backports-2.6.1
220
+ >>> bcrypt-ruby-3.0.1
221
+ >>> builder-3.0.0
222
+ >>> ci_reporter-1.7.0
223
+ >>> crack-0.3.1
224
+ >>> daemons-1.1.8
225
+ >>> diff-lcs-1.1.3
226
+ >>> em-socksify-0.1.0
227
+ >>> grape-0.2.1
228
+ >>> grape-0.2.2
229
+ >>> guard-1.4.0
230
+ >>> guard-rspec-1.2.1
231
+ >>> hashie-1.2.0
232
+ >>> http_parser.rb-0.5.3
233
+ >>> i18n-0.6.1
234
+ >>> interact-0.4.3
235
+ >>> interact-0.4.6
236
+ >>> launchy-2.1.0
237
+ >>> launchy-2.1.1
238
+ >>> machinist-1.0.6
239
+ >>> multi_json-1.3.6
240
+ >>> multi_xml-0.5.1
241
+ >>> nats-0.4.24
242
+ >>> posix-spawn-0.3.6
243
+ >>> rack-1.4.1
244
+ >>> rack-accept-0.4.5
245
+ >>> rack-mount-0.8.3
246
+ >>> rack-protection-1.2.0
247
+ >>> rack-test-0.6.1
248
+ >>> redis-3.0.1
249
+ >>> rest-client-1.6.7
250
+ >>> rfc822-0.1.1
251
+ >>> rspec-2.10.0
252
+ >>> rspec-core-2.10.1
253
+ >>> rspec-expectations-2.10.0
254
+ >>> rspec-mocks-2.10.1
255
+ >>> sequel-3.36.1
256
+ >>> sequel-3.40.0
257
+ >>> simplecov-0.6.4
258
+ >>> simplecov-html-0.5.3
259
+ >>> simplecov-rcov-0.2.3
260
+ >>> sinatra-1.3.2
261
+ >>> sinatra-contrib-1.3.1
262
+ >>> sqlite3-1.3.6
263
+ >>> steno-0.0.5
264
+ >>> thor-0.15.3
265
+ >>> thor-0.15.4
266
+ >>> tilt-1.3.3
267
+ >>> virtus-0.5.2
268
+ >>> webmock-1.8.11
269
+ >>> yajl-ruby-0.8.3
270
+
271
+
272
+
273
+ SECTION 2: Apache License, V2.0
274
+
275
+ >>> addressable-2.2.8
276
+ >>> addressable-2.3.2
277
+ >>> cf-uaa-client-0.2.0
278
+ >>> membrane-0.0.2
279
+ >>> steno-1.0.0
280
+ >>> vcap_common-2.0.10
281
+ >>> vcap_common-2.0.2
282
+
283
+
284
+
285
+ SECTION 3: GNU General Public License, V2.0
286
+
287
+ >>> ruby-graphviz-1.0.5
288
+
289
+
290
+
291
+ SECTION 4: Ruby Clause-6
292
+
293
+ >>> eventmachine-1.0.0
294
+ >>> httpclient-2.2.5
295
+ >>> json_pure-1.7.3
296
+ >>> json_pure-1.7.4
297
+ >>> mime-types-1.18
298
+ >>> pg-0.13.2
299
+ >>> thin-1.3.1
300
+
301
+
302
+
303
+ APPENDIX. Standard License Files
304
+
305
+ >>> Ruby Clause-6
306
+
307
+ >>> GNU General Public License, V2.0
308
+
309
+ >>> GNU Lesser General Public License, V2.1
310
+
311
+ >>> GNU Lesser General Public License, V3.0
312
+
313
+
314
+
315
+
316
+
317
+ --------------- SECTION 1: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES ----------
318
+
319
+ BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES are applicable to the following component(s).
320
+
321
+
322
+ >>> activesupport-3.2.8
323
+
324
+ Copyright (c) 2005-2011 David Heinemeier Hansson
325
+
326
+ Permission is hereby granted, free of charge, to any person obtaining
327
+ a copy of this software and associated documentation files (the
328
+ "Software"), to deal in the Software without restriction, including
329
+ without limitation the rights to use, copy, modify, merge, publish,
330
+ distribute, sublicense, and/or sell copies of the Software, and to
331
+ permit persons to whom the Software is furnished to do so, subject to
332
+ the following conditions:
333
+
334
+ The above copyright notice and this permission notice shall be
335
+ included in all copies or substantial portions of the Software.
336
+
337
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
338
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
339
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
340
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
341
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
342
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
343
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
344
+
345
+
346
+ >>> backports-2.6.1
347
+
348
+ Copyright (c) 2009 Marc-Andre Lafortune
349
+
350
+ Permission is hereby granted, free of charge, to any person obtaining
351
+ a copy of this software and associated documentation files (the
352
+ "Software"), to deal in the Software without restriction, including
353
+ without limitation the rights to use, copy, modify, merge, publish,
354
+ distribute, sublicense, and/or sell copies of the Software, and to
355
+ permit persons to whom the Software is furnished to do so, subject to
356
+ the following conditions:
357
+
358
+ The above copyright notice and this permission notice shall be
359
+ included in all copies or substantial portions of the Software.
360
+
361
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
362
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
363
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
364
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
365
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
366
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
367
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
368
+
369
+
370
+ >>> bcrypt-ruby-3.0.1
371
+
372
+ Copyright 2007-2011:
373
+
374
+ * Coda Hale <coda.hale@gmail.com>
375
+
376
+ C implementation of the BCrypt algorithm by Solar Designer and placed in the
377
+ public domain.
378
+ jBCrypt is Copyright (c) 2006 Damien Miller <djm@mindrot.org>.
379
+
380
+ Permission is hereby granted, free of charge, to any person obtaining
381
+ a copy of this software and associated documentation files (the
382
+ 'Software'), to deal in the Software without restriction, including
383
+ without limitation the rights to use, copy, modify, merge, publish,
384
+ distribute, sublicense, and/or sell copies of the Software, and to
385
+ permit persons to whom the Software is furnished to do so, subject to
386
+ the following conditions:
387
+
388
+ The above copyright notice and this permission notice shall be
389
+ included in all copies or substantial portions of the Software.
390
+
391
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
392
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
393
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
394
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
395
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
396
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
397
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
398
+
399
+
400
+ ADDITIONAL LICENSE INFORMATION:
401
+
402
+ > Public domain
403
+
404
+ bcrypt-ruby-3.0.1.gem\data.tar.gz\data.tar\ext\mri\crypt_blowfish.c
405
+
406
+
407
+ This code comes from John the Ripper password cracker, with reentrant
408
+ and crypt(3) interfaces added, but optimizations specific to password
409
+ cracking removed.
410
+
411
+ Written by Solar Designer <solar at openwall.com> in 1998-2002 and
412
+ placed in the public domain. Quick self-test added in 2011 and also
413
+ placed in the public domain.
414
+
415
+ There's absolutely no warranty.
416
+
417
+ It is my intent that you should be able to use this on your system,
418
+ as a part of a software package, or anywhere else to improve security,
419
+ ensure compatibility, or for any other purpose. I would appreciate
420
+ it if you give credit where it is due and keep your modifications in
421
+ the public domain as well, but I don't require that in order to let
422
+ you place this code and any modifications you make under a license
423
+ of your choice.
424
+
425
+ This implementation is compatible with OpenBSD bcrypt.c (version 2a)
426
+ by Niels Provos <provos at citi.umich.edu>, and uses some of his
427
+ ideas. The password hashing algorithm was designed by David Mazieres
428
+ <dm at lcs.mit.edu>.
429
+
430
+ There's a paper on the algorithm that explains its design decisions:
431
+
432
+ http://www.usenix.org/events/usenix99/provos.html
433
+
434
+ Some of the tricks in BF_ROUND might be inspired by Eric Young's
435
+ Blowfish library (I can't be sure if I would think of something if I
436
+ hadn't seen his code).
437
+
438
+
439
+ >>> builder-3.0.0
440
+
441
+ Copyright 2004, 2005 by Jim Weirich (jim@weirichhouse.org).
442
+ All rights reserved.
443
+
444
+ Permission is granted for use, copying, modification, distribution,
445
+ and distribution of modified versions of this work as long as the
446
+ above copyright notice is included.
447
+
448
+
449
+ >>> ci_reporter-1.7.0
450
+
451
+ Copyright (c) 2006-2012 Nick Sieger <nicksieger@gmail.com>
452
+
453
+ Permission is hereby granted, free of charge, to any person
454
+ obtaining a copy of this software and associated documentation files
455
+ (the "Software"), to deal in the Software without restriction,
456
+ including without limitation the rights to use, copy, modify, merge,
457
+ publish, distribute, sublicense, and/or sell copies of the Software,
458
+ and to permit persons to whom the Software is furnished to do so,
459
+ subject to the following conditions:
460
+
461
+ The above copyright notice and this permission notice shall be
462
+ included in all copies or substantial portions of the Software.
463
+
464
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
465
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
466
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
467
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
468
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
469
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
470
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
471
+ SOFTWARE.
472
+
473
+
474
+ >>> crack-0.3.1
475
+
476
+ Copyright (c) 2009 John Nunemaker
477
+
478
+ Permission is hereby granted, free of charge, to any person obtaining
479
+ a copy of this software and associated documentation files (the
480
+ "Software"), to deal in the Software without restriction, including
481
+ without limitation the rights to use, copy, modify, merge, publish,
482
+ distribute, sublicense, and/or sell copies of the Software, and to
483
+ permit persons to whom the Software is furnished to do so, subject to
484
+ the following conditions:
485
+
486
+ The above copyright notice and this permission notice shall be
487
+ included in all copies or substantial portions of the Software.
488
+
489
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
490
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
491
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
492
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
493
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
494
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
495
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
496
+
497
+
498
+ >>> daemons-1.1.8
499
+
500
+ Copyright (c) 2005-2012 Thomas Uehlinger
501
+
502
+ Permission is hereby granted, free of charge, to any person
503
+ obtaining a copy of this software and associated documentation
504
+ files (the "Software"), to deal in the Software without
505
+ restriction, including without limitation the rights to use,
506
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
507
+ copies of the Software, and to permit persons to whom the
508
+ Software is furnished to do so, subject to the following
509
+ conditions:
510
+
511
+ The above copyright notice and this permission notice shall be
512
+ included in all copies or substantial portions of the Software.
513
+
514
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
515
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
516
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
517
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
518
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
519
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
520
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
521
+ OTHER DEALINGS IN THE SOFTWARE.
522
+
523
+
524
+ >>> diff-lcs-1.1.3
525
+
526
+ [PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MIT LICENSE. PLEASE SEE BELOW FOR THE FULL TEXT OF THE MIT LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
527
+
528
+
529
+ == License
530
+
531
+ This software is available under three licenses: the GNU GPL version 2 (or at
532
+ your option, a later version), the Perl Artistic license, or the MIT license.
533
+ Note that my preference for licensing is the MIT license, but Algorithm::Diff
534
+ was dually originally licensed with the Perl Artistic and the GNU GPL ("the
535
+ same terms as Perl itself") and that the Ruby implementation hews pretty
536
+ closely to the Perl version, so I must maintain the additional licensing terms.
537
+
538
+ * Copyright 20042011 Austin Ziegler.
539
+ * Adapted from Algorithm::Diff (Perl) by Ned Konz and a Smalltalk versionby
540
+ Mario I. Wolczko <mario@wolczko.com>
541
+
542
+ === MIT License
543
+
544
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
545
+ this software and associated documentation files (the "Software"), to deal in
546
+ the Software without restriction, including without limitation the rights to
547
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
548
+ of the Software, and to permit persons to whom the Software is furnished to do
549
+ so, subject to the following conditions:
550
+
551
+ The above copyright notice and this permission notice shall be included in all
552
+ copies or substantial portions of the Software.
553
+
554
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
555
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
556
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
557
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
558
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
559
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
560
+ SOFTWARE.
561
+
562
+ === Perl Artistic License (version 2)
563
+ See the file docs/artistic.txt in the main distribution.
564
+
565
+ === GNU GPL version 2
566
+ See the file docs/COPYING.txt in the main distribution.
567
+
568
+
569
+ >>> em-socksify-0.1.0
570
+
571
+ License
572
+ (The MIT License) Copyright 2011 Ilya Grigorik
573
+
574
+ The MIT License
575
+
576
+ Copyright (c) <year> <copyright holders>
577
+
578
+ Permission is hereby granted, free of charge, to any person obtaining a copy
579
+ of this software and associated documentation files (the "Software"), to deal
580
+ in the Software without restriction, including without limitation the rights
581
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
582
+ copies of the Software, and to permit persons to whom the Software is
583
+ furnished to do so, subject to the following conditions:
584
+
585
+ The above copyright notice and this permission notice shall be included in
586
+ all copies or substantial portions of the Software.
587
+
588
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
589
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
590
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
591
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
592
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
593
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
594
+ THE SOFTWARE.
595
+
596
+
597
+ >>> grape-0.2.1
598
+
599
+ Copyright (c) 2010 Michael Bleigh and Intridea, Inc.
600
+
601
+ Permission is hereby granted, free of charge, to any person obtaining
602
+ a copy of this software and associated documentation files (the
603
+ "Software"), to deal in the Software without restriction, including
604
+ without limitation the rights to use, copy, modify, merge, publish,
605
+ distribute, sublicense, and/or sell copies of the Software, and to
606
+ permit persons to whom the Software is furnished to do so, subject to
607
+ the following conditions:
608
+
609
+ The above copyright notice and this permission notice shall be
610
+ included in all copies or substantial portions of the Software.
611
+
612
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
613
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
614
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
615
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
616
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
617
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
618
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
619
+
620
+
621
+ >>> grape-0.2.2
622
+
623
+ Copyright (c) 2010 Michael Bleigh and Intridea, Inc.
624
+
625
+ Permission is hereby granted, free of charge, to any person obtaining
626
+ a copy of this software and associated documentation files (the
627
+ "Software"), to deal in the Software without restriction, including
628
+ without limitation the rights to use, copy, modify, merge, publish,
629
+ distribute, sublicense, and/or sell copies of the Software, and to
630
+ permit persons to whom the Software is furnished to do so, subject to
631
+ the following conditions:
632
+
633
+ The above copyright notice and this permission notice shall be
634
+ included in all copies or substantial portions of the Software.
635
+
636
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
637
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
638
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
639
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
640
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
641
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
642
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
643
+
644
+
645
+ >>> guard-1.4.0
646
+
647
+ Copyright (c) 2009-2012 Thibaud Guillaume-Gentil
648
+
649
+ Permission is hereby granted, free of charge, to any person obtaining
650
+ a copy of this software and associated documentation files (the
651
+ "Software"), to deal in the Software without restriction, including
652
+ without limitation the rights to use, copy, modify, merge, publish,
653
+ distribute, sublicense, and/or sell copies of the Software, and to
654
+ permit persons to whom the Software is furnished to do so, subject to
655
+ the following conditions:
656
+
657
+ The above copyright notice and this permission notice shall be
658
+ included in all copies or substantial portions of the Software.
659
+
660
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
661
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
662
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
663
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
664
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
665
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
666
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
667
+
668
+
669
+ >>> guard-rspec-1.2.1
670
+
671
+ Copyright (c) 2010-2012 Thibaud Guillaume-Gentil
672
+
673
+ Permission is hereby granted, free of charge, to any person obtaining
674
+ a copy of this software and associated documentation files (the
675
+ "Software"), to deal in the Software without restriction, including
676
+ without limitation the rights to use, copy, modify, merge, publish,
677
+ distribute, sublicense, and/or sell copies of the Software, and to
678
+ permit persons to whom the Software is furnished to do so, subject to
679
+ the following conditions:
680
+
681
+ The above copyright notice and this permission notice shall be
682
+ included in all copies or substantial portions of the Software.
683
+
684
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
685
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
686
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
687
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
688
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
689
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
690
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
691
+
692
+
693
+ >>> hashie-1.2.0
694
+
695
+ Copyright (c) 2009 Intridea, Inc.
696
+
697
+ Permission is hereby granted, free of charge, to any person obtaining
698
+ a copy of this software and associated documentation files (the
699
+ "Software"), to deal in the Software without restriction, including
700
+ without limitation the rights to use, copy, modify, merge, publish,
701
+ distribute, sublicense, and/or sell copies of the Software, and to
702
+ permit persons to whom the Software is furnished to do so, subject to
703
+ the following conditions:
704
+
705
+ The above copyright notice and this permission notice shall be
706
+ included in all copies or substantial portions of the Software.
707
+
708
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
709
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
710
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
711
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
712
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
713
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
714
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
715
+
716
+
717
+ >>> http_parser.rb-0.5.3
718
+
719
+ Copyright 2009,2010 Marc-Andr Cournoyer <macournoyer@gmail.com>
720
+ Copyright 2010,2011 Aman Gupta <aman@tmm1.net>
721
+
722
+ Permission is hereby granted, free of charge, to any person obtaining a copy
723
+ of this software and associated documentation files (the "Software"), to
724
+ deal in the Software without restriction, including without limitation the
725
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
726
+ sell copies of the Software, and to permit persons to whom the Software is
727
+ furnished to do so, subject to the following conditions:
728
+
729
+ The above copyright notice and this permission notice shall be included in
730
+ all copies or substantial portions of the Software.
731
+
732
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
733
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
734
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
735
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
736
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
737
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
738
+ IN THE SOFTWARE.
739
+
740
+
741
+ >>> i18n-0.6.1
742
+
743
+ Copyright (c) 2008 The Ruby I18n team
744
+
745
+ Permission is hereby granted, free of charge, to any person obtaining
746
+ a copy of this software and associated documentation files (the
747
+ "Software"), to deal in the Software without restriction, including
748
+ without limitation the rights to use, copy, modify, merge, publish,
749
+ distribute, sublicense, and/or sell copies of the Software, and to
750
+ permit persons to whom the Software is furnished to do so, subject to
751
+ the following conditions:
752
+
753
+ The above copyright notice and this permission notice shall be
754
+ included in all copies or substantial portions of the Software.
755
+
756
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
757
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
758
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
759
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
760
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
761
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
762
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
763
+
764
+
765
+ >>> interact-0.4.3
766
+
767
+ Copyright (c)2011, Alex Suraci
768
+
769
+ All rights reserved.
770
+
771
+ Redistribution and use in source and binary forms, with or without
772
+ modification, are permitted provided that the following conditions are met:
773
+
774
+ * Redistributions of source code must retain the above copyright
775
+ notice, this list of conditions and the following disclaimer.
776
+
777
+ * Redistributions in binary form must reproduce the above
778
+ copyright notice, this list of conditions and the following
779
+ disclaimer in the documentation and/or other materials provided
780
+ with the distribution.
781
+
782
+ * Neither the name of Alex Suraci nor the names of other
783
+ contributors may be used to endorse or promote products derived
784
+ from this software without specific prior written permission.
785
+
786
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
787
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
788
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
789
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
790
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
791
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
792
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
793
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
794
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
795
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
796
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
797
+
798
+
799
+ >>> interact-0.4.6
800
+
801
+ Copyright (c)2011, Alex Suraci
802
+
803
+ All rights reserved.
804
+
805
+ Redistribution and use in source and binary forms, with or without
806
+ modification, are permitted provided that the following conditions are met:
807
+
808
+ Redistributions of source code must retain the above copyright
809
+ notice, this list of conditions and the following disclaimer.
810
+
811
+ Redistributions in binary form must reproduce the above
812
+ copyright notice, this list of conditions and the following
813
+ disclaimer in the documentation and/or other materials provided
814
+ with the distribution.
815
+
816
+ Neither the name of Alex Suraci nor the names of other
817
+ contributors may be used to endorse or promote products derived
818
+ from this software without specific prior written permission.
819
+
820
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
821
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
822
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
823
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
824
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
825
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
826
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
827
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
828
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
829
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
830
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
831
+
832
+
833
+ >>> launchy-2.1.0
834
+
835
+ Copyright (c) 2007-2011 Jeremy Hinegardner
836
+
837
+ Permission to use, copy, modify, and/or distribute this software for any
838
+ purpose with or without fee is hereby granted, provided that the above
839
+ copyright notice and this permission notice appear in all copies.
840
+
841
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
842
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
843
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
844
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
845
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
846
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
847
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
848
+
849
+
850
+ >>> launchy-2.1.1
851
+
852
+ ISC LICENSE - http://opensource.org/licenses/isc-license.txt
853
+
854
+ Copyright (c) 2007-2011 Jeremy Hinegardner
855
+
856
+ Permission to use, copy, modify, and/or distribute this software for any
857
+ purpose with or without fee is hereby granted, provided that the above
858
+ copyright notice and this permission notice appear in all copies.
859
+
860
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
861
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
862
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
863
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
864
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
865
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
866
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
867
+
868
+
869
+ >>> machinist-1.0.6
870
+
871
+ Copyright (c) 2008 Peter Yandell
872
+
873
+ Permission is hereby granted, free of charge, to any person obtaining
874
+ a copy of this software and associated documentation files (the
875
+ "Software"), to deal in the Software without restriction, including
876
+ without limitation the rights to use, copy, modify, merge, publish,
877
+ distribute, sublicense, and/or sell copies of the Software, and to
878
+ permit persons to whom the Software is furnished to do so, subject to
879
+ the following conditions:
880
+
881
+ The above copyright notice and this permission notice shall be
882
+ included in all copies or substantial portions of the Software.
883
+
884
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
885
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
886
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
887
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
888
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
889
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
890
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
891
+
892
+
893
+ >>> multi_json-1.3.6
894
+
895
+ Copyright (c) 2010 Michael Bleigh, Josh Kalderimis, Erik Michaels-Ober, and Intridea, Inc.
896
+
897
+ Permission is hereby granted, free of charge, to any person obtaining
898
+ a copy of this software and associated documentation files (the
899
+ "Software"), to deal in the Software without restriction, including
900
+ without limitation the rights to use, copy, modify, merge, publish,
901
+ distribute, sublicense, and/or sell copies of the Software, and to
902
+ permit persons to whom the Software is furnished to do so, subject to
903
+ the following conditions:
904
+
905
+ The above copyright notice and this permission notice shall be
906
+ included in all copies or substantial portions of the Software.
907
+
908
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
909
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
910
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
911
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
912
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
913
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
914
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
915
+
916
+
917
+ >>> multi_xml-0.5.1
918
+
919
+ Copyright (c) 2010 Erik Michaels-Ober
920
+
921
+ Permission is hereby granted, free of charge, to any person obtaining
922
+ a copy of this software and associated documentation files (the
923
+ "Software"), to deal in the Software without restriction, including
924
+ without limitation the rights to use, copy, modify, merge, publish,
925
+ distribute, sublicense, and/or sell copies of the Software, and to
926
+ permit persons to whom the Software is furnished to do so, subject to
927
+ the following conditions:
928
+
929
+ The above copyright notice and this permission notice shall be
930
+ included in all copies or substantial portions of the Software.
931
+
932
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
933
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
934
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
935
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
936
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
937
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
938
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
939
+
940
+
941
+ >>> nats-0.4.24
942
+
943
+ Copyright (c) 2010, 2011 Derek Collison <derek.collison@gmail.com>. All rights reserved.
944
+
945
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
946
+
947
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
948
+
949
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
950
+
951
+
952
+ >>> posix-spawn-0.3.6
953
+
954
+ Copyright (c) 2011 by Ryan Tomayko <r@tomayko.com>
955
+ and Aman Gupta <aman@tmm1.net>
956
+
957
+ Permission is hereby granted, free of charge, to any person ob-
958
+ taining a copy of this software and associated documentation
959
+ files (the "Software"), to deal in the Software without restric-
960
+ tion, including without limitation the rights to use, copy, modi-
961
+ fy, merge, publish, distribute, sublicense, and/or sell copies of
962
+ the Software, and to permit persons to whom the Software is fur-
963
+ nished to do so, subject to the following conditions:
964
+
965
+ The above copyright notice and this permission notice shall be
966
+ included in all copies or substantial portions of the Software.
967
+
968
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
969
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
970
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONIN-
971
+ FRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
972
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
973
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
974
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
975
+ SOFTWARE.
976
+
977
+ A small portion of the environ dup'ing code in ext/posix-spawn.c
978
+ was taken from glibc <http://www.gnu.org/s/libc/> and is maybe
979
+ Copyright (c) 2011 by The Free Software Foundation or maybe
980
+ by others mentioned in the glibc LICENSES file. glibc is
981
+ distributed under the terms of the LGPL license.
982
+
983
+
984
+ >>> rack-1.4.1
985
+
986
+ Copyright (c) 2007, 2008, 2009, 2010 Christian Neukirchen <purl.org/net/chneukirchen>
987
+
988
+ Permission is hereby granted, free of charge, to any person obtaining a copy
989
+ of this software and associated documentation files (the "Software"), to
990
+ deal in the Software without restriction, including without limitation the
991
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
992
+ sell copies of the Software, and to permit persons to whom the Software is
993
+ furnished to do so, subject to the following conditions:
994
+
995
+ The above copyright notice and this permission notice shall be included in
996
+ all copies or substantial portions of the Software.
997
+
998
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
999
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1000
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1001
+ THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1002
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1003
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1004
+ are.
1005
+
1006
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1007
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1008
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1009
+ THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1010
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1011
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1012
+
1013
+
1014
+ >>> rack-accept-0.4.5
1015
+
1016
+ License
1017
+
1018
+ Copyright 2012 Michael Jackson
1019
+
1020
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1021
+ of this software and associated documentation files (the "Software"), to deal
1022
+ in the Software without restriction, including without limitation the rights
1023
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1024
+ copies of the Software, and to permit persons to whom the Software is
1025
+ furnished to do so, subject to the following conditions:
1026
+
1027
+ The above copyright notice and this permission notice shall be included in
1028
+ all copies or substantial portions of the Software.
1029
+
1030
+ The software is provided "as is", without warranty of any kind, express or
1031
+ implied, including but not limited to the warranties of merchantability,
1032
+ fitness for a particular purpose and noninfringement. In no event shall the
1033
+ authors or copyright holders be liable for any claim, damages or other
1034
+ liability, whether in an action of contract, tort or otherwise, arising from,
1035
+ out of or in connection with the software or the use or other dealings in
1036
+ the software.
1037
+
1038
+
1039
+ >>> rack-mount-0.8.3
1040
+
1041
+ Copyright (c) 2009 Joshua Peek
1042
+
1043
+ Permission is hereby granted, free of charge, to any person obtaining
1044
+ a copy of this software and associated documentation files (the
1045
+ "Software"), to deal in the Software without restriction, including
1046
+ without limitation the rights to use, copy, modify, merge, publish,
1047
+ distribute, sublicense, and/or sell copies of the Software, and to
1048
+ permit persons to whom the Software is furnished to do so, subject to
1049
+ the following conditions:
1050
+
1051
+ The above copyright notice and this permission notice shall be
1052
+ included in all copies or substantial portions of the Software.
1053
+
1054
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1055
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1056
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1057
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1058
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1059
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1060
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1061
+
1062
+
1063
+ >>> rack-protection-1.2.0
1064
+
1065
+ Copyright (c) 2011 Konstantin Haase
1066
+
1067
+ Permission is hereby granted, free of charge, to any person obtaining
1068
+ a copy of this software and associated documentation files (the
1069
+ 'Software'), to deal in the Software without restriction, including
1070
+ without limitation the rights to use, copy, modify, merge, publish,
1071
+ distribute, sublicense, and/or sell copies of the Software, and to
1072
+ permit persons to whom the Software is furnished to do so, subject to
1073
+ the following conditions:
1074
+
1075
+ The above copyright notice and this permission notice shall be
1076
+ included in all copies or substantial portions of the Software.
1077
+
1078
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1079
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1080
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1081
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1082
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1083
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1084
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1085
+
1086
+
1087
+ >>> rack-test-0.6.1
1088
+
1089
+ Copyright (c) 2008-2009 Bryan Helmkamp, Engine Yard Inc.
1090
+
1091
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1092
+ of this software and associated documentation files (the "Software"), to deal
1093
+ in the Software without restriction, including without limitation the rights
1094
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1095
+ copies of the Software, and to permit persons to whom the Software is
1096
+ furnished to do so, subject to the following conditions:
1097
+
1098
+ The above copyright notice and this permission notice shall be included in
1099
+ all copies or substantial portions of the Software.
1100
+
1101
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1102
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1103
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1104
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1105
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1106
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1107
+ THE SOFTWARE.
1108
+
1109
+
1110
+ >>> redis-3.0.1
1111
+
1112
+ Copyright (c) 2009 Ezra Zygmuntowicz
1113
+
1114
+ Permission is hereby granted, free of charge, to any person obtaining
1115
+ a copy of this software and associated documentation files (the
1116
+ "Software"), to deal in the Software without restriction, including
1117
+ without limitation the rights to use, copy, modify, merge, publish,
1118
+ distribute, sublicense, and/or sell copies of the Software, and to
1119
+ permit persons to whom the Software is furnished to do so, subject to
1120
+ the following conditions:
1121
+
1122
+ The above copyright notice and this permission notice shall be
1123
+ included in all copies or substantial portions of the Software.
1124
+
1125
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1126
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1127
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1128
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1129
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1130
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1131
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1132
+
1133
+
1134
+ >>> rest-client-1.6.7
1135
+
1136
+ Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
1137
+
1138
+ Copyright (c) 2003, 2004 Jim Weirich
1139
+
1140
+ Permission is hereby granted, free of charge, to any person obtaining
1141
+ a copy of this software and associated documentation files (the
1142
+ "Software"), to deal in the Software without restriction, including
1143
+ without limitation the rights to use, copy, modify, merge, publish,
1144
+ distribute, sublicense, and/or sell copies of the Software, and to
1145
+ permit persons to whom the Software is furnished to do so, subject to
1146
+ the following conditions:
1147
+
1148
+ The above copyright notice and this permission notice shall be
1149
+ included in all copies or substantial portions of the Software.
1150
+
1151
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1152
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1153
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1154
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1155
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1156
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1157
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1158
+
1159
+
1160
+ >>> rfc822-0.1.1
1161
+
1162
+ Copyright (c) 2012 Marcin Saepia
1163
+
1164
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1165
+
1166
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1167
+
1168
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1169
+
1170
+
1171
+ >>> rspec-2.10.0
1172
+
1173
+ (The MIT License)
1174
+
1175
+ Copyright (c) 2009 Chad Humphries, David Chelimsky
1176
+ Copyright (c) 2006 David Chelimsky, The RSpec Development Team
1177
+ Copyright (c) 2005 Steven Baker
1178
+
1179
+ Permission is hereby granted, free of charge, to any person obtaining
1180
+ a copy of this software and associated documentation files (the
1181
+ "Software"), to deal in the Software without restriction, including
1182
+ without limitation the rights to use, copy, modify, merge, publish,
1183
+ distribute, sublicense, and/or sell copies of the Software, and to
1184
+ permit persons to whom the Software is furnished to do so, subject to
1185
+ the following conditions:
1186
+
1187
+ The above copyright notice and this permission notice shall be
1188
+ included in all copies or substantial portions of the Software.
1189
+
1190
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1191
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1192
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1193
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1194
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1195
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1196
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1197
+
1198
+
1199
+ >>> rspec-core-2.10.1
1200
+
1201
+ Copyright (c) 2009 Chad Humphries, David Chelimsky
1202
+ Copyright (c) 2006 David Chelimsky, The RSpec Development Team
1203
+ Copyright (c) 2005 Steven Baker
1204
+
1205
+ Permission is hereby granted, free of charge, to any person obtaining
1206
+ a copy of this software and associated documentation files (the
1207
+ "Software"), to deal in the Software without restriction, including
1208
+ without limitation the rights to use, copy, modify, merge, publish,
1209
+ distribute, sublicense, and/or sell copies of the Software, and to
1210
+ permit persons to whom the Software is furnished to do so, subject to
1211
+ the following conditions:
1212
+
1213
+ The above copyright notice and this permission notice shall be
1214
+ included in all copies or substantial portions of the Software.
1215
+
1216
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1217
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1218
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1219
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1220
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1221
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1222
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1223
+
1224
+
1225
+ >>> rspec-expectations-2.10.0
1226
+
1227
+ (The MIT License)
1228
+
1229
+ Copyright (c) 2006 David Chelimsky, The RSpec Development Team
1230
+ Copyright (c) 2005 Steven Baker
1231
+
1232
+ Permission is hereby granted, free of charge, to any person obtaining
1233
+ a copy of this software and associated documentation files (the
1234
+ "Software"), to deal in the Software without restriction, including
1235
+ without limitation the rights to use, copy, modify, merge, publish,
1236
+ distribute, sublicense, and/or sell copies of the Software, and to
1237
+ permit persons to whom the Software is furnished to do so, subject to
1238
+ the following conditions:
1239
+
1240
+ The above copyright notice and this permission notice shall be
1241
+ included in all copies or substantial portions of the Software.
1242
+
1243
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1244
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1245
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1246
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1247
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1248
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1249
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1250
+
1251
+
1252
+ >>> rspec-mocks-2.10.1
1253
+
1254
+ (The MIT License)
1255
+
1256
+ Copyright (c) 2006 David Chelimsky, The RSpec Development Team
1257
+ Copyright (c) 2005 Steven Baker
1258
+
1259
+ Permission is hereby granted, free of charge, to any person obtaining
1260
+ a copy of this software and associated documentation files (the
1261
+ "Software"), to deal in the Software without restriction, including
1262
+ without limitation the rights to use, copy, modify, merge, publish,
1263
+ distribute, sublicense, and/or sell copies of the Software, and to
1264
+ permit persons to whom the Software is furnished to do so, subject to
1265
+ the following conditions:
1266
+
1267
+ The above copyright notice and this permission notice shall be
1268
+ included in all copies or substantial portions of the Software.
1269
+
1270
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1271
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1272
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1273
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1274
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1275
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1276
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1277
+
1278
+
1279
+ >>> sequel-3.36.1
1280
+
1281
+ Copyright (c) 2007-2008 Sharon Rosner
1282
+ Copyright (c) 2008-2012 Jeremy Evans
1283
+
1284
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1285
+ of this software and associated documentation files (the "Software"), to
1286
+ deal in the Software without restriction, including without limitation the
1287
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
1288
+ sell copies of the Software, and to permit persons to whom the Software is
1289
+ furnished to do so, subject to the following conditions:
1290
+
1291
+ The above copyright notice and this permission notice shall be included in
1292
+ all copies or substantial portions of the Software.
1293
+
1294
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1295
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1296
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1297
+ THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1298
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1299
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1300
+
1301
+
1302
+ >>> sequel-3.40.0
1303
+
1304
+ Copyright (c) 2007-2008 Sharon Rosner
1305
+ Copyright (c) 2008-2012 Jeremy Evans
1306
+
1307
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1308
+ of this software and associated documentation files (the "Software"), to
1309
+ deal in the Software without restriction, including without limitation the
1310
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
1311
+ sell copies of the Software, and to permit persons to whom the Software is
1312
+ furnished to do so, subject to the following conditions:
1313
+
1314
+ The above copyright notice and this permission notice shall be included in
1315
+ all copies or substantial portions of the Software.
1316
+
1317
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1318
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1319
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1320
+ THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1321
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1322
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1323
+
1324
+
1325
+ >>> simplecov-0.6.4
1326
+
1327
+ Copyright (c) 2010-2012 Christoph Olszowka
1328
+
1329
+ Permission is hereby granted, free of charge, to any person obtaining
1330
+ a copy of this software and associated documentation files (the
1331
+ "Software"), to deal in the Software without restriction, including
1332
+ without limitation the rights to use, copy, modify, merge, publish,
1333
+ distribute, sublicense, and/or sell copies of the Software, and to
1334
+ permit persons to whom the Software is furnished to do so, subject to
1335
+ the following conditions:
1336
+
1337
+ The above copyright notice and this permission notice shall be
1338
+ included in all copies or substantial portions of the Software.
1339
+
1340
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1341
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1342
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1343
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1344
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1345
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1346
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1347
+
1348
+
1349
+ >>> simplecov-html-0.5.3
1350
+
1351
+ Copyright (c) 2010-2011 Christoph Olszowka
1352
+
1353
+ Permission is hereby granted, free of charge, to any person obtaining
1354
+ a copy of this software and associated documentation files (the
1355
+ "Software"), to deal in the Software without restriction, including
1356
+ without limitation the rights to use, copy, modify, merge, publish,
1357
+ distribute, sublicense, and/or sell copies of the Software, and to
1358
+ permit persons to whom the Software is furnished to do so, subject to
1359
+ the following conditions:
1360
+
1361
+ The above copyright notice and this permission notice shall be
1362
+ included in all copies or substantial portions of the Software.
1363
+
1364
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1365
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1366
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1367
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1368
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1369
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1370
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1371
+
1372
+
1373
+
1374
+ ADDITIONAL LICENSE INFORMATION:
1375
+
1376
+
1377
+ >BSD
1378
+
1379
+
1380
+ [PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD LICENSE.THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
1381
+
1382
+
1383
+
1384
+ Copyright 2008-2010 Allan Jardine, all rights reserved.
1385
+
1386
+ This source file is free software, under either the GPL v2 license or a
1387
+ BSD style license, as supplied with this software.
1388
+
1389
+ This source file is distributed in the hope that it will be useful, but
1390
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
1391
+ or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
1392
+
1393
+
1394
+ >>> simplecov-rcov-0.2.3
1395
+
1396
+ [PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MIT LICENSE. PLEASE SEE BELOW FOR THE FULL TEXT OF THE MIT LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
1397
+
1398
+
1399
+ Copyright (c) 2007 Christian Bach
1400
+ Examples and docs at: http://tablesorter.com
1401
+ Dual licensed under the MIT and GPL licenses:
1402
+ http://www.opensource.org/licenses/mit-license.php
1403
+ http://www.gnu.org/licenses/gpl.html
1404
+
1405
+ Copyright (c) <year> <copyright holders>
1406
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1407
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1408
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1409
+
1410
+
1411
+ >>> sinatra-1.3.2
1412
+
1413
+ Copyright (c) 2007, 2008, 2009, 2010, 2011 Blake Mizerany
1414
+
1415
+ Permission is hereby granted, free of charge, to any person
1416
+ obtaining a copy of this software and associated documentation
1417
+ files (the "Software"), to deal in the Software without
1418
+ restriction, including without limitation the rights to use,
1419
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1420
+ copies of the Software, and to permit persons to whom the
1421
+ Software is furnished to do so, subject to the following
1422
+ conditions:
1423
+
1424
+ The above copyright notice and this permission notice shall be
1425
+ included in all copies or substantial portions of the Software.
1426
+
1427
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1428
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1429
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1430
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1431
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1432
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1433
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1434
+ OTHER DEALINGS IN THE SOFTWARE.
1435
+
1436
+
1437
+ >>> sinatra-contrib-1.3.1
1438
+
1439
+ Copyright (c) 2008-2011 Nicolas Sanguinetti, entp.com, Konstantin Haase
1440
+
1441
+ Permission is hereby granted, free of charge, to any person obtaining
1442
+ a copy of this software and associated documentation files (the
1443
+ 'Software'), to deal in the Software without restriction, including
1444
+ without limitation the rights to use, copy, modify, merge, publish,
1445
+ distribute, sublicense, and/or sell copies of the Software, and to
1446
+ permit persons to whom the Software is furnished to do so, subject to
1447
+ the following conditions:
1448
+
1449
+ The above copyright notice and this permission notice shall be
1450
+ included in all copies or substantial portions of the Software.
1451
+
1452
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1453
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1454
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1455
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1456
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1457
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1458
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1459
+
1460
+
1461
+ >>> sqlite3-1.3.6
1462
+
1463
+ Copyright (c) 2004, Jamis Buck (jamis@jamisbuck.org)
1464
+ All rights reserved.
1465
+
1466
+ Redistribution and use in source and binary forms, with or without
1467
+ modification, are permitted provided that the following conditions are met:
1468
+
1469
+ Redistributions of source code must retain the above copyright notice,
1470
+ this list of conditions and the following disclaimer.
1471
+
1472
+ Redistributions in binary form must reproduce the above copyright
1473
+ notice, this list of conditions and the following disclaimer in the
1474
+ documentation and/or other materials provided with the distribution.
1475
+
1476
+ The names of its contributors may not be used to endorse or promote
1477
+ products derived from this software without specific prior written
1478
+ permission.
1479
+
1480
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1481
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1482
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1483
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
1484
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1485
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1486
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1487
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1488
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1489
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1490
+
1491
+
1492
+
1493
+ ADDITIONAL LICENSE INFORMATION:
1494
+
1495
+ > LGPL 2.1
1496
+
1497
+ sqlite3-1.3.6.gem\data.tar.gz\data.tar\setup.rb
1498
+
1499
+ Copyright (c) 2000-2004 Minero Aoki
1500
+
1501
+ This program is free software.
1502
+ You can distribute/modify this program under the terms of
1503
+ the GNU LGPL, Lesser General Public License version 2.1.
1504
+
1505
+
1506
+ >>> steno-0.0.5
1507
+
1508
+ Copyright (c) 2012 mpage
1509
+
1510
+ MIT License
1511
+
1512
+ Permission is hereby granted, free of charge, to any person obtaining
1513
+ a copy of this software and associated documentation files (the
1514
+ "Software"), to deal in the Software without restriction, including
1515
+ without limitation the rights to use, copy, modify, merge, publish,
1516
+ distribute, sublicense, and/or sell copies of the Software, and to
1517
+ permit persons to whom the Software is furnished to do so, subject to
1518
+ the following conditions:
1519
+
1520
+ The above copyright notice and this permission notice shall be
1521
+ included in all copies or substantial portions of the Software.
1522
+
1523
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1524
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1525
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1526
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1527
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1528
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1529
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1530
+
1531
+
1532
+ >>> thor-0.15.3
1533
+
1534
+ Copyright (c) 2008 Yehuda Katz, Eric Hodel, et al.
1535
+
1536
+ Permission is hereby granted, free of charge, to any person obtaining
1537
+ a copy of this software and associated documentation files (the
1538
+ "Software"), to deal in the Software without restriction, including
1539
+ without limitation the rights to use, copy, modify, merge, publish,
1540
+ distribute, sublicense, and/or sell copies of the Software, and to
1541
+ permit persons to whom the Software is furnished to do so, subject to
1542
+ the following conditions:
1543
+
1544
+ The above copyright notice and this permission notice shall be
1545
+ included in all copies or substantial portions of the Software.
1546
+
1547
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1548
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1549
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1550
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1551
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1552
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1553
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1554
+
1555
+
1556
+ >>> thor-0.15.4
1557
+
1558
+ Copyright (c) 2008 Yehuda Katz, Eric Hodel, et al.
1559
+
1560
+ Permission is hereby granted, free of charge, to any person obtaining
1561
+ a copy of this software and associated documentation files (the
1562
+ "Software"), to deal in the Software without restriction, including
1563
+ without limitation the rights to use, copy, modify, merge, publish,
1564
+ distribute, sublicense, and/or sell copies of the Software, and to
1565
+ permit persons to whom the Software is furnished to do so, subject to
1566
+ the following conditions:
1567
+
1568
+ The above copyright notice and this permission notice shall be
1569
+ included in all copies or substantial portions of the Software.
1570
+
1571
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1572
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1573
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1574
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1575
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1576
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1577
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1578
+
1579
+
1580
+ >>> tilt-1.3.3
1581
+
1582
+ Copyright (c) 2010 Ryan Tomayko <http://tomayko.com/about>
1583
+
1584
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1585
+ of this software and associated documentation files (the "Software"), to
1586
+ deal in the Software without restriction, including without limitation the
1587
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
1588
+ sell copies of the Software, and to permit persons to whom the Software is
1589
+ furnished to do so, subject to the following conditions:
1590
+
1591
+ The above copyright notice and this permission notice shall be included in
1592
+ all copies or substantial portions of the Software.
1593
+
1594
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1595
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1596
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1597
+ THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1598
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1599
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1600
+
1601
+
1602
+ >>> virtus-0.5.2
1603
+
1604
+ Copyright (c) 2011-2012 Piotr Solnica
1605
+
1606
+ Permission is hereby granted, free of charge, to any person obtaining
1607
+ a copy of this software and associated documentation files (the
1608
+ "Software"), to deal in the Software without restriction, including
1609
+ without limitation the rights to use, copy, modify, merge, publish,
1610
+ distribute, sublicense, and/or sell copies of the Software, and to
1611
+ permit persons to whom the Software is furnished to do so, subject to
1612
+ the following conditions:
1613
+
1614
+ The above copyright notice and this permission notice shall be
1615
+ included in all copies or substantial portions of the Software.
1616
+
1617
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1618
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1619
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1620
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1621
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1622
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1623
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1624
+
1625
+
1626
+ >>> webmock-1.8.11
1627
+
1628
+ Copyright (c) 2009-2010 Bartosz Blimke
1629
+
1630
+ Permission is hereby granted, free of charge, to any person obtaining
1631
+ a copy of this software and associated documentation files (the
1632
+ "Software"), to deal in the Software without restriction, including
1633
+ without limitation the rights to use, copy, modify, merge, publish,
1634
+ distribute, sublicense, and/or sell copies of the Software, and to
1635
+ permit persons to whom the Software is furnished to do so, subject to
1636
+ the following conditions:
1637
+
1638
+ The above copyright notice and this permission notice shall be
1639
+ included in all copies or substantial portions of the Software.
1640
+
1641
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1642
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1643
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1644
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1645
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1646
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1647
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1648
+
1649
+
1650
+ >>> yajl-ruby-0.8.3
1651
+
1652
+ Copyright (c) 2008-2011 Brian Lopez - http://github.com/brianmario
1653
+
1654
+ Permission is hereby granted, free of charge, to any person obtaining
1655
+ a copy of this software and associated documentation files (the
1656
+ "Software"), to deal in the Software without restriction, including
1657
+ without limitation the rights to use, copy, modify, merge, publish,
1658
+ distribute, sublicense, and/or sell copies of the Software, and to
1659
+ permit persons to whom the Software is furnished to do so, subject to
1660
+ the following conditions:
1661
+
1662
+ The above copyright notice and this permission notice shall be
1663
+ included in all copies or substantial portions of the Software.
1664
+
1665
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1666
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1667
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1668
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1669
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1670
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1671
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1672
+
1673
+
1674
+
1675
+ ADDITIONAL LICENSE INFORMATION:
1676
+
1677
+
1678
+ > BSD
1679
+
1680
+
1681
+ yajl-ruby-0.8.3.gem\data.tar.gz\data.tar\ext\yajl\yajl_parser.h
1682
+
1683
+
1684
+ Copyright 2010, Lloyd Hilaiel.
1685
+
1686
+ Redistribution and use in source and binary forms, with or without
1687
+ modification, are permitted provided that the following conditions are
1688
+ met:
1689
+
1690
+ 1. Redistributions of source code must retain the above copyright
1691
+ notice, this list of conditions and the following disclaimer.
1692
+
1693
+ 2. Redistributions in binary form must reproduce the above copyright
1694
+ notice, this list of conditions and the following disclaimer in
1695
+ the documentation and/or other materials provided with the
1696
+ distribution.
1697
+
1698
+ 3. Neither the name of Lloyd Hilaiel nor the names of its
1699
+ contributors may be used to endorse or promote products derived
1700
+ from this software without specific prior written permission.
1701
+
1702
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1703
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1704
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1705
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
1706
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1707
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1708
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1709
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1710
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
1711
+ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1712
+ POSSIBILITY OF SUCH DAMAGE.
1713
+
1714
+
1715
+ --------------- SECTION 2: Apache License, V2.0 ----------
1716
+
1717
+ Apache License, V2.0 is applicable to the following component(s).
1718
+
1719
+
1720
+ >>> addressable-2.2.8
1721
+
1722
+ Copyright (C) 2006-2011 Bob Aman
1723
+
1724
+ Licensed under the Apache License, Version 2.0 (the "License");
1725
+ you may not use this file except in compliance with the License.
1726
+ You may obtain a copy of the License at
1727
+
1728
+ http://www.apache.org/licenses/LICENSE-2.0
1729
+
1730
+ Unless required by applicable law or agreed to in writing, software
1731
+ distributed under the License is distributed on an "AS IS" BASIS,
1732
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1733
+ See the License for the specific language governing permissions and
1734
+ limitations under the License.
1735
+
1736
+
1737
+ >>> addressable-2.3.2
1738
+
1739
+ Copyright (C) 2006-2011 Bob Aman
1740
+
1741
+ Licensed under the Apache License, Version 2.0 (the "License");
1742
+ you may not use this file except in compliance with the License.
1743
+ You may obtain a copy of the License at
1744
+
1745
+ http://www.apache.org/licenses/LICENSE-2.0
1746
+
1747
+ Unless required by applicable law or agreed to in writing, software
1748
+ distributed under the License is distributed on an "AS IS" BASIS,
1749
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1750
+ See the License for the specific language governing permissions and
1751
+ limitations under the License.
1752
+
1753
+
1754
+ >>> cf-uaa-client-0.2.0
1755
+
1756
+ Cloud Foundry 2012.02.03 Beta
1757
+ Copyright (c) [2009-2012] VMware, Inc. All Rights Reserved.
1758
+
1759
+ This product is licensed to you under the Apache License, Version 2.0 (the "License").
1760
+ You may not use this product except in compliance with the License.
1761
+
1762
+ This product includes a number of subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions of the subcomponent's license, as noted in the LICENSE file.
1763
+
1764
+
1765
+ >>> membrane-0.0.2
1766
+
1767
+ License: Apache 2.0
1768
+
1769
+
1770
+ >>> steno-1.0.0
1771
+
1772
+ License : Apache 2.0
1773
+
1774
+
1775
+ >>> vcap_common-2.0.10
1776
+
1777
+ Cloud Foundry
1778
+ Copyright (c) [2009-2012] VMware, Inc. All Rights Reserved.
1779
+
1780
+ This product is licensed to you under the Apache License, Version 2.0 (the "License").
1781
+ You may not use this product except in compliance with the License.
1782
+
1783
+ This product includes a number of subcomponents with
1784
+ separate copyright notices and license terms. Your use of these
1785
+ subcomponents is subject to the terms and conditions of the
1786
+ subcomponent's license, as noted in the LICENSE file
1787
+
1788
+
1789
+ >>> vcap_common-2.0.2
1790
+
1791
+ Cloud Foundry 2012.02.03 Beta
1792
+ Copyright (c) [2009-2012] VMware, Inc. All Rights Reserved.
1793
+
1794
+ This product is licensed to you under the Apache License, Version 2.0 (the "License").
1795
+ You may not use this product except in compliance with the License.
1796
+
1797
+ This product includes a number of subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions of the subcomponent's license, as noted in the LICENSE file.
1798
+
1799
+
1800
+ --------------- SECTION 3: GNU General Public License, V2.0 ----------
1801
+
1802
+ GNU General Public License, V2.0 is applicable to the following component(s).
1803
+
1804
+
1805
+ >>> ruby-graphviz-1.0.5
1806
+
1807
+ Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Gregoire Lejeune <gregoire.lejeune@free.fr>
1808
+
1809
+ This program is free software; you can redistribute it and/or modify
1810
+ it under the terms of the GNU General Public License as published by
1811
+ the Free Software Foundation; either version 2 of the License, or
1812
+ (at your option) any later version.
1813
+
1814
+ This program is distributed in the hope that it will be useful,
1815
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1816
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1817
+ GNU General Public License for more details.
1818
+
1819
+ You should have received a copy of the GNU General Public License
1820
+ along with this program; if not, write to the Free Software
1821
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1822
+
1823
+
1824
+ ADDITIONAL LICENSE INFORMATION;
1825
+
1826
+ > MIT
1827
+
1828
+ ruby-graphviz-1.0.5.gem\data.tar.gz\data.tar\examples\sdlshapes\sdl.ps
1829
+
1830
+ COPYRIGHT AND PERMISSION NOTICE
1831
+ Copyright (C) 2005 Cambridge Silicon Radio Ltd.; all rights reserved.
1832
+
1833
+ Permission is hereby granted, free of charge, to any person obtaining
1834
+ a copy of this software and associated documentation files (the
1835
+ "Software"), to deal in the Software without restriction, including
1836
+ without limitation the rights to use, copy, modify, merge, publish,
1837
+ distribute, sublicense, and/or sell copies of the Software, and to
1838
+ permit persons to whom the Software is furnished to do so, subject to
1839
+ the following conditions:
1840
+
1841
+ The above copyright notice and this permission notice shall be
1842
+ included in all copies or substantial portions of the Software.
1843
+
1844
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1845
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1846
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1847
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1848
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1849
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1850
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1851
+
1852
+ Except as contained in this notice, the name of a copyright holder
1853
+ shall not be used in advertising or otherwise to promote the sale, use
1854
+ or other dealings in the Software without prior written authorization
1855
+ of the copyright holder.
1856
+
1857
+
1858
+ --------------- SECTION 4: Ruby Clause-6 ----------
1859
+
1860
+ Ruby Clause-6 is applicable to the following component(s).
1861
+
1862
+
1863
+ >>> eventmachine-1.0.0
1864
+
1865
+ [PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE RUBY CLAUSE 6. PLEASE SEE THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
1866
+
1867
+
1868
+ EventMachine is copyrighted free software owned by Francis Cianfrocca
1869
+ (blackhedd ... gmail.com). The Owner of this software permits you to
1870
+ redistribute and/or modify the software under either the terms of the GPL
1871
+ version 2 (see the file GPL), or the conditions below ("Ruby License"):
1872
+
1873
+ 1. You may make and give away verbatim copies of the source form of this
1874
+ software without restriction, provided that you retain ALL of the
1875
+ original copyright notices and associated disclaimers.
1876
+
1877
+ 2. You may modify your copy of the software in any way, provided that
1878
+ you do at least ONE of the following:
1879
+
1880
+ a) place your modifications in the Public Domain or otherwise
1881
+ make them Freely Available, such as by posting said
1882
+ modifications to Usenet or an equivalent medium, or by allowing
1883
+ the author to include your modifications in the software.
1884
+
1885
+ b) use the modified software only within your corporation or
1886
+ organization.
1887
+
1888
+ c) give non-standard binaries non-standard names, with
1889
+ instructions on where to get the original software distribution.
1890
+
1891
+ d) make other distribution arrangements with the Owner.
1892
+
1893
+ 3. You may distribute the software in object code or binary form,
1894
+ provided that you do at least ONE of the following:
1895
+
1896
+ a) distribute the binaries and library files of the software,
1897
+ together with instructions (in a manual page or equivalent)
1898
+ on where to get the original distribution.
1899
+
1900
+ b) accompany the distribution with the machine-readable source of
1901
+ the software.
1902
+
1903
+ c) give non-standard binaries non-standard names, with
1904
+ instructions on where to get the original software distribution.
1905
+
1906
+ d) make other distribution arrangements with the Owner.
1907
+
1908
+ 4. You may modify and include parts of the software into any other
1909
+ software (possibly commercial), provided you comply with the terms in
1910
+ Sections 1, 2, and 3 above. But some files in the distribution
1911
+ are not written by the Owner, so they may be made available to you
1912
+ under different terms.
1913
+
1914
+ For the list of those files and their copying conditions, see the
1915
+ file LEGAL.
1916
+
1917
+ 5. The scripts and library files supplied as input to or produced as
1918
+ output from the software do not automatically fall under the
1919
+ copyright of the software, but belong to whoever generated them,
1920
+ and may be sold commercially, and may be aggregated with this
1921
+ software.
1922
+
1923
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
1924
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
1925
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1926
+ PURPOSE.
1927
+
1928
+
1929
+ >>> httpclient-2.2.5
1930
+
1931
+ [PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE RUBYCLAUSE-6 LICENSE STATED BELOW. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
1932
+
1933
+ Copyright (C) 2000-2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
1934
+
1935
+ This program is copyrighted free software by NAKAMURA, Hiroshi. You can
1936
+ redistribute it and/or modify it under the same terms of Ruby's license;
1937
+ either the dual license version in 2003, or any later version.
1938
+
1939
+
1940
+ >>> json_pure-1.7.3
1941
+
1942
+ [PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE RUBY LICENSE STATED BELOW. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
1943
+
1944
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
1945
+
1946
+ You can redistribute it and/or modify it under either the terms of the GPL (see GPL file), or the conditions below:
1947
+ 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers.
1948
+
1949
+ 2. You may modify your copy of the software in any way, provided that you do at least ONE of the following:
1950
+ a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or by allowing the author to include your modifications in the software.
1951
+
1952
+ b) use the modified software only within your corporation or organization.
1953
+
1954
+ c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided.
1955
+
1956
+ d) make other distribution arrangements with the author.
1957
+
1958
+ 3. You may distribute the software in object code or executable form, provided that you do at least ONE of the following:
1959
+
1960
+ a) distribute the executables and library files of the software, together with instructions (in the manual page or equivalent) on where to get the original distribution.
1961
+
1962
+ b) accompany the distribution with the machine-readable source of the software.
1963
+
1964
+ c) give non-standard executables non-standard names, with instructions on where to get the original software distribution.
1965
+
1966
+ d) make other distribution arrangements with the author.
1967
+
1968
+ 4. You may modify and include the part of the software into any other software (possibly commercial). But some files in the distribution are not written by the author, so that they are not under this terms.
1969
+
1970
+ They are gc.c(partly), utils. c(partly), regex.[ch], st.[ch] and some files under the ./missing directory. See each file for the copying condition.
1971
+
1972
+ 5. The scripts and library files supplied as input to or produced as output from the software do not automatically fall under the copyright of the software, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this software.
1973
+
1974
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1975
+
1976
+
1977
+
1978
+ ADDITIONAL LICENSE INFORMATION:
1979
+
1980
+ > MIT
1981
+
1982
+ json_pure-1.7.3.gem\data.tar.gz\data.tar\data\prototype.js
1983
+
1984
+ (c) 2005-2007 Sam Stephenson
1985
+
1986
+ Prototype is freely distributable under the terms of an MIT-style license. For details, see the Prototype web site: http://www.prototypejs.org/
1987
+
1988
+
1989
+ > MIT Style License
1990
+
1991
+ json_pure-1.7.3.gem\data.tar.gz\data.tar\ext\json\ext\generator\generator.c
1992
+
1993
+ Copyright 2001-2004 Unicode, Inc.
1994
+
1995
+ Disclaimer
1996
+
1997
+ This source code is provided as is by Unicode, Inc. No claims are made as to fitness for any particular purpose. No warranties of any kind are expressed or implied. The recipient agrees to determine applicability of information provided. If this file has been purchased on magnetic or optical media from Unicode, Inc., the sole remedy for any claim will be exchange of defective media within 90 days of receipt.
1998
+
1999
+ Limitations on Rights to Redistribute This Code
2000
+
2001
+ Unicode, Inc. hereby grants the right to freely use the information supplied in this file in the creation of products supporting the Unicode Standard, and to make copies of this file in any form for internal or external distribution as long as this notice remains attached.
2002
+
2003
+
2004
+ >>> json_pure-1.7.4
2005
+
2006
+ [PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE RUBY CLAUSE-6 LICENSE .PLEASE SEE BELOW FOR THE FULL TEXT OF THE OF THE RUBY CLAUSE-6 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
2007
+
2008
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
2009
+ You can redistribute it and/or modify it under either the terms of the GPL
2010
+ (see GPL file), or the conditions below:
2011
+
2012
+ 1. You may make and give away verbatim copies of the source form of the
2013
+ software without restriction, provided that you duplicate all of the
2014
+ original copyright notices and associated disclaimers.
2015
+
2016
+ 2. You may modify your copy of the software in any way, provided that
2017
+ you do at least ONE of the following:
2018
+
2019
+ a) place your modifications in the Public Domain or otherwise
2020
+ make them Freely Available, such as by posting said
2021
+ modifications to Usenet or an equivalent medium, or by allowing
2022
+ the author to include your modifications in the software.
2023
+
2024
+ b) use the modified software only within your corporation or
2025
+ organization.
2026
+
2027
+ c) rename any non-standard executables so the names do not conflict
2028
+ with standard executables, which must also be provided.
2029
+
2030
+ d) make other distribution arrangements with the author.
2031
+
2032
+ 3. You may distribute the software in object code or executable
2033
+ form, provided that you do at least ONE of the following:
2034
+
2035
+ a) distribute the executables and library files of the software,
2036
+ together with instructions (in the manual page or equivalent)
2037
+ on where to get the original distribution.
2038
+
2039
+ b) accompany the distribution with the machine-readable source of
2040
+ the software.
2041
+
2042
+ c) give non-standard executables non-standard names, with
2043
+ instructions on where to get the original software distribution.
2044
+
2045
+ d) make other distribution arrangements with the author.
2046
+
2047
+ 4. You may modify and include the part of the software into any other
2048
+ software (possibly commercial). But some files in the distribution
2049
+ are not written by the author, so that they are not under this terms.
2050
+
2051
+ They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
2052
+ files under the ./missing directory. See each file for the copying
2053
+ condition.
2054
+
2055
+ 5. The scripts and library files supplied as input to or produced as
2056
+ output from the software do not automatically fall under the
2057
+ copyright of the software, but belong to whomever generated them,
2058
+ and may be sold commercially, and may be aggregated with this
2059
+ software.
2060
+
2061
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
2062
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
2063
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2064
+ PURPOSE.
2065
+
2066
+
2067
+ ADDITIONAL LICENSE INFORMATION:
2068
+
2069
+
2070
+ > MIT
2071
+
2072
+ json_pure-1.7.4.gem\data.tar.gz\data.tar\data\ prototype.js
2073
+
2074
+ Prototype JavaScript framework, version 1.6.0
2075
+ (c) 2005-2007 Sam Stephenson
2076
+
2077
+ Prototype is freely distributable under the terms of an MIT-style license.
2078
+ For details, see the Prototype web site: http://www.prototypejs.org/
2079
+
2080
+
2081
+ > MIT Style License
2082
+
2083
+ json_pure-1.7.4.gem\data.tar.gz\data.tar\ext\json\ext\generator\generator.c
2084
+
2085
+ Copyright 2001-2004 Unicode, Inc.
2086
+
2087
+ Disclaimer
2088
+
2089
+ This source code is provided as is by Unicode, Inc. No claims are
2090
+ made as to fitness for any particular purpose. No warranties of any
2091
+ kind are expressed or implied. The recipient agrees to determine
2092
+ applicability of information provided. If this file has been
2093
+ purchased on magnetic or optical media from Unicode, Inc., the
2094
+ sole remedy for any claim will be exchange of defective media
2095
+ within 90 days of receipt.
2096
+
2097
+ Limitations on Rights to Redistribute This Code
2098
+
2099
+ Unicode, Inc. hereby grants the right to freely use the information
2100
+ supplied in this file in the creation of products supporting the
2101
+ Unicode Standard, and to make copies of this file in any form
2102
+ for internal or external distribution as long as this notice
2103
+ remains attached.
2104
+
2105
+
2106
+ >>> mime-types-1.18
2107
+
2108
+ [PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE RUBY CLAUSE-6 LICENSE. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF RUBY CLAUSE-6 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
2109
+
2110
+ == Licence
2111
+
2112
+ This software is available under a triple disjunctive licence:
2113
+ {Ruby's licence}[http://www.ruby-lang.org/en/LICENSE.txt],
2114
+ the
2115
+ {Perl Artistic licence}[http://www.perl.com/pub/a/language/misc/Artistic.html],
2116
+ or the {GNU GPL version 2}[http://www.gnu.org/licenses/old-licenses/gpl-2.0.html]
2117
+ (or at your option, any later verison).
2118
+
2119
+ If you do not accept one of these licences, you may not use this software.
2120
+
2121
+ * Copyright 20032012 Austin Ziegler.
2122
+
2123
+
2124
+ >>> pg-0.13.2
2125
+
2126
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
2127
+ You can redistribute it and/or modify it under either the terms of the
2128
+ 2-clause BSDL (see the file BSDL), or the conditions below:
2129
+
2130
+ 1. You may make and give away verbatim copies of the source form of the
2131
+ software without restriction, provided that you duplicate all of the
2132
+ original copyright notices and associated disclaimers.
2133
+
2134
+ 2. You may modify your copy of the software in any way, provided that
2135
+ you do at least ONE of the following:
2136
+
2137
+ a) place your modifications in the Public Domain or otherwise
2138
+ make them Freely Available, such as by posting said
2139
+ modifications to Usenet or an equivalent medium, or by allowing
2140
+ the author to include your modifications in the software.
2141
+
2142
+ b) use the modified software only within your corporation or
2143
+ organization.
2144
+
2145
+ c) give non-standard binaries non-standard names, with
2146
+ instructions on where to get the original software distribution.
2147
+
2148
+ d) make other distribution arrangements with the author.
2149
+
2150
+ 3. You may distribute the software in object code or binary form,
2151
+ provided that you do at least ONE of the following:
2152
+
2153
+ a) distribute the binaries and library files of the software,
2154
+ together with instructions (in the manual page or equivalent)
2155
+ on where to get the original distribution.
2156
+
2157
+ b) accompany the distribution with the machine-readable source of
2158
+ the software.
2159
+
2160
+ c) give non-standard binaries non-standard names, with
2161
+ instructions on where to get the original software distribution.
2162
+
2163
+ d) make other distribution arrangements with the author.
2164
+
2165
+ 4. You may modify and include the part of the software into any other
2166
+ software (possibly commercial). But some files in the distribution
2167
+ are not written by the author, so that they are not under these terms.
2168
+
2169
+ For the list of those files and their copying conditions, see the
2170
+ file LEGAL.
2171
+
2172
+ 5. The scripts and library files supplied as input to or produced as
2173
+ output from the software do not automatically fall under the
2174
+ copyright of the software, but belong to whomever generated them,
2175
+ and may be sold commercially, and may be aggregated with this
2176
+ software.
2177
+
2178
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
2179
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
2180
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2181
+ PURPOSE.
2182
+
2183
+ ADDITIONAL LICENSE INFORMATION:
2184
+
2185
+ > MIT
2186
+
2187
+ pg-0.13.2-x86-mingw32.gem\data.tar.gz\data.tar\POSTGRES
2188
+
2189
+
2190
+ PostgreSQL Database Management System
2191
+ (formerly known as Postgres, then as Postgres95)
2192
+
2193
+ Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
2194
+
2195
+ Portions Copyright (c) 1994, The Regents of the University of California
2196
+
2197
+ Permission to use, copy, modify, and distribute this software and its
2198
+ documentation for any purpose, without fee, and without a written agreement
2199
+ is hereby granted, provided that the above copyright notice and this
2200
+ paragraph and the following two paragraphs appear in all copies.
2201
+
2202
+ IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
2203
+ DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
2204
+ LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
2205
+ DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE
2206
+ POSSIBILITY OF SUCH DAMAGE.
2207
+
2208
+ THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
2209
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
2210
+ AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
2211
+ ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
2212
+ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
2213
+
2214
+
2215
+ > BSD
2216
+
2217
+ pg-0.13.2-x86-mingw32.gem\data.tar.gz\data.tar\BSDL
2218
+
2219
+
2220
+ Copyright (C) 1993-2010 Yukihiro Matsumoto. All rights reserved.
2221
+
2222
+ Redistribution and use in source and binary forms, with or without
2223
+ modification, are permitted provided that the following conditions
2224
+ are met:
2225
+ 1. Redistributions of source code must retain the above copyright
2226
+ notice, this list of conditions and the following disclaimer.
2227
+ 2. Redistributions in binary form must reproduce the above copyright
2228
+ notice, this list of conditions and the following disclaimer in the
2229
+ documentation and/or other materials provided with the distribution.
2230
+
2231
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2232
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2233
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2234
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2235
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2236
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2237
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2238
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2239
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2240
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2241
+ SUCH DAMAGE.
2242
+
2243
+
2244
+ >>> thin-1.3.1
2245
+
2246
+ Original version Copyright (c) 2005 Zed A. Shaw
2247
+
2248
+ You can redistribute it and/or modify it under the same terms as Ruby.
2249
+
2250
+
2251
+ =============== APPENDIX. Standard License Files ==============
2252
+
2253
+
2254
+ --------------- SECTION 1: Ruby Clause-6 -----------
2255
+
2256
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
2257
+ You can redistribute it and/or modify it under either the terms of the GPL
2258
+ (see COPYING.txt file), or the conditions below:
2259
+
2260
+ 1. You may make and give away verbatim copies of the source form of the
2261
+ software without restriction, provided that you duplicate all of the
2262
+ original copyright notices and associated disclaimers.
2263
+
2264
+
2265
+ 2. You may modify your copy of the software in any way, provided that
2266
+ you do at least ONE of the following:
2267
+
2268
+ a) place your modifications in the Public Domain or otherwise
2269
+ make them Freely Available, such as by posting said
2270
+ modifications to Usenet or an equivalent medium, or by allowing
2271
+ the author to include your modifications in the software.
2272
+
2273
+ b) use the modified software only within your corporation or
2274
+ organization.
2275
+
2276
+ c) rename any non-standard executables so the names do not conflict
2277
+ with standard executables, which must also be provided.
2278
+
2279
+ d) make other distribution arrangements with the author.
2280
+
2281
+
2282
+ 3. You may distribute the software in object code or executable
2283
+ form, provided that you do at least ONE of the following:
2284
+
2285
+ a) distribute the executables and library files of the software,
2286
+ together with instructions (in the manual page or equivalent)
2287
+ on where to get the original distribution.
2288
+
2289
+ b) accompany the distribution with the machine-readable source of
2290
+ the software.
2291
+
2292
+ c) give non-standard executables non-standard names, with
2293
+ instructions on where to get the original software distribution.
2294
+
2295
+ d) make other distribution arrangements with the author.
2296
+
2297
+
2298
+ 4. You may modify and include the part of the software into any other
2299
+ software (possibly commercial). But some files in the distribution
2300
+ are not written by the author, so that they are not under this terms.
2301
+
2302
+ They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
2303
+ files under the ./missing directory. See each file for the copying
2304
+ condition.
2305
+
2306
+
2307
+ 5. The scripts and library files supplied as input to or produced as
2308
+ output from the software do not automatically fall under the
2309
+ copyright of the software, but belong to whomever generated them,
2310
+ and may be sold commercially, and may be aggregated with this
2311
+ software.
2312
+
2313
+
2314
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
2315
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
2316
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2317
+ PURPOSE.
2318
+
2319
+
2320
+
2321
+ --------------- SECTION 2: GNU General Public License, V2.0 -----------
2322
+
2323
+ GNU GENERAL PUBLIC LICENSE
2324
+ Version 2, June 1991
2325
+
2326
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
2327
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2328
+ Everyone is permitted to copy and distribute verbatim copies
2329
+ of this license document, but changing it is not allowed.
2330
+
2331
+ Preamble
2332
+
2333
+ The licenses for most software are designed to take away your
2334
+ freedom to share and change it. By contrast, the GNU General Public
2335
+ License is intended to guarantee your freedom to share and change free
2336
+ software--to make sure the software is free for all its users. This
2337
+ General Public License applies to most of the Free Software
2338
+ Foundation's software and to any other program whose authors commit to
2339
+ using it. (Some other Free Software Foundation software is covered by
2340
+ the GNU Lesser General Public License instead.) You can apply it to
2341
+ your programs, too.
2342
+
2343
+ When we speak of free software, we are referring to freedom, not
2344
+ price. Our General Public Licenses are designed to make sure that you
2345
+ have the freedom to distribute copies of free software (and charge for
2346
+ this service if you wish), that you receive source code or can get it
2347
+ if you want it, that you can change the software or use pieces of it
2348
+ in new free programs; and that you know you can do these things.
2349
+
2350
+ To protect your rights, we need to make restrictions that forbid
2351
+ anyone to deny you these rights or to ask you to surrender the rights.
2352
+ These restrictions translate to certain responsibilities for you if you
2353
+ distribute copies of the software, or if you modify it.
2354
+
2355
+ For example, if you distribute copies of such a program, whether
2356
+ gratis or for a fee, you must give the recipients all the rights that
2357
+ you have. You must make sure that they, too, receive or can get the
2358
+ source code. And you must show them these terms so they know their
2359
+ rights.
2360
+
2361
+ We protect your rights with two steps: (1) copyright the software, and
2362
+ (2) offer you this license which gives you legal permission to copy,
2363
+ distribute and/or modify the software.
2364
+
2365
+ Also, for each author's protection and ours, we want to make certain
2366
+ that everyone understands that there is no warranty for this free
2367
+ software. If the software is modified by someone else and passed on, we
2368
+ want its recipients to know that what they have is not the original, so
2369
+ that any problems introduced by others will not reflect on the original
2370
+ authors' reputations.
2371
+
2372
+ Finally, any free program is threatened constantly by software
2373
+ patents. We wish to avoid the danger that redistributors of a free
2374
+ program will individually obtain patent licenses, in effect making the
2375
+ program proprietary. To prevent this, we have made it clear that any
2376
+ patent must be licensed for everyone's free use or not licensed at all.
2377
+
2378
+ The precise terms and conditions for copying, distribution and
2379
+ modification follow.
2380
+
2381
+ GNU GENERAL PUBLIC LICENSE
2382
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
2383
+
2384
+ 0. This License applies to any program or other work which contains
2385
+ a notice placed by the copyright holder saying it may be distributed
2386
+ under the terms of this General Public License. The "Program", below,
2387
+ refers to any such program or work, and a "work based on the Program"
2388
+ means either the Program or any derivative work under copyright law:
2389
+ that is to say, a work containing the Program or a portion of it,
2390
+ either verbatim or with modifications and/or translated into another
2391
+ language. (Hereinafter, translation is included without limitation in
2392
+ the term "modification".) Each licensee is addressed as "you".
2393
+
2394
+ Activities other than copying, distribution and modification are not
2395
+ covered by this License; they are outside its scope. The act of
2396
+ running the Program is not restricted, and the output from the Program
2397
+ is covered only if its contents constitute a work based on the
2398
+ Program (independent of having been made by running the Program).
2399
+ Whether that is true depends on what the Program does.
2400
+
2401
+ 1. You may copy and distribute verbatim copies of the Program's
2402
+ source code as you receive it, in any medium, provided that you
2403
+ conspicuously and appropriately publish on each copy an appropriate
2404
+ copyright notice and disclaimer of warranty; keep intact all the
2405
+ notices that refer to this License and to the absence of any warranty;
2406
+ and give any other recipients of the Program a copy of this License
2407
+ along with the Program.
2408
+
2409
+ You may charge a fee for the physical act of transferring a copy, and
2410
+ you may at your option offer warranty protection in exchange for a fee.
2411
+
2412
+ 2. You may modify your copy or copies of the Program or any portion
2413
+ of it, thus forming a work based on the Program, and copy and
2414
+ distribute such modifications or work under the terms of Section 1
2415
+ above, provided that you also meet all of these conditions:
2416
+
2417
+ a) You must cause the modified files to carry prominent notices
2418
+ stating that you changed the files and the date of any change.
2419
+
2420
+ b) You must cause any work that you distribute or publish, that in
2421
+ whole or in part contains or is derived from the Program or any
2422
+ part thereof, to be licensed as a whole at no charge to all third
2423
+ parties under the terms of this License.
2424
+
2425
+ c) If the modified program normally reads commands interactively
2426
+ when run, you must cause it, when started running for such
2427
+ interactive use in the most ordinary way, to print or display an
2428
+ announcement including an appropriate copyright notice and a
2429
+ notice that there is no warranty (or else, saying that you provide
2430
+ a warranty) and that users may redistribute the program under
2431
+ these conditions, and telling the user how to view a copy of this
2432
+ License. (Exception: if the Program itself is interactive but
2433
+ does not normally print such an announcement, your work based on
2434
+ the Program is not required to print an announcement.)
2435
+
2436
+ These requirements apply to the modified work as a whole. If
2437
+ identifiable sections of that work are not derived from the Program,
2438
+ and can be reasonably considered independent and separate works in
2439
+ themselves, then this License, and its terms, do not apply to those
2440
+ sections when you distribute them as separate works. But when you
2441
+ distribute the same sections as part of a whole which is a work based
2442
+ on the Program, the distribution of the whole must be on the terms of
2443
+ this License, whose permissions for other licensees extend to the
2444
+ entire whole, and thus to each and every part regardless of who wrote it.
2445
+
2446
+ Thus, it is not the intent of this section to claim rights or contest
2447
+ your rights to work written entirely by you; rather, the intent is to
2448
+ exercise the right to control the distribution of derivative or
2449
+ collective works based on the Program.
2450
+
2451
+ In addition, mere aggregation of another work not based on the Program
2452
+ with the Program (or with a work based on the Program) on a volume of
2453
+ a storage or distribution medium does not bring the other work under
2454
+ the scope of this License.
2455
+
2456
+ 3. You may copy and distribute the Program (or a work based on it,
2457
+ under Section 2) in object code or executable form under the terms of
2458
+ Sections 1 and 2 above provided that you also do one of the following:
2459
+
2460
+ a) Accompany it with the complete corresponding machine-readable
2461
+ source code, which must be distributed under the terms of Sections
2462
+ 1 and 2 above on a medium customarily used for software interchange; or,
2463
+
2464
+ b) Accompany it with a written offer, valid for at least three
2465
+ years, to give any third party, for a charge no more than your
2466
+ cost of physically performing source distribution, a complete
2467
+ machine-readable copy of the corresponding source code, to be
2468
+ distributed under the terms of Sections 1 and 2 above on a medium
2469
+ customarily used for software interchange; or,
2470
+
2471
+ c) Accompany it with the information you received as to the offer
2472
+ to distribute corresponding source code. (This alternative is
2473
+ allowed only for noncommercial distribution and only if you
2474
+ received the program in object code or executable form with such
2475
+ an offer, in accord with Subsection b above.)
2476
+
2477
+ The source code for a work means the preferred form of the work for
2478
+ making modifications to it. For an executable work, complete source
2479
+ code means all the source code for all modules it contains, plus any
2480
+ associated interface definition files, plus the scripts used to
2481
+ control compilation and installation of the executable. However, as a
2482
+ special exception, the source code distributed need not include
2483
+ anything that is normally distributed (in either source or binary
2484
+ form) with the major components (compiler, kernel, and so on) of the
2485
+ operating system on which the executable runs, unless that component
2486
+ itself accompanies the executable.
2487
+
2488
+ If distribution of executable or object code is made by offering
2489
+ access to copy from a designated place, then offering equivalent
2490
+ access to copy the source code from the same place counts as
2491
+ distribution of the source code, even though third parties are not
2492
+ compelled to copy the source along with the object code.
2493
+
2494
+ 4. You may not copy, modify, sublicense, or distribute the Program
2495
+ except as expressly provided under this License. Any attempt
2496
+ otherwise to copy, modify, sublicense or distribute the Program is
2497
+ void, and will automatically terminate your rights under this License.
2498
+ However, parties who have received copies, or rights, from you under
2499
+ this License will not have their licenses terminated so long as such
2500
+ parties remain in full compliance.
2501
+
2502
+ 5. You are not required to accept this License, since you have not
2503
+ signed it. However, nothing else grants you permission to modify or
2504
+ distribute the Program or its derivative works. These actions are
2505
+ prohibited by law if you do not accept this License. Therefore, by
2506
+ modifying or distributing the Program (or any work based on the
2507
+ Program), you indicate your acceptance of this License to do so, and
2508
+ all its terms and conditions for copying, distributing or modifying
2509
+ the Program or works based on it.
2510
+
2511
+ 6. Each time you redistribute the Program (or any work based on the
2512
+ Program), the recipient automatically receives a license from the
2513
+ original licensor to copy, distribute or modify the Program subject to
2514
+ these terms and conditions. You may not impose any further
2515
+ restrictions on the recipients' exercise of the rights granted herein.
2516
+ You are not responsible for enforcing compliance by third parties to
2517
+ this License.
2518
+
2519
+ 7. If, as a consequence of a court judgment or allegation of patent
2520
+ infringement or for any other reason (not limited to patent issues),
2521
+ conditions are imposed on you (whether by court order, agreement or
2522
+ otherwise) that contradict the conditions of this License, they do not
2523
+ excuse you from the conditions of this License. If you cannot
2524
+ distribute so as to satisfy simultaneously your obligations under this
2525
+ License and any other pertinent obligations, then as a consequence you
2526
+ may not distribute the Program at all. For example, if a patent
2527
+ license would not permit royalty-free redistribution of the Program by
2528
+ all those who receive copies directly or indirectly through you, then
2529
+ the only way you could satisfy both it and this License would be to
2530
+ refrain entirely from distribution of the Program.
2531
+
2532
+ If any portion of this section is held invalid or unenforceable under
2533
+ any particular circumstance, the balance of the section is intended to
2534
+ apply and the section as a whole is intended to apply in other
2535
+ circumstances.
2536
+
2537
+ It is not the purpose of this section to induce you to infringe any
2538
+ patents or other property right claims or to contest validity of any
2539
+ such claims; this section has the sole purpose of protecting the
2540
+ integrity of the free software distribution system, which is
2541
+ implemented by public license practices. Many people have made
2542
+ generous contributions to the wide range of software distributed
2543
+ through that system in reliance on consistent application of that
2544
+ system; it is up to the author/donor to decide if he or she is willing
2545
+ to distribute software through any other system and a licensee cannot
2546
+ impose that choice.
2547
+
2548
+ This section is intended to make thoroughly clear what is believed to
2549
+ be a consequence of the rest of this License.
2550
+
2551
+ 8. If the distribution and/or use of the Program is restricted in
2552
+ certain countries either by patents or by copyrighted interfaces, the
2553
+ original copyright holder who places the Program under this License
2554
+ may add an explicit geographical distribution limitation excluding
2555
+ those countries, so that distribution is permitted only in or among
2556
+ countries not thus excluded. In such case, this License incorporates
2557
+ the limitation as if written in the body of this License.
2558
+
2559
+ 9. The Free Software Foundation may publish revised and/or new versions
2560
+ of the General Public License from time to time. Such new versions will
2561
+ be similar in spirit to the present version, but may differ in detail to
2562
+ address new problems or concerns.
2563
+
2564
+ Each version is given a distinguishing version number. If the Program
2565
+ specifies a version number of this License which applies to it and "any
2566
+ later version", you have the option of following the terms and conditions
2567
+ either of that version or of any later version published by the Free
2568
+ Software Foundation. If the Program does not specify a version number of
2569
+ this License, you may choose any version ever published by the Free Software
2570
+ Foundation.
2571
+
2572
+ 10. If you wish to incorporate parts of the Program into other free
2573
+ programs whose distribution conditions are different, write to the author
2574
+ to ask for permission. For software which is copyrighted by the Free
2575
+ Software Foundation, write to the Free Software Foundation; we sometimes
2576
+ make exceptions for this. Our decision will be guided by the two goals
2577
+ of preserving the free status of all derivatives of our free software and
2578
+ of promoting the sharing and reuse of software generally.
2579
+
2580
+ NO WARRANTY
2581
+
2582
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
2583
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
2584
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
2585
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
2586
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
2587
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
2588
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
2589
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
2590
+ REPAIR OR CORRECTION.
2591
+
2592
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
2593
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
2594
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
2595
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
2596
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
2597
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
2598
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
2599
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
2600
+ POSSIBILITY OF SUCH DAMAGES.
2601
+
2602
+ END OF TERMS AND CONDITIONS
2603
+
2604
+ How to Apply These Terms to Your New Programs
2605
+
2606
+ If you develop a new program, and you want it to be of the greatest
2607
+ possible use to the public, the best way to achieve this is to make it
2608
+ free software which everyone can redistribute and change under these terms.
2609
+
2610
+ To do so, attach the following notices to the program. It is safest
2611
+ to attach them to the start of each source file to most effectively
2612
+ convey the exclusion of warranty; and each file should have at least
2613
+ the "copyright" line and a pointer to where the full notice is found.
2614
+
2615
+ <one line to give the program's name and a brief idea of what it does.>
2616
+ Copyright (C) <year> <name of author>
2617
+
2618
+ This program is free software; you can redistribute it and/or modify
2619
+ it under the terms of the GNU General Public License as published by
2620
+ the Free Software Foundation; either version 2 of the License, or
2621
+ (at your option) any later version.
2622
+
2623
+ This program is distributed in the hope that it will be useful,
2624
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
2625
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2626
+ GNU General Public License for more details.
2627
+
2628
+ You should have received a copy of the GNU General Public License along
2629
+ with this program; if not, write to the Free Software Foundation, Inc.,
2630
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2631
+
2632
+ Also add information on how to contact you by electronic and paper mail.
2633
+
2634
+ If the program is interactive, make it output a short notice like this
2635
+ when it starts in an interactive mode:
2636
+
2637
+ Gnomovision version 69, Copyright (C) year name of author
2638
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
2639
+ This is free software, and you are welcome to redistribute it
2640
+ under certain conditions; type `show c' for details.
2641
+
2642
+ The hypothetical commands `show w' and `show c' should show the appropriate
2643
+ parts of the General Public License. Of course, the commands you use may
2644
+ be called something other than `show w' and `show c'; they could even be
2645
+ mouse-clicks or menu items--whatever suits your program.
2646
+
2647
+ You should also get your employer (if you work as a programmer) or your
2648
+ school, if any, to sign a "copyright disclaimer" for the program, if
2649
+ necessary. Here is a sample; alter the names:
2650
+
2651
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
2652
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
2653
+
2654
+ <signature of Ty Coon>, 1 April 1989
2655
+ Ty Coon, President of Vice
2656
+
2657
+ This General Public License does not permit incorporating your program into
2658
+ proprietary programs. If your program is a subroutine library, you may
2659
+ consider it more useful to permit linking proprietary applications with the
2660
+ library. If this is what you want to do, use the GNU Lesser General
2661
+ Public License instead of this License.
2662
+
2663
+
2664
+
2665
+
2666
+ --------------- SECTION 3: GNU Lesser General Public License, V2.1 -----------
2667
+
2668
+ GNU LESSER GENERAL PUBLIC LICENSE
2669
+ Version 2.1, February 1999
2670
+
2671
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
2672
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2673
+ Everyone is permitted to copy and distribute verbatim copies
2674
+ of this license document, but changing it is not allowed.
2675
+
2676
+ [This is the first released version of the Lesser GPL. It also counts
2677
+ as the successor of the GNU Library Public License, version 2, hence
2678
+ the version number 2.1.]
2679
+
2680
+ Preamble
2681
+
2682
+ The licenses for most software are designed to take away your
2683
+ freedom to share and change it. By contrast, the GNU General Public
2684
+ Licenses are intended to guarantee your freedom to share and change
2685
+ free software--to make sure the software is free for all its users.
2686
+
2687
+ This license, the Lesser General Public License, applies to some
2688
+ specially designated software packages--typically libraries--of the
2689
+ Free Software Foundation and other authors who decide to use it. You
2690
+ can use it too, but we suggest you first think carefully about whether
2691
+ this license or the ordinary General Public License is the better
2692
+ strategy to use in any particular case, based on the explanations below.
2693
+
2694
+ When we speak of free software, we are referring to freedom of use,
2695
+ not price. Our General Public Licenses are designed to make sure that
2696
+ you have the freedom to distribute copies of free software (and charge
2697
+ for this service if you wish); that you receive source code or can get
2698
+ it if you want it; that you can change the software and use pieces of
2699
+ it in new free programs; and that you are informed that you can do
2700
+ these things.
2701
+
2702
+ To protect your rights, we need to make restrictions that forbid
2703
+ distributors to deny you these rights or to ask you to surrender these
2704
+ rights. These restrictions translate to certain responsibilities for
2705
+ you if you distribute copies of the library or if you modify it.
2706
+
2707
+ For example, if you distribute copies of the library, whether gratis
2708
+ or for a fee, you must give the recipients all the rights that we gave
2709
+ you. You must make sure that they, too, receive or can get the source
2710
+ code. If you link other code with the library, you must provide
2711
+ complete object files to the recipients, so that they can relink them
2712
+ with the library after making changes to the library and recompiling
2713
+ it. And you must show them these terms so they know their rights.
2714
+
2715
+ We protect your rights with a two-step method: (1) we copyright the
2716
+ library, and (2) we offer you this license, which gives you legal
2717
+ permission to copy, distribute and/or modify the library.
2718
+
2719
+ To protect each distributor, we want to make it very clear that
2720
+ there is no warranty for the free library. Also, if the library is
2721
+ modified by someone else and passed on, the recipients should know
2722
+ that what they have is not the original version, so that the original
2723
+ author's reputation will not be affected by problems that might be
2724
+ introduced by others.
2725
+
2726
+ Finally, software patents pose a constant threat to the existence of
2727
+ any free program. We wish to make sure that a company cannot
2728
+ effectively restrict the users of a free program by obtaining a
2729
+ restrictive license from a patent holder. Therefore, we insist that
2730
+ any patent license obtained for a version of the library must be
2731
+ consistent with the full freedom of use specified in this license.
2732
+
2733
+ Most GNU software, including some libraries, is covered by the
2734
+ ordinary GNU General Public License. This license, the GNU Lesser
2735
+ General Public License, applies to certain designated libraries, and
2736
+ is quite different from the ordinary General Public License. We use
2737
+ this license for certain libraries in order to permit linking those
2738
+ libraries into non-free programs.
2739
+
2740
+ When a program is linked with a library, whether statically or using
2741
+ a shared library, the combination of the two is legally speaking a
2742
+ combined work, a derivative of the original library. The ordinary
2743
+ General Public License therefore permits such linking only if the
2744
+ entire combination fits its criteria of freedom. The Lesser General
2745
+ Public License permits more lax criteria for linking other code with
2746
+ the library.
2747
+
2748
+ We call this license the "Lesser" General Public License because it
2749
+ does Less to protect the user's freedom than the ordinary General
2750
+ Public License. It also provides other free software developers Less
2751
+ of an advantage over competing non-free programs. These disadvantages
2752
+ are the reason we use the ordinary General Public License for many
2753
+ libraries. However, the Lesser license provides advantages in certain
2754
+ special circumstances.
2755
+
2756
+ For example, on rare occasions, there may be a special need to
2757
+ encourage the widest possible use of a certain library, so that it becomes
2758
+ a de-facto standard. To achieve this, non-free programs must be
2759
+ allowed to use the library. A more frequent case is that a free
2760
+ library does the same job as widely used non-free libraries. In this
2761
+ case, there is little to gain by limiting the free library to free
2762
+ software only, so we use the Lesser General Public License.
2763
+
2764
+ In other cases, permission to use a particular library in non-free
2765
+ programs enables a greater number of people to use a large body of
2766
+ free software. For example, permission to use the GNU C Library in
2767
+ non-free programs enables many more people to use the whole GNU
2768
+ operating system, as well as its variant, the GNU/Linux operating
2769
+ system.
2770
+
2771
+ Although the Lesser General Public License is Less protective of the
2772
+ users' freedom, it does ensure that the user of a program that is
2773
+ linked with the Library has the freedom and the wherewithal to run
2774
+ that program using a modified version of the Library.
2775
+
2776
+ The precise terms and conditions for copying, distribution and
2777
+ modification follow. Pay close attention to the difference between a
2778
+ "work based on the library" and a "work that uses the library". The
2779
+ former contains code derived from the library, whereas the latter must
2780
+ be combined with the library in order to run.
2781
+
2782
+ GNU LESSER GENERAL PUBLIC LICENSE
2783
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
2784
+
2785
+ 0. This License Agreement applies to any software library or other
2786
+ program which contains a notice placed by the copyright holder or
2787
+ other authorized party saying it may be distributed under the terms of
2788
+ this Lesser General Public License (also called "this License").
2789
+ Each licensee is addressed as "you".
2790
+
2791
+ A "library" means a collection of software functions and/or data
2792
+ prepared so as to be conveniently linked with application programs
2793
+ (which use some of those functions and data) to form executables.
2794
+
2795
+ The "Library", below, refers to any such software library or work
2796
+ which has been distributed under these terms. A "work based on the
2797
+ Library" means either the Library or any derivative work under
2798
+ copyright law: that is to say, a work containing the Library or a
2799
+ portion of it, either verbatim or with modifications and/or translated
2800
+ straightforwardly into another language. (Hereinafter, translation is
2801
+ included without limitation in the term "modification".)
2802
+
2803
+ "Source code" for a work means the preferred form of the work for
2804
+ making modifications to it. For a library, complete source code means
2805
+ all the source code for all modules it contains, plus any associated
2806
+ interface definition files, plus the scripts used to control compilation
2807
+ and installation of the library.
2808
+
2809
+ Activities other than copying, distribution and modification are not
2810
+ covered by this License; they are outside its scope. The act of
2811
+ running a program using the Library is not restricted, and output from
2812
+ such a program is covered only if its contents constitute a work based
2813
+ on the Library (independent of the use of the Library in a tool for
2814
+ writing it). Whether that is true depends on what the Library does
2815
+ and what the program that uses the Library does.
2816
+
2817
+ 1. You may copy and distribute verbatim copies of the Library's
2818
+ complete source code as you receive it, in any medium, provided that
2819
+ you conspicuously and appropriately publish on each copy an
2820
+ appropriate copyright notice and disclaimer of warranty; keep intact
2821
+ all the notices that refer to this License and to the absence of any
2822
+ warranty; and distribute a copy of this License along with the
2823
+ Library.
2824
+
2825
+ You may charge a fee for the physical act of transferring a copy,
2826
+ and you may at your option offer warranty protection in exchange for a
2827
+ fee.
2828
+
2829
+ 2. You may modify your copy or copies of the Library or any portion
2830
+ of it, thus forming a work based on the Library, and copy and
2831
+ distribute such modifications or work under the terms of Section 1
2832
+ above, provided that you also meet all of these conditions:
2833
+
2834
+ a) The modified work must itself be a software library.
2835
+
2836
+ b) You must cause the files modified to carry prominent notices
2837
+ stating that you changed the files and the date of any change.
2838
+
2839
+ c) You must cause the whole of the work to be licensed at no
2840
+ charge to all third parties under the terms of this License.
2841
+
2842
+ d) If a facility in the modified Library refers to a function or a
2843
+ table of data to be supplied by an application program that uses
2844
+ the facility, other than as an argument passed when the facility
2845
+ is invoked, then you must make a good faith effort to ensure that,
2846
+ in the event an application does not supply such function or
2847
+ table, the facility still operates, and performs whatever part of
2848
+ its purpose remains meaningful.
2849
+
2850
+ (For example, a function in a library to compute square roots has
2851
+ a purpose that is entirely well-defined independent of the
2852
+ application. Therefore, Subsection 2d requires that any
2853
+ application-supplied function or table used by this function must
2854
+ be optional: if the application does not supply it, the square
2855
+ root function must still compute square roots.)
2856
+
2857
+ These requirements apply to the modified work as a whole. If
2858
+ identifiable sections of that work are not derived from the Library,
2859
+ and can be reasonably considered independent and separate works in
2860
+ themselves, then this License, and its terms, do not apply to those
2861
+ sections when you distribute them as separate works. But when you
2862
+ distribute the same sections as part of a whole which is a work based
2863
+ on the Library, the distribution of the whole must be on the terms of
2864
+ this License, whose permissions for other licensees extend to the
2865
+ entire whole, and thus to each and every part regardless of who wrote
2866
+ it.
2867
+
2868
+ Thus, it is not the intent of this section to claim rights or contest
2869
+ your rights to work written entirely by you; rather, the intent is to
2870
+ exercise the right to control the distribution of derivative or
2871
+ collective works based on the Library.
2872
+
2873
+ In addition, mere aggregation of another work not based on the Library
2874
+ with the Library (or with a work based on the Library) on a volume of
2875
+ a storage or distribution medium does not bring the other work under
2876
+ the scope of this License.
2877
+
2878
+ 3. You may opt to apply the terms of the ordinary GNU General Public
2879
+ License instead of this License to a given copy of the Library. To do
2880
+ this, you must alter all the notices that refer to this License, so
2881
+ that they refer to the ordinary GNU General Public License, version 2,
2882
+ instead of to this License. (If a newer version than version 2 of the
2883
+ ordinary GNU General Public License has appeared, then you can specify
2884
+ that version instead if you wish.) Do not make any other change in
2885
+ these notices.
2886
+
2887
+ Once this change is made in a given copy, it is irreversible for
2888
+ that copy, so the ordinary GNU General Public License applies to all
2889
+ subsequent copies and derivative works made from that copy.
2890
+
2891
+ This option is useful when you wish to copy part of the code of
2892
+ the Library into a program that is not a library.
2893
+
2894
+ 4. You may copy and distribute the Library (or a portion or
2895
+ derivative of it, under Section 2) in object code or executable form
2896
+ under the terms of Sections 1 and 2 above provided that you accompany
2897
+ it with the complete corresponding machine-readable source code, which
2898
+ must be distributed under the terms of Sections 1 and 2 above on a
2899
+ medium customarily used for software interchange.
2900
+
2901
+ If distribution of object code is made by offering access to copy
2902
+ from a designated place, then offering equivalent access to copy the
2903
+ source code from the same place satisfies the requirement to
2904
+ distribute the source code, even though third parties are not
2905
+ compelled to copy the source along with the object code.
2906
+
2907
+ 5. A program that contains no derivative of any portion of the
2908
+ Library, but is designed to work with the Library by being compiled or
2909
+ linked with it, is called a "work that uses the Library". Such a
2910
+ work, in isolation, is not a derivative work of the Library, and
2911
+ therefore falls outside the scope of this License.
2912
+
2913
+ However, linking a "work that uses the Library" with the Library
2914
+ creates an executable that is a derivative of the Library (because it
2915
+ contains portions of the Library), rather than a "work that uses the
2916
+ library". The executable is therefore covered by this License.
2917
+ Section 6 states terms for distribution of such executables.
2918
+
2919
+ When a "work that uses the Library" uses material from a header file
2920
+ that is part of the Library, the object code for the work may be a
2921
+ derivative work of the Library even though the source code is not.
2922
+ Whether this is true is especially significant if the work can be
2923
+ linked without the Library, or if the work is itself a library. The
2924
+ threshold for this to be true is not precisely defined by law.
2925
+
2926
+ If such an object file uses only numerical parameters, data
2927
+ structure layouts and accessors, and small macros and small inline
2928
+ functions (ten lines or less in length), then the use of the object
2929
+ file is unrestricted, regardless of whether it is legally a derivative
2930
+ work. (Executables containing this object code plus portions of the
2931
+ Library will still fall under Section 6.)
2932
+
2933
+ Otherwise, if the work is a derivative of the Library, you may
2934
+ distribute the object code for the work under the terms of Section 6.
2935
+ Any executables containing that work also fall under Section 6,
2936
+ whether or not they are linked directly with the Library itself.
2937
+
2938
+ 6. As an exception to the Sections above, you may also combine or
2939
+ link a "work that uses the Library" with the Library to produce a
2940
+ work containing portions of the Library, and distribute that work
2941
+ under terms of your choice, provided that the terms permit
2942
+ modification of the work for the customer's own use and reverse
2943
+ engineering for debugging such modifications.
2944
+
2945
+ You must give prominent notice with each copy of the work that the
2946
+ Library is used in it and that the Library and its use are covered by
2947
+ this License. You must supply a copy of this License. If the work
2948
+ during execution displays copyright notices, you must include the
2949
+ copyright notice for the Library among them, as well as a reference
2950
+ directing the user to the copy of this License. Also, you must do one
2951
+ of these things:
2952
+
2953
+ a) Accompany the work with the complete corresponding
2954
+ machine-readable source code for the Library including whatever
2955
+ changes were used in the work (which must be distributed under
2956
+ Sections 1 and 2 above); and, if the work is an executable linked
2957
+ with the Library, with the complete machine-readable "work that
2958
+ uses the Library", as object code and/or source code, so that the
2959
+ user can modify the Library and then relink to produce a modified
2960
+ executable containing the modified Library. (It is understood
2961
+ that the user who changes the contents of definitions files in the
2962
+ Library will not necessarily be able to recompile the application
2963
+ to use the modified definitions.)
2964
+
2965
+ b) Use a suitable shared library mechanism for linking with the
2966
+ Library. A suitable mechanism is one that (1) uses at run time a
2967
+ copy of the library already present on the user's computer system,
2968
+ rather than copying library functions into the executable, and (2)
2969
+ will operate properly with a modified version of the library, if
2970
+ the user installs one, as long as the modified version is
2971
+ interface-compatible with the version that the work was made with.
2972
+
2973
+ c) Accompany the work with a written offer, valid for at
2974
+ least three years, to give the same user the materials
2975
+ specified in Subsection 6a, above, for a charge no more
2976
+ than the cost of performing this distribution.
2977
+
2978
+ d) If distribution of the work is made by offering access to copy
2979
+ from a designated place, offer equivalent access to copy the above
2980
+ specified materials from the same place.
2981
+
2982
+ e) Verify that the user has already received a copy of these
2983
+ materials or that you have already sent this user a copy.
2984
+
2985
+ For an executable, the required form of the "work that uses the
2986
+ Library" must include any data and utility programs needed for
2987
+ reproducing the executable from it. However, as a special exception,
2988
+ the materials to be distributed need not include anything that is
2989
+ normally distributed (in either source or binary form) with the major
2990
+ components (compiler, kernel, and so on) of the operating system on
2991
+ which the executable runs, unless that component itself accompanies
2992
+ the executable.
2993
+
2994
+ It may happen that this requirement contradicts the license
2995
+ restrictions of other proprietary libraries that do not normally
2996
+ accompany the operating system. Such a contradiction means you cannot
2997
+ use both them and the Library together in an executable that you
2998
+ distribute.
2999
+
3000
+ 7. You may place library facilities that are a work based on the
3001
+ Library side-by-side in a single library together with other library
3002
+ facilities not covered by this License, and distribute such a combined
3003
+ library, provided that the separate distribution of the work based on
3004
+ the Library and of the other library facilities is otherwise
3005
+ permitted, and provided that you do these two things:
3006
+
3007
+ a) Accompany the combined library with a copy of the same work
3008
+ based on the Library, uncombined with any other library
3009
+ facilities. This must be distributed under the terms of the
3010
+ Sections above.
3011
+
3012
+ b) Give prominent notice with the combined library of the fact
3013
+ that part of it is a work based on the Library, and explaining
3014
+ where to find the accompanying uncombined form of the same work.
3015
+
3016
+ 8. You may not copy, modify, sublicense, link with, or distribute
3017
+ the Library except as expressly provided under this License. Any
3018
+ attempt otherwise to copy, modify, sublicense, link with, or
3019
+ distribute the Library is void, and will automatically terminate your
3020
+ rights under this License. However, parties who have received copies,
3021
+ or rights, from you under this License will not have their licenses
3022
+ terminated so long as such parties remain in full compliance.
3023
+
3024
+ 9. You are not required to accept this License, since you have not
3025
+ signed it. However, nothing else grants you permission to modify or
3026
+ distribute the Library or its derivative works. These actions are
3027
+ prohibited by law if you do not accept this License. Therefore, by
3028
+ modifying or distributing the Library (or any work based on the
3029
+ Library), you indicate your acceptance of this License to do so, and
3030
+ all its terms and conditions for copying, distributing or modifying
3031
+ the Library or works based on it.
3032
+
3033
+ 10. Each time you redistribute the Library (or any work based on the
3034
+ Library), the recipient automatically receives a license from the
3035
+ original licensor to copy, distribute, link with or modify the Library
3036
+ subject to these terms and conditions. You may not impose any further
3037
+ restrictions on the recipients' exercise of the rights granted herein.
3038
+ You are not responsible for enforcing compliance by third parties with
3039
+ this License.
3040
+
3041
+ 11. If, as a consequence of a court judgment or allegation of patent
3042
+ infringement or for any other reason (not limited to patent issues),
3043
+ conditions are imposed on you (whether by court order, agreement or
3044
+ otherwise) that contradict the conditions of this License, they do not
3045
+ excuse you from the conditions of this License. If you cannot
3046
+ distribute so as to satisfy simultaneously your obligations under this
3047
+ License and any other pertinent obligations, then as a consequence you
3048
+ may not distribute the Library at all. For example, if a patent
3049
+ license would not permit royalty-free redistribution of the Library by
3050
+ all those who receive copies directly or indirectly through you, then
3051
+ the only way you could satisfy both it and this License would be to
3052
+ refrain entirely from distribution of the Library.
3053
+
3054
+ If any portion of this section is held invalid or unenforceable under any
3055
+ particular circumstance, the balance of the section is intended to apply,
3056
+ and the section as a whole is intended to apply in other circumstances.
3057
+
3058
+ It is not the purpose of this section to induce you to infringe any
3059
+ patents or other property right claims or to contest validity of any
3060
+ such claims; this section has the sole purpose of protecting the
3061
+ integrity of the free software distribution system which is
3062
+ implemented by public license practices. Many people have made
3063
+ generous contributions to the wide range of software distributed
3064
+ through that system in reliance on consistent application of that
3065
+ system; it is up to the author/donor to decide if he or she is willing
3066
+ to distribute software through any other system and a licensee cannot
3067
+ impose that choice.
3068
+
3069
+ This section is intended to make thoroughly clear what is believed to
3070
+ be a consequence of the rest of this License.
3071
+
3072
+ 12. If the distribution and/or use of the Library is restricted in
3073
+ certain countries either by patents or by copyrighted interfaces, the
3074
+ original copyright holder who places the Library under this License may add
3075
+ an explicit geographical distribution limitation excluding those countries,
3076
+ so that distribution is permitted only in or among countries not thus
3077
+ excluded. In such case, this License incorporates the limitation as if
3078
+ written in the body of this License.
3079
+
3080
+ 13. The Free Software Foundation may publish revised and/or new
3081
+ versions of the Lesser General Public License from time to time.
3082
+ Such new versions will be similar in spirit to the present version,
3083
+ but may differ in detail to address new problems or concerns.
3084
+
3085
+ Each version is given a distinguishing version number. If the Library
3086
+ specifies a version number of this License which applies to it and
3087
+ "any later version", you have the option of following the terms and
3088
+ conditions either of that version or of any later version published by
3089
+ the Free Software Foundation. If the Library does not specify a
3090
+ license version number, you may choose any version ever published by
3091
+ the Free Software Foundation.
3092
+
3093
+ 14. If you wish to incorporate parts of the Library into other free
3094
+ programs whose distribution conditions are incompatible with these,
3095
+ write to the author to ask for permission. For software which is
3096
+ copyrighted by the Free Software Foundation, write to the Free
3097
+ Software Foundation; we sometimes make exceptions for this. Our
3098
+ decision will be guided by the two goals of preserving the free status
3099
+ of all derivatives of our free software and of promoting the sharing
3100
+ and reuse of software generally.
3101
+
3102
+ NO WARRANTY
3103
+
3104
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
3105
+ WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
3106
+ EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
3107
+ OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
3108
+ KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
3109
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3110
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
3111
+ LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
3112
+ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
3113
+
3114
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
3115
+ WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
3116
+ AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
3117
+ FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
3118
+ CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
3119
+ LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
3120
+ RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
3121
+ FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
3122
+ SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
3123
+ DAMAGES.
3124
+
3125
+ END OF TERMS AND CONDITIONS
3126
+
3127
+ How to Apply These Terms to Your New Libraries
3128
+
3129
+ If you develop a new library, and you want it to be of the greatest
3130
+ possible use to the public, we recommend making it free software that
3131
+ everyone can redistribute and change. You can do so by permitting
3132
+ redistribution under these terms (or, alternatively, under the terms of the
3133
+ ordinary General Public License).
3134
+
3135
+ To apply these terms, attach the following notices to the library. It is
3136
+ safest to attach them to the start of each source file to most effectively
3137
+ convey the exclusion of warranty; and each file should have at least the
3138
+ "copyright" line and a pointer to where the full notice is found.
3139
+
3140
+ <one line to give the library's name and a brief idea of what it does.>
3141
+ Copyright (C) <year> <name of author>
3142
+
3143
+ This library is free software; you can redistribute it and/or
3144
+ modify it under the terms of the GNU Lesser General Public
3145
+ License as published by the Free Software Foundation; either
3146
+ version 2.1 of the License, or (at your option) any later version.
3147
+
3148
+ This library is distributed in the hope that it will be useful,
3149
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
3150
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3151
+ Lesser General Public License for more details.
3152
+
3153
+ You should have received a copy of the GNU Lesser General Public
3154
+ License along with this library; if not, write to the Free Software
3155
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
3156
+
3157
+ Also add information on how to contact you by electronic and paper mail.
3158
+
3159
+ You should also get your employer (if you work as a programmer) or your
3160
+ school, if any, to sign a "copyright disclaimer" for the library, if
3161
+ necessary. Here is a sample; alter the names:
3162
+
3163
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
3164
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
3165
+
3166
+ <signature of Ty Coon>, 1 April 1990
3167
+ Ty Coon, President of Vice
3168
+
3169
+ That's all there is to it!
3170
+
3171
+
3172
+ --------------- SECTION 4: GNU Lesser General Public License, V3.0-----------
3173
+
3174
+ GNU LESSER GENERAL PUBLIC LICENSE
3175
+ Version 3, 29 June 2007
3176
+
3177
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
3178
+ Everyone is permitted to copy and distribute verbatim copies
3179
+ of this license document, but changing it is not allowed.
3180
+
3181
+
3182
+ This version of the GNU Lesser General Public License incorporates
3183
+ the terms and conditions of version 3 of the GNU General Public
3184
+ License, supplemented by the additional permissions listed below.
3185
+
3186
+ 0. Additional Definitions.
3187
+
3188
+ As used herein, "this License" refers to version 3 of the GNU Lesser
3189
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
3190
+ General Public License.
3191
+
3192
+ "The Library" refers to a covered work governed by this License,
3193
+ other than an Application or a Combined Work as defined below.
3194
+
3195
+ An "Application" is any work that makes use of an interface provided
3196
+ by the Library, but which is not otherwise based on the Library.
3197
+ Defining a subclass of a class defined by the Library is deemed a mode
3198
+ of using an interface provided by the Library.
3199
+
3200
+ A "Combined Work" is a work produced by combining or linking an
3201
+ Application with the Library. The particular version of the Library
3202
+ with which the Combined Work was made is also called the "Linked
3203
+ Version".
3204
+
3205
+ The "Minimal Corresponding Source" for a Combined Work means the
3206
+ Corresponding Source for the Combined Work, excluding any source code
3207
+ for portions of the Combined Work that, considered in isolation, are
3208
+ based on the Application, and not on the Linked Version.
3209
+
3210
+ The "Corresponding Application Code" for a Combined Work means the
3211
+ object code and/or source code for the Application, including any data
3212
+ and utility programs needed for reproducing the Combined Work from the
3213
+ Application, but excluding the System Libraries of the Combined Work.
3214
+
3215
+ 1. Exception to Section 3 of the GNU GPL.
3216
+
3217
+ You may convey a covered work under sections 3 and 4 of this License
3218
+ without being bound by section 3 of the GNU GPL.
3219
+
3220
+ 2. Conveying Modified Versions.
3221
+
3222
+ If you modify a copy of the Library, and, in your modifications, a
3223
+ facility refers to a function or data to be supplied by an Application
3224
+ that uses the facility (other than as an argument passed when the
3225
+ facility is invoked), then you may convey a copy of the modified
3226
+ version:
3227
+
3228
+ a) under this License, provided that you make a good faith effort to
3229
+ ensure that, in the event an Application does not supply the
3230
+ function or data, the facility still operates, and performs
3231
+ whatever part of its purpose remains meaningful, or
3232
+
3233
+ b) under the GNU GPL, with none of the additional permissions of
3234
+ this License applicable to that copy.
3235
+
3236
+ 3. Object Code Incorporating Material from Library Header Files.
3237
+
3238
+ The object code form of an Application may incorporate material from
3239
+ a header file that is part of the Library. You may convey such object
3240
+ code under terms of your choice, provided that, if the incorporated
3241
+ material is not limited to numerical parameters, data structure
3242
+ layouts and accessors, or small macros, inline functions and templates
3243
+ (ten or fewer lines in length), you do both of the following:
3244
+
3245
+ a) Give prominent notice with each copy of the object code that the
3246
+ Library is used in it and that the Library and its use are
3247
+ covered by this License.
3248
+
3249
+ b) Accompany the object code with a copy of the GNU GPL and this license
3250
+ document.
3251
+
3252
+ 4. Combined Works.
3253
+
3254
+ You may convey a Combined Work under terms of your choice that,
3255
+ taken together, effectively do not restrict modification of the
3256
+ portions of the Library contained in the Combined Work and reverse
3257
+ engineering for debugging such modifications, if you also do each of
3258
+ the following:
3259
+
3260
+ a) Give prominent notice with each copy of the Combined Work that
3261
+ the Library is used in it and that the Library and its use are
3262
+ covered by this License.
3263
+
3264
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
3265
+ document.
3266
+
3267
+ c) For a Combined Work that displays copyright notices during
3268
+ execution, include the copyright notice for the Library among
3269
+ these notices, as well as a reference directing the user to the
3270
+ copies of the GNU GPL and this license document.
3271
+
3272
+ d) Do one of the following:
3273
+
3274
+ 0) Convey the Minimal Corresponding Source under the terms of this
3275
+ License, and the Corresponding Application Code in a form
3276
+ suitable for, and under terms that permit, the user to
3277
+ recombine or relink the Application with a modified version of
3278
+ the Linked Version to produce a modified Combined Work, in the
3279
+ manner specified by section 6 of the GNU GPL for conveying
3280
+ Corresponding Source.
3281
+
3282
+ 1) Use a suitable shared library mechanism for linking with the
3283
+ Library. A suitable mechanism is one that (a) uses at run time
3284
+ a copy of the Library already present on the user's computer
3285
+ system, and (b) will operate properly with a modified version
3286
+ of the Library that is interface-compatible with the Linked
3287
+ Version.
3288
+
3289
+ e) Provide Installation Information, but only if you would otherwise
3290
+ be required to provide such information under section 6 of the
3291
+ GNU GPL, and only to the extent that such information is
3292
+ necessary to install and execute a modified version of the
3293
+ Combined Work produced by recombining or relinking the
3294
+ Application with a modified version of the Linked Version. (If
3295
+ you use option 4d0, the Installation Information must accompany
3296
+ the Minimal Corresponding Source and Corresponding Application
3297
+ Code. If you use option 4d1, you must provide the Installation
3298
+ Information in the manner specified by section 6 of the GNU GPL
3299
+ for conveying Corresponding Source.)
3300
+
3301
+ 5. Combined Libraries.
3302
+
3303
+ You may place library facilities that are a work based on the
3304
+ Library side by side in a single library together with other library
3305
+ facilities that are not Applications and are not covered by this
3306
+ License, and convey such a combined library under terms of your
3307
+ choice, if you do both of the following:
3308
+
3309
+ a) Accompany the combined library with a copy of the same work based
3310
+ on the Library, uncombined with any other library facilities,
3311
+ conveyed under the terms of this License.
3312
+
3313
+ b) Give prominent notice with the combined library that part of it
3314
+ is a work based on the Library, and explaining where to find the
3315
+ accompanying uncombined form of the same work.
3316
+
3317
+ 6. Revised Versions of the GNU Lesser General Public License.
3318
+
3319
+ The Free Software Foundation may publish revised and/or new versions
3320
+ of the GNU Lesser General Public License from time to time. Such new
3321
+ versions will be similar in spirit to the present version, but may
3322
+ differ in detail to address new problems or concerns.
3323
+
3324
+ Each version is given a distinguishing version number. If the
3325
+ Library as you received it specifies that a certain numbered version
3326
+ of the GNU Lesser General Public License "or any later version"
3327
+ applies to it, you have the option of following the terms and
3328
+ conditions either of that published version or of any later version
3329
+ published by the Free Software Foundation. If the Library as you
3330
+ received it does not specify a version number of the GNU Lesser
3331
+ General Public License, you may choose any version of the GNU Lesser
3332
+ General Public License ever published by the Free Software Foundation.
3333
+
3334
+ If the Library as you received it specifies that a proxy can decide
3335
+ whether future versions of the GNU Lesser General Public License shall
3336
+ apply, that proxy's public statement of acceptance of any version is
3337
+ permanent authorization for you to choose that version for the
3338
+ Library.
3339
+
3340
+
3341
+ ===========================================================================
3342
+
3343
+ To the extent any open source components are licensed under the
3344
+ GPL and/or LGPL, or other similar licenses that require the
3345
+ source code and/or modifications to source code to be made
3346
+ available (as would be noted above), you may obtain a copy of
3347
+ the source code corresponding to the binaries for such open
3348
+ source components and modifications thereto, if any, (the
3349
+ "Source Files"), by downloading the Source Files from VMware's website at
3350
+ http://www.vmware.com/download/open_source.html, or by sending a request, with
3351
+ your name and address to: VMware, Inc., 3401 Hillview Avenue,
3352
+ Palo Alto, CA 94304,United States of America. All such
3353
+ requests should clearly specify: OPEN SOURCE FILES REQUEST,
3354
+ Attention General Counsel. VMware shall mail a copy of the
3355
+ Source Files to you on a CD or equivalent physical medium. This
3356
+ offer to obtain a copy of the Source Files is valid for three
3357
+ years from the date you acquired this Software product. Alternatively,
3358
+ the Source Files may accompany the VMware product.
3359
+
3360
+
3361
+ [CFCLOUDCONTROLLERNG09012012NV012813]