pathname2 1.7.2-universal-mingw32 → 1.8.4-universal-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: bbe8319d8e29a00a0c70582d56ee20c780a12f13
4
- data.tar.gz: ddf0f432a41cc14283c8892374ccd098df6b994d
2
+ SHA256:
3
+ metadata.gz: c7c547bc754fe54425253b26b3257b5342fd3a05ceee78f98242d1b7f4631e5b
4
+ data.tar.gz: 4b1350a0c4245ef3e9b374dfd58f8e0c3edffd4409a9e8dcccca2bff4934a7d4
5
5
  SHA512:
6
- metadata.gz: 394cfa240ec8f7061375c16fff4e2bfe62a7b04c264009ccda841c53f5b021691e4960e0326282e2310e12cd4afe45308e4cc4212ba4af2b04694bdd3fb838fa
7
- data.tar.gz: dcb6025358e5703130f86180cc638b4399830cffcf3f85f03c63aed880cf106b7050ed093c170b7c0e87299bd11154893b37f7d06c1aecabf1bc373dc782fe46
6
+ metadata.gz: e25bdf0d5f900da0b905f7693aedb44341d6ed1135cc949c9e87b761a3e34feb574b92daf5d750690a3323ee83a36ca30cdc33f00a6c729235c541bfd81f377a
7
+ data.tar.gz: 53b03e808347bb7a070370b5e1834a8fcc646194196d9fb8558be2fc58f1df76239e9a96d37e2a3aaa5eb8a74f03b6e03dd736e5a116ab076cd0038934bc35be
@@ -0,0 +1,3 @@
1
+ ,�q�����dٍOK5� �i�=����Ń*����Bȶ�0.����=e�YUs��CI[e�k�on�ޤ��2�iw_
2
+ ��ځ�����<�),��>3 �%sz����O��X�.t��Њ^�mw2e���D�61�9_��~�$NEU ��iy��V%���t`(6,�3�Z(�g��w(��
3
+ .�t��߱�M�Hǒ�Zb@A�WS�Hf'��10��_s_Rt� ���Qo�WK�e,yx�������m��'�q��y�nCi
Binary file
@@ -1,148 +1,181 @@
1
- == 1.7.2 - 23-Apr-2014
2
- * The join and expand_path methods now return Pathname objects.
3
-
4
- == 1.7.1 - 28-Mar-2014
5
- * Updated gemspec for Windows vs Unix.
6
- * Updated README and MANIFEST.
7
-
8
- == 1.7.0 - 28-Mar-2014
9
- * Windows now uses FFI internally instead of win32-api.
10
- * Added a custom pretty_print method for the pp library.
11
- * Reorganized the test suite for Windows, and added many
12
- more test tasks to the Rakefile.
13
-
14
- == 1.6.5 - 19-Sep-2011
15
- * Added the String#to_path instance method. This returns a Pathname
16
- object.
17
- * The architecture for the Windows gem is now "universal", and some
18
- gemspec dependencies were simplified.
19
-
20
- == 1.6.4 - 20-Jan-2011
21
- * Explicitly remove the Pathname const if it is already defined in order
22
- to avoid a superclass mismatch error. This library assumes that if you
23
- require pathname2, you want my version of the Pathname class.
24
- * Updated URI handling for Ruby 1.9.x.
25
- * Added the Pathname() method, a synonym for Pathname.new.
26
- * Some Rakefile and gemspec tweaks.
27
- * Some updates to the test suite, including some specifically for Windows 7.
28
-
29
- == 1.6.3 - 2-Oct-2009
30
- * Updated Windows platform handling code to include mingw and cygwin.
31
- * Added the :gem rake task.
32
- * Minor gemspec updates.
33
- * Some minor test suite updates.
34
-
35
- == 1.6.2 - 4-Aug-2009
36
- * Now compatible with Ruby 1.9.x.
37
- * License changed to Artistic 2.0.
38
- * Added the Pathname.pwd method as a synonym for Pathname.new(Dir.pwd).
39
- * Modified Pathname#dirname so that you can specify a level that indicates
40
- how many levels up you want to retrieve. For example, if your path was
41
- '/usr/local/bin', then path.dirname(2) would return '/usr'.
42
- * Now compatible with Ruby 1.9.x.
43
- * Bumped required version of the facade library to 1.0.4.
44
-
45
- == 1.6.1 - 8-Nov-2008
46
- * Added the Pathname#[] method, which accepts an index, an index plus a
47
- length, or a range, and returns appropriate the path element(s).
48
- * Refactoring the platform checking in the test suite to use rbconfig instead
49
- of RUBY_PLATFORM.
50
- * More inline documentation examples.
51
-
52
- == 1.6.0 - 13-July-2008
53
- * The facade for ftools (and ftools itself) has been removed. The ftools
54
- library is deprecated in favor of FileUtils.
55
- * PathnameError is now Pathname::Error.
56
- * Bug fix for Pathname#relative_path_from for MS Windows. Thanks go to an
57
- anonymous user for the spot.
58
- * Fixed a bug where frozen strings would raise an error on MS Windows.
59
- * The code is now -w clean.
60
- * Removed the C version as part of the release because it was just too
61
- difficult to maintain both versions. The C code remains in CVS, however.
62
- * Changed platform checking to use rbconfig instead of RUBY_PLATFORM to avoid
63
- potential issues with other Ruby implementation.
64
-
65
- == 1.5.2 - 9-Mar-2007
66
- * Bug fix for the Pathname#realpath method where it was not handling recursive
67
- symlinks. The C version was also fixed, but it only affected platforms that
68
- don't have the realpath() function.
69
- * Added a test for recursive symlinks (for Solaris, anyway).
70
- * Updated the docs for Pathname#realpath.
71
- * Minor speed enhancements for the C version and the elimination of one
72
- (potential) segfault.
73
- * Added a 'Future Plans' section to the README.
74
- * Added a Rakefile. You can now build, clean, and test and install (both the
75
- pure Ruby and C versions).
76
-
77
- == 1.5.1 - 28-Aug-2006
78
- * Added the Kernel#pn method as a shortcut for Pathname.new.
79
- * The Pathname#readlink now properly handles symbolic links. The 'fix'
80
- from 1.4.4 did not work.
81
- * The C extension uses your system's realpath() function for the
82
- Pathname#readlink method if it has one.
83
- * Added the '/' alias for '+'. So, p1 / p2 is the same as p1 + p2.
84
- * The windows-pr package is now required on MS Windows.
85
-
86
- == 1.5.0 - 17-Apr-2006
87
- * Better subclass handling, in that some methods that previously returned
88
- hardcoded Pathname.new now return self.class.new.
89
- * File URL's are now handled on Unix as well (using the 'uri' package).
90
- * Some comment changes/clarifications.
91
- * Added the PathnameError class to the pure Ruby version.
92
-
93
- == 1.4.4 - 23-Mar-2006
94
- * If the path is a symbolic link the Pathname#realpath method
95
- now returns the absolute path of that link, i.e. the result
96
- of File.readlink (as a Pathname object).
97
-
98
- == 1.4.3 - 3-Mar-2006
99
- * Added the Pathname#realpath method.
100
-
101
- == 1.4.2 - 22-Feb-2006
102
- * Fixed the Pathname#relative_path_from method for Windows. This really only
103
- affected edge cases that you probably never saw anyway.
104
- * Added corresponding tests for Windows.
105
-
106
- == 1.4.1 - 18-Feb-2006
107
- * Added the Pathname#parent method.
108
- * Added the Pathname#relative_path_from method.
109
- * Bug fix for Pathname#pstrip on *nix.
110
- * Corresponding test suite additions.
111
-
112
- == 1.4.0 - 19-Dec-2005
113
- * Added destructive and non-destructive methods for some methods - pstrip,
114
- pstrip!, undecorate, undecorate!, clean and clean!.
115
- * Added a C extension version of this package. You can use the C version
116
- instead of the pure Ruby version instead. See the README for more details.
117
- * Fixed bug in the root method where the result wasn't guaranteed to be a
118
- Pathname class.
119
- * Fixed bugs in Windows version where the receiver was inadvertantly modified
120
- in some cases, and added tests to check for this in the future.
121
- * Modified the Dir.glob facade so that it (temporarily) changes to the path
122
- directory, globs on that path, then returns to the original directory.
123
- * Added the bench_pathname.rb script to let you benchmark all Pathname
124
- methods.
125
-
126
- == 1.3.1 - 21-Nov-2005
127
- * Added the Pathname#children method.
128
- * Added tests for the Pathname#children method.
129
-
130
- == 1.3.0 - 28-Oct-2005
131
- * Added the short_path and long_path methods for MS Windows.
132
- * Optimization for the '+' method on Unix.
133
- * Added some examples under the 'examples' directory.
134
- * More tests added and some minor changes to the test suite in general.
135
-
136
- == 1.2.1 - 1-Sep-2005
137
- * Bug fix for the ascend and descend methods wrt Windows and UNC paths.
138
- * More tests added for ascend and descend methods.
139
-
140
- == 1.2.0 - 29-Aug-2005
141
- * Added the 'ascend' and 'descend' methods.
142
- * Added corresponding test suite additions.
143
-
144
- == 1.1.0 - 13-Jul-2005
145
- * Added the 'find' facade.
146
-
147
- == 1.0.0 - 11-Jun-2005
148
- * Initial release
1
+ ## 1.8.4 - 19-Jan-2021
2
+ * Cleaned up the Rubocop warnings.
3
+ * Added a Gemfile.
4
+ * Some minor updates to the gemspec and Rakefile.
5
+
6
+ ## 1.8.3 - 30-Aug-2020
7
+ * Updated the tests to match the version. Thanks go to Cédric Boutillier for the spot.
8
+ * Fixed a redefinition warning for the :children method.
9
+ * Fixed a Fixnum deprecation warning.
10
+
11
+ ## 1.8.2 - 21-Jul-2020
12
+ * Added a LICENSE file as required by the Apache-2.0 license.
13
+
14
+ ## 1.8.1 - 31-Jan-2019
15
+ * The VERSION constant is now frozen.
16
+ * Added metadata to the gemspec.
17
+ * Fixed missing hyphen in license name.
18
+ * Updated cert, should be good for about 10 years.
19
+
20
+ ## 1.8.0 - 19-Jun-2016
21
+ * Changed license to Apache-2.0.
22
+ * Some cleanup and updates to the Rakefile and benchmarks.
23
+ * Refactored some realpath tests so they're not touching system files like
24
+ /dev/stdin any more. Thanks go to Michael R. Crusoe for pointing out the
25
+ potential pitfalls of doing that.
26
+
27
+ ## 1.7.4 - 7-Sep-2015
28
+ * This gem is now signed.
29
+ * Rakefile now assumes Rubygems 2.x for some tasks.
30
+
31
+ ## 1.7.3 - 24-Apr-2014
32
+ * The basename and dirname methods now return Pathname objects.
33
+
34
+ ## 1.7.2 - 23-Apr-2014
35
+ * The join and expand_path methods now return Pathname objects.
36
+
37
+ ## 1.7.1 - 28-Mar-2014
38
+ * Updated gemspec for Windows vs Unix.
39
+ * Updated README and MANIFEST.
40
+
41
+ ## 1.7.0 - 28-Mar-2014
42
+ * Windows now uses FFI internally instead of win32-api.
43
+ * Added a custom pretty_print method for the pp library.
44
+ * Reorganized the test suite for Windows, and added many
45
+ more test tasks to the Rakefile.
46
+
47
+ ## 1.6.5 - 19-Sep-2011
48
+ * Added the String#to_path instance method. This returns a Pathname
49
+ object.
50
+ * The architecture for the Windows gem is now "universal", and some
51
+ gemspec dependencies were simplified.
52
+
53
+ ## 1.6.4 - 20-Jan-2011
54
+ * Explicitly remove the Pathname const if it is already defined in order
55
+ to avoid a superclass mismatch error. This library assumes that if you
56
+ require pathname2, you want my version of the Pathname class.
57
+ * Updated URI handling for Ruby 1.9.x.
58
+ * Added the Pathname() method, a synonym for Pathname.new.
59
+ * Some Rakefile and gemspec tweaks.
60
+ * Some updates to the test suite, including some specifically for Windows 7.
61
+
62
+ ## 1.6.3 - 2-Oct-2009
63
+ * Updated Windows platform handling code to include mingw and cygwin.
64
+ * Added the :gem rake task.
65
+ * Minor gemspec updates.
66
+ * Some minor test suite updates.
67
+
68
+ ## 1.6.2 - 4-Aug-2009
69
+ * Now compatible with Ruby 1.9.x.
70
+ * License changed to Artistic 2.0.
71
+ * Added the Pathname.pwd method as a synonym for Pathname.new(Dir.pwd).
72
+ * Modified Pathname#dirname so that you can specify a level that indicates
73
+ how many levels up you want to retrieve. For example, if your path was
74
+ '/usr/local/bin', then path.dirname(2) would return '/usr'.
75
+ * Now compatible with Ruby 1.9.x.
76
+ * Bumped required version of the facade library to 1.0.4.
77
+
78
+ ## 1.6.1 - 8-Nov-2008
79
+ * Added the Pathname#[] method, which accepts an index, an index plus a
80
+ length, or a range, and returns appropriate the path element(s).
81
+ * Refactoring the platform checking in the test suite to use rbconfig instead
82
+ of RUBY_PLATFORM.
83
+ * More inline documentation examples.
84
+
85
+ ## 1.6.0 - 13-July-2008
86
+ * The facade for ftools (and ftools itself) has been removed. The ftools
87
+ library is deprecated in favor of FileUtils.
88
+ * PathnameError is now Pathname::Error.
89
+ * Bug fix for Pathname#relative_path_from for MS Windows. Thanks go to an
90
+ anonymous user for the spot.
91
+ * Fixed a bug where frozen strings would raise an error on MS Windows.
92
+ * The code is now -w clean.
93
+ * Removed the C version as part of the release because it was just too
94
+ difficult to maintain both versions. The C code remains in CVS, however.
95
+ * Changed platform checking to use rbconfig instead of RUBY_PLATFORM to avoid
96
+ potential issues with other Ruby implementation.
97
+
98
+ ## 1.5.2 - 9-Mar-2007
99
+ * Bug fix for the Pathname#realpath method where it was not handling recursive
100
+ symlinks. The C version was also fixed, but it only affected platforms that
101
+ don't have the realpath() function.
102
+ * Added a test for recursive symlinks (for Solaris, anyway).
103
+ * Updated the docs for Pathname#realpath.
104
+ * Minor speed enhancements for the C version and the elimination of one
105
+ (potential) segfault.
106
+ * Added a 'Future Plans' section to the README.
107
+ * Added a Rakefile. You can now build, clean, and test and install (both the
108
+ pure Ruby and C versions).
109
+
110
+ ## 1.5.1 - 28-Aug-2006
111
+ * Added the Kernel#pn method as a shortcut for Pathname.new.
112
+ * The Pathname#readlink now properly handles symbolic links. The 'fix'
113
+ from 1.4.4 did not work.
114
+ * The C extension uses your system's realpath() function for the
115
+ Pathname#readlink method if it has one.
116
+ * Added the '/' alias for '+'. So, p1 / p2 is the same as p1 + p2.
117
+ * The windows-pr package is now required on MS Windows.
118
+
119
+ ## 1.5.0 - 17-Apr-2006
120
+ * Better subclass handling, in that some methods that previously returned
121
+ hardcoded Pathname.new now return self.class.new.
122
+ * File URL's are now handled on Unix as well (using the 'uri' package).
123
+ * Some comment changes/clarifications.
124
+ * Added the PathnameError class to the pure Ruby version.
125
+
126
+ ## 1.4.4 - 23-Mar-2006
127
+ * If the path is a symbolic link the Pathname#realpath method
128
+ now returns the absolute path of that link, i.e. the result
129
+ of File.readlink (as a Pathname object).
130
+
131
+ ## 1.4.3 - 3-Mar-2006
132
+ * Added the Pathname#realpath method.
133
+
134
+ ## 1.4.2 - 22-Feb-2006
135
+ * Fixed the Pathname#relative_path_from method for Windows. This really only
136
+ affected edge cases that you probably never saw anyway.
137
+ * Added corresponding tests for Windows.
138
+
139
+ ## 1.4.1 - 18-Feb-2006
140
+ * Added the Pathname#parent method.
141
+ * Added the Pathname#relative_path_from method.
142
+ * Bug fix for Pathname#pstrip on *nix.
143
+ * Corresponding test suite additions.
144
+
145
+ ## 1.4.0 - 19-Dec-2005
146
+ * Added destructive and non-destructive methods for some methods - pstrip,
147
+ pstrip!, undecorate, undecorate!, clean and clean!.
148
+ * Added a C extension version of this package. You can use the C version
149
+ instead of the pure Ruby version instead. See the README for more details.
150
+ * Fixed bug in the root method where the result wasn't guaranteed to be a
151
+ Pathname class.
152
+ * Fixed bugs in Windows version where the receiver was inadvertantly modified
153
+ in some cases, and added tests to check for this in the future.
154
+ * Modified the Dir.glob facade so that it (temporarily) changes to the path
155
+ directory, globs on that path, then returns to the original directory.
156
+ * Added the bench_pathname.rb script to let you benchmark all Pathname
157
+ methods.
158
+
159
+ ## 1.3.1 - 21-Nov-2005
160
+ * Added the Pathname#children method.
161
+ * Added tests for the Pathname#children method.
162
+
163
+ ## 1.3.0 - 28-Oct-2005
164
+ * Added the short_path and long_path methods for MS Windows.
165
+ * Optimization for the '+' method on Unix.
166
+ * Added some examples under the 'examples' directory.
167
+ * More tests added and some minor changes to the test suite in general.
168
+
169
+ ## 1.2.1 - 1-Sep-2005
170
+ * Bug fix for the ascend and descend methods wrt Windows and UNC paths.
171
+ * More tests added for ascend and descend methods.
172
+
173
+ ## 1.2.0 - 29-Aug-2005
174
+ * Added the 'ascend' and 'descend' methods.
175
+ * Added corresponding test suite additions.
176
+
177
+ ## 1.1.0 - 13-Jul-2005
178
+ * Added the 'find' facade.
179
+
180
+ ## 1.0.0 - 11-Jun-2005
181
+ * Initial release
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org' do
2
+ gemspec
3
+ end
data/LICENSE ADDED
@@ -0,0 +1,177 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
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