kitchen-rackspace 0.21.0 → 0.21.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 59bbca8a5c123c996503e28b8158bab69b1b8261
4
- data.tar.gz: d1a03ac5b4586b5224b180fe0af29a16b8da5462
2
+ SHA256:
3
+ metadata.gz: d1f55818f8a722346d45e999f32d80c519ef305346630cfbf86e1fab898109e8
4
+ data.tar.gz: d3300b2c57eafe8226a79948886f24ebb410ff5974c6c17b4671ce92bd6a76d6
5
5
  SHA512:
6
- metadata.gz: ed397e8d6bb347b172fed1e806a18ceab1b9e3cdb8e1ed33e9987ddbbd394cc335d52c8bb22fcd019a54af92f29044c74408dccb677edbb8bf9c20dd4ba178f4
7
- data.tar.gz: ec68c3ff7abce22a254282c49f6ef664790dfd9181d9a9b05e97aec538985999cd36181fe1677f86662fac03c46860645d46ac5df475d65f08bbb30c2c7f157f
6
+ metadata.gz: f89b03f91796a03d05d55064cdabb7ed579e73ca85d25cf121d16c465205861dfaecb99821d66103e73603ad2eb6f0ecb1ae19348109e8bba0e0b212c2f55831
7
+ data.tar.gz: f17bd569ff380debee0cf7e06d3285b231ae38a3c1fbd8b88c97e8fc51e024116924dd2ebf34365cb3dabc29ea9958a3a5f80d692d1bc004a625947b6604cc69
@@ -0,0 +1 @@
1
+ @test-kitchen/maintainers
@@ -0,0 +1,8 @@
1
+ ---
2
+ version: 2
3
+ updates:
4
+ - package-ecosystem: bundler
5
+ directory: "/"
6
+ schedule:
7
+ interval: daily
8
+ open-pull-requests-limit: 10
@@ -0,0 +1,9 @@
1
+ ---
2
+ name: 'Test'
3
+
4
+ 'on':
5
+ pull_request:
6
+
7
+ jobs:
8
+ lint-unit:
9
+ uses: test-kitchen/.github/.github/workflows/lint-unit.yml@main
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: release-please
3
+
4
+ "on":
5
+ push:
6
+ branches: [main]
7
+
8
+ jobs:
9
+ release-please:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: googleapis/release-please-action@v4
13
+ id: release
14
+ with:
15
+ token: ${{ secrets.PORTER_GITHUB_TOKEN }}
16
+
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+ if: ${{ steps.release.outputs.release_created }}
20
+
21
+ - name: Build and publish to GitHub Package
22
+ uses: actionshub/publish-gem-to-github@main
23
+ if: ${{ steps.release.outputs.release_created }}
24
+ with:
25
+ token: ${{ secrets.GITHUB_TOKEN }}
26
+ owner: ${{ secrets.OWNER }}
27
+
28
+ - name: Build and publish to RubyGems
29
+ uses: actionshub/publish-gem-to-rubygems@main
30
+ if: ${{ steps.release.outputs.release_created }}
31
+ with:
32
+ token: ${{ secrets.RUBYGEMS_API_KEY }}
@@ -0,0 +1,6 @@
1
+ ---
2
+ default: true
3
+ MD004: false
4
+ MD012: false
5
+ MD013: false
6
+ MD024: false
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.21.1"
3
+ }
data/.rubocop.yml CHANGED
@@ -1,9 +1,11 @@
1
- # Allow additional lines until main driver class can be split
2
- # into smaller classes.
1
+ ---
2
+ require:
3
+ - chefstyle
3
4
 
4
- ClassLength:
5
- Max: 125
6
- AbcSize:
7
- Max: 20
8
- MethodLength:
9
- Max: 15
5
+ AllCops:
6
+ TargetRubyVersion: 3.1
7
+ Include:
8
+ - "**/*.rb"
9
+ Exclude:
10
+ - "vendor/**/*"
11
+ - "spec/**/*"
data/CHANGELOG.md CHANGED
@@ -1,142 +1,154 @@
1
- # Unreleased
1
+ # Kitchen-rackspace Changelog
2
2
 
3
- # 0.21.0 / 2016-05-31
3
+ ## [0.21.1](https://github.com/test-kitchen/kitchen-rackspace/compare/v0.21.0...v0.21.1) (2024-07-01)
4
4
 
5
- * PR [#67][] - Update image IDS; via [@martinb3][]
6
- * PR [#65][] - Add Ubuntu 16.04; via [@coderanger][]
7
5
 
8
- # 0.20.0 / 2016-01-15
6
+ ### Features
9
7
 
10
- * PR [#63][] - Update image IDs, add Ubuntu 15.10, drop Ubuntu 15.04; via
11
- [@martinb3][]
8
+ * Add Workflows ([#105](https://github.com/test-kitchen/kitchen-rackspace/issues/105)) ([1a4f418](https://github.com/test-kitchen/kitchen-rackspace/commit/1a4f4181845c4da9d79748c0f4cfa03c8653d8f3))
12
9
 
13
- # 0.19.0 / 2015-10-06
14
10
 
15
- * PR [#60][] - Update to latest image IDs
16
- * PR [#57][] - Add `servicelevel_wait` option; via [@martinb3][]
17
- * PR [#56][] - Add `no_passwd_lock` option; via [@martinb3][]
11
+ ### Bug Fixes
12
+
13
+ * release please configs ([#108](https://github.com/test-kitchen/kitchen-rackspace/issues/108)) ([e8773c1](https://github.com/test-kitchen/kitchen-rackspace/commit/e8773c18e89d8dde724bfa06028678fb43da18a0))
14
+
15
+ ## 0.21.0 / 2016-05-31
16
+
17
+ * PR [#67] - Update image IDS; via [@martinb3]
18
+ * PR [#65] - Add Ubuntu 16.04; via [@coderanger]
19
+
20
+ ## 0.20.0 / 2016-01-15
21
+
22
+ * PR [#63] - Update image IDs, add Ubuntu 15.10, drop Ubuntu 15.04; via
23
+ [@martinb3]
24
+
25
+ ## 0.19.0 / 2015-10-06
26
+
27
+ * PR [#60] - Update to latest image IDs
28
+ * PR [#57] - Add `servicelevel_wait` option; via [@martinb3]
29
+ * PR [#56] - Add `no_passwd_lock` option; via [@martinb3]
18
30
 
19
- # 0.18.0 / 2015-08-28
31
+ ## 0.18.0 / 2015-08-28
20
32
 
21
- * PR [#53][] - Update image IDs, update Arch to 2015.7, drop Fedora 20, add
22
- Fedora 22, update Gentoo to 15.3, update Vyatta to 6.7R9; via [@martinb3][]
33
+ * PR [#53] - Update image IDs, update Arch to 2015.7, drop Fedora 20, add
34
+ Fedora 22, update Gentoo to 15.3, update Vyatta to 6.7R9; via [@martinb3]
23
35
 
24
- # 0.17.0 / 2015-05-15
36
+ ## 0.17.0 / 2015-05-15
25
37
 
26
- * PR [#51][] - Update image IDS--add Debian 8, drop Debian 6, add Ubuntu 15.04,
38
+ * PR [#51] - Update image IDS--add Debian 8, drop Debian 6, add Ubuntu 15.04,
27
39
  drop Ubuntu 14.10
28
40
 
29
- # 0.16.0 / 2015-04-15
41
+ ## 0.16.0 / 2015-04-15
30
42
 
31
- * PR [#50][] - Update image IDs, support 'centos-7.0' in addition to
32
- 'centos-7'; via [@martinb3][]
43
+ * PR [#50] - Update image IDs, support 'centos-7.0' in addition to
44
+ 'centos-7'; via [@martinb3]
33
45
 
34
- # 0.15.1 / 2015-04-03
46
+ ## 0.15.1 / 2015-04-03
35
47
 
36
- * PR [#49][] - Update image IDs, re-add CentOS point release numbers; via
37
- [@martinb3][]
48
+ * PR [#49] - Update image IDs, re-add CentOS point release numbers; via
49
+ [@martinb3]
38
50
 
39
- # 0.15.0 / 2015-04-02
51
+ ## 0.15.0 / 2015-04-02
40
52
 
41
- * PR [#48][] - Drop references to retired Ubuntu 10.04 image
42
- * PR [#46][] - Update all image IDs, add Scientific 7, remove references to
43
- point releases that Rackspace no longer uses in image names; via [@martinb3][]
53
+ * PR [#48] - Drop references to retired Ubuntu 10.04 image
54
+ * PR [#46] - Update all image IDs, add Scientific 7, remove references to
55
+ point releases that Rackspace no longer uses in image names; via [@martinb3]
44
56
 
45
- # 0.14.0 / 2014-12-09
57
+ ## 0.14.0 / 2014-12-09
46
58
 
47
- * PR [#45][] - Add Ubuntu 14.10 and Fedora 21
48
- * PR [#44][] - Update all image IDs, add CentOS/Red Hat 5.11 and Red Hat 6.6,
49
- update Vyatta to 6.7R4; via [@martinb3][]
59
+ * PR [#45] - Add Ubuntu 14.10 and Fedora 21
60
+ * PR [#44] - Update all image IDs, add CentOS/Red Hat 5.11 and Red Hat 6.6,
61
+ update Vyatta to 6.7R4; via [@martinb3]
50
62
 
51
- # 0.13.0 / 2014-10-08
63
+ ## 0.13.0 / 2014-10-08
52
64
 
53
65
  ### Improvements
54
66
 
55
- * PR [#43][] - Update all image IDs, bump Arch to 2014.10, Gentoo to 14.4,
67
+ * PR [#43] - Update all image IDs, bump Arch to 2014.10, Gentoo to 14.4,
56
68
  Vyatta to 6.7
57
- * PR [#42][] - Update CentOS 7 image ID; via [@marcoamorales][]
69
+ * PR [#42] - Update CentOS 7 image ID; via [@marcoamorales]
58
70
 
59
- # 0.12.0 / 2014-09-10
71
+ ## 0.12.0 / 2014-09-10
60
72
 
61
73
  ### New Features
62
74
 
63
- * PR [#41][] - Support optionally using ServiceNet for SSH access, via
64
- [@steve-jansen][]
75
+ * PR [#41] - Support optionally using ServiceNet for SSH access, via
76
+ [@steve-jansen]
65
77
 
66
- # 0.11.0 / 2014-09-04
78
+ ## 0.11.0 / 2014-09-04
67
79
 
68
80
  ### Improvements
69
81
 
70
- * PR [#40][] - Port the server name generator from the OpenStack/DigitalOcean
82
+ * PR [#40] - Port the server name generator from the OpenStack/DigitalOcean
71
83
  drivers, with all its bug fixes; update image IDs
72
84
 
73
- # 0.10.0 / 2014-08-28
85
+ ## 0.10.0 / 2014-08-28
74
86
 
75
87
  ### Improvements
76
88
 
77
- * PR [#39][] - Update image ID list
78
- * PR [#38][] - Recognize `debian-7.6` image name, via [@martinb3][]
89
+ * PR [#39] - Update image ID list
90
+ * PR [#38] - Recognize `debian-7.6` image name, via [@martinb3]
79
91
 
80
- # 0.9.0 / 2014-08-25
92
+ ## 0.9.0 / 2014-08-25
81
93
 
82
94
  ### Improvements
83
95
 
84
- * PR [#37][] - Update image ID list
85
- * PR [#36][] - Add CentOS 7 to the recognized images, via [@hhoover][]
96
+ * PR [#37] - Update image ID list
97
+ * PR [#36] - Add CentOS 7 to the recognized images, via [@hhoover]
86
98
 
87
- # 0.8.0 / 2014-08-20
99
+ ## 0.8.0 / 2014-08-20
88
100
 
89
101
  ### New Features
90
102
 
91
- * PR [#35][] - Add option to wait on RackConnect, via [@martinb3][]
103
+ * PR [#35] - Add option to wait on RackConnect, via [@martinb3]
92
104
 
93
- # 0.7.0 / 2014-07-09
105
+ ## 0.7.0 / 2014-07-09
94
106
 
95
107
  ### New Features
96
108
 
97
- * PR [#31][] - Support attaching to custom networks, via [@kanerogers][]
98
- * PR [#29][] - Support using a sleep instead of TCP check in cases where new
99
- servers might fail the TCP; via [@martinb3][]
109
+ * PR [#31] - Support attaching to custom networks, via [@kanerogers]
110
+ * PR [#29] - Support using a sleep instead of TCP check in cases where new
111
+ servers might fail the TCP; via [@martinb3]
100
112
 
101
- # 0.6.1 / 2014-06-03
113
+ ## 0.6.1 / 2014-06-03
102
114
 
103
115
  ### Bug Fixes
104
116
 
105
- * PR [#26][] - Fix issue with builds failing due to a timeout set at 0
117
+ * PR [#26] - Fix issue with builds failing due to a timeout set at 0
106
118
 
107
- # 0.6.0 / 2014-05-13
119
+ ## 0.6.0 / 2014-05-13
108
120
 
109
121
  ### New Features
110
122
 
111
- * PR [#25][] - Allow overridding of Fog's default timeout; via [@pezholio][]
123
+ * PR [#25] - Allow overridding of Fog's default timeout; via [@pezholio]
112
124
 
113
125
  ### Improvements
114
126
 
115
- * PR [#24][] - Error out immediately when trying to install in Ruby 1.8
127
+ * PR [#24] - Error out immediately when trying to install in Ruby 1.8
116
128
 
117
- # 0.5.0 / 2014-05-01
129
+ ## 0.5.0 / 2014-05-01
118
130
 
119
131
  ### Improvements
120
132
 
121
- * PR [#23][] - Switch to PVHVM images, where available
122
- * PR [#22][] - Update all the images with new IDs
123
- * PR [#21][] - Add Ubunutu 14.04 to the list of known images; via [@pezholio][]
133
+ * PR [#23] - Switch to PVHVM images, where available
134
+ * PR [#22] - Update all the images with new IDs
135
+ * PR [#21] - Add Ubuntu 14.04 to the list of known images; via [@pezholio]
124
136
 
125
- # 0.4.0 / 2014-01-27
137
+ ## 0.4.0 / 2014-01-27
126
138
 
127
139
  ### New Features
128
140
 
129
- * PR [#17][] - Support the common TK platform name style, e.g. `centos-6`,
130
- via [@coderanger][]
131
- * PR [#17][] - Support environment variables for username and API key, via
132
- [@coderanger][]
141
+ * PR [#17] - Support the common TK platform name style, e.g. `centos-6`,
142
+ via [@coderanger]
143
+ * PR [#17] - Support environment variables for username and API key, via
144
+ [@coderanger]
133
145
 
134
146
  ### Improvements
135
147
 
136
- * PR [#17][] - Change default flavor to lowest performance flavor for faster
137
- boot times, via [@coderanger][]
148
+ * PR [#17] - Change default flavor to lowest performance flavor for faster
149
+ boot times, via [@coderanger]
138
150
 
139
- # 0.3.0 / 2013-12-07
151
+ ## 0.3.0 / 2013-12-07
140
152
 
141
153
  ### Improvements
142
154
 
@@ -144,21 +156,21 @@ boot times, via [@coderanger][]
144
156
 
145
157
  ### Bug Fixes
146
158
 
147
- * PR [#15][] - Update default `image_id` to a current one
148
- * PR [#15][] - Fix collision with TK 1.x; change `name` option to `server_name`
159
+ * PR [#15] - Update default `image_id` to a current one
160
+ * PR [#15] - Fix collision with TK 1.x; change `name` option to `server_name`
149
161
 
150
- # 0.2.0 / 2013-05-11
162
+ ## 0.2.0 / 2013-05-11
151
163
 
152
164
  ### New Features
153
165
 
154
- * PR [#8][] - Support `rackspace_region:` option; at request of [@claco][]
166
+ * PR [#8] - Support `rackspace_region:` option; at request of [@claco]
155
167
 
156
168
  ### Improvements
157
169
 
158
- * PR [#7][] - Clean up/refactor to pass style checks
159
- * PR [#9][] - Add some (probably overkill) RSpec tests
170
+ * PR [#7] - Clean up/refactor to pass style checks
171
+ * PR [#9] - Add some (probably overkill) RSpec tests
160
172
 
161
- # 0.1.0 / 2013-03-12
173
+ ## 0.1.0 / 2013-03-12
162
174
 
163
175
  * Initial release! Woo!
164
176
 
data/Gemfile CHANGED
@@ -1,6 +1,13 @@
1
- # Encoding: UTF-8
1
+ source "https://rubygems.org"
2
2
 
3
- source 'https://rubygems.org'
4
-
5
- # Specify your gem's dependencies in kitchen-rackspace.gemspec
6
3
  gemspec
4
+
5
+ group :test do
6
+ gem "bundler"
7
+ gem "rake"
8
+ gem "rspec", "~> 3.2"
9
+ end
10
+
11
+ group :chefstyle do
12
+ gem "chefstyle", "2.2.3"
13
+ end
data/LICENSE ADDED
@@ -0,0 +1,202 @@
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
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.