inspec-test-gem-desc 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 164f2efdb73353554afdc6f57cf5f56a595e00b48f32d4d143f161d0a314f8fd
4
+ data.tar.gz: a4cd9d68a1cd9f556080148e8a5114cc9ffe9b814046c95347e7840a681b0575
5
+ SHA512:
6
+ metadata.gz: d73681a6b61588f525c9b5fca03b94a857da55aa2449087b9382efb6964f61aec9fb5f8d74712fbe33bd3c2879fd65d3e40e1028c71e07d0ea958f5779e6d674
7
+ data.tar.gz: e5793b8d2003ad9cab5d23363f4e1b8b713f1312be395af1309fac2119f15523710917282b722070fc69bda6cb1125a027744630f7b772a029b9b39fcb766e09
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ group :development do
6
+ gem "bundler"
7
+ gem "byebug"
8
+ gem "minitest"
9
+ gem "rake"
10
+ gem "chefstyle", "~> 2.2.2"
11
+ end
data/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # TestGemDesc Plugin
2
+
3
+ This gem was created to test the gem publishing process to verify that very long gemspec descriptions are accepted. This is needed to determine if we are able to post the contents of the Apache 2 licensing eht gem description.
4
+
5
+ ## To Install This Plugin
6
+
7
+ You should not install this plugin.
8
+
9
+ ## What This Plugin Does
10
+
11
+ It does not do anything.
12
+
13
+ ## Developing This Plugin
14
+
15
+ No contributions are welcomed.
@@ -0,0 +1,102 @@
1
+ # As plugins are usually packaged and distributed as a RubyGem,
2
+ # we have to provide a .gemspec file, which controls the gembuild
3
+ # and publish process. This is a fairly generic gemspec.
4
+
5
+ # It is traditional in a gemspec to dynamically load the current version
6
+ # from a file in the source tree. The next three lines make that happen.
7
+ lib = File.expand_path("lib", __dir__)
8
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
9
+ require "inspec-test-gem-desc/version"
10
+
11
+ Gem::Specification.new do |spec|
12
+ # Importantly, all InSpec plugins must be prefixed with `inspec-` (most
13
+ # plugins) or `train-` (plugins which add new connectivity features).
14
+ spec.name = "inspec-test-gem-desc"
15
+
16
+ # It is polite to namespace your plugin under InspecPlugins::YourPluginInCamelCase
17
+ spec.version = InspecPlugins::TestGemDesc::VERSION
18
+ spec.authors = ["Clinton Wolfe"]
19
+ spec.email = ["inspec@chef.io"]
20
+ spec.summary = "A plugin with the peculiar purpose of testing long gemspec descriptions."
21
+ spec.description = <<-EOT
22
+ This is a test gem created to test the gem publishing process, to verify if we are able to create unusually long gem descriptions. The gem serves no other purpose. It was created by a code generator for InSpec. The remainder of the description is the test payload.
23
+
24
+ Packaged distributions of Progress® Chef® products obtained from RubyGems are made available pursuant to the Progress Chef EULA at https://www.chef.io/end-user-license-agreement, unless there is an executed agreement in effect between you and Progress that covers the Progress Chef products ("Master Agreement"), in which case the Master Agreement shall govern.
25
+
26
+ Source code obtained from the Chef GitHub repository is made available under Apache-2.0, a copy of which is included below.
27
+
28
+ Apache License
29
+ Version 2.0, January 2004
30
+ http://www.apache.org/licenses/
31
+
32
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
33
+
34
+ 1. Definitions.
35
+
36
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
37
+
38
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
39
+
40
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
41
+
42
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
43
+
44
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
45
+
46
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
47
+
48
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
49
+
50
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
51
+
52
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
53
+
54
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
55
+
56
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
57
+
58
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
59
+
60
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
61
+
62
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
63
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
64
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
65
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
66
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
67
+
68
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
69
+
70
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
71
+
72
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
73
+
74
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
75
+
76
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
77
+
78
+ END OF TERMS AND CONDITIONS
79
+ EOT
80
+
81
+ spec.homepage = "https://github.com/inspec/inspec"
82
+ spec.license = "Apache-2.0"
83
+
84
+ # Though complicated-looking, this is pretty standard for a gemspec.
85
+ # It just filters what will actually be packaged in the gem (leaving
86
+ # out tests, etc)
87
+ spec.files = %w{
88
+ README.md inspec-test-gem-desc.gemspec Gemfile
89
+ } + Dir.glob(
90
+ "lib/**/*", File::FNM_DOTMATCH
91
+ ).reject { |f| File.directory?(f) }
92
+ spec.require_paths = ["lib"]
93
+
94
+ # If you rely on any other gems, list them here with any constraints.
95
+ # This is how `inspec plugin install` is able to manage your dependencies.
96
+ # For example, perhaps you are writing a thing that talks to AWS, and you
97
+ # want to ensure you have `aws-sdk` in a certain version.
98
+
99
+ # All plugins should mention inspec, > 2.2.78
100
+ # 2.2.78 included the v2 Plugin API
101
+ spec.add_dependency "inspec", ">= 2.2.78"
102
+ end
@@ -0,0 +1,38 @@
1
+ require "inspec/resource"
2
+
3
+ module InspecPlugins::TestGemDesc
4
+ # This class will provide the actual CLI implementation.
5
+ # Its superclass is provided by another call to Inspec.plugin,
6
+ # this time with two args. The first arg specifies we are requesting
7
+ # version 2 of the Plugins API. The second says we are making a CLI
8
+ # Command plugin component, so please make available any DSL needed
9
+ # for that.
10
+ # In fact, aside from a some housekeeping DSL methods, most of the
11
+ # DSL provided is that of Thor. Inspec.plugin(2, :cli_command)
12
+ # promises to return a class that is a subclass of Thor. So, to add
13
+ # commands, usage information, and options, use the Thor documentation.
14
+ class CliCommand < Inspec.plugin(2, :cli_command)
15
+ # This isn't provided by Thor, but is needed by InSpec so that it can
16
+ # register the top-level subcommand. That is to say, subcommand_desc
17
+ # makes `inspec my-command ...` work. Args to sub_command_desc are
18
+ # a usage message, and a short decription.
19
+ # These will appear when someone has installed the plugin, and then they
20
+ # run `inspec help`.
21
+ # Note: if you want your command (or subcommand) to have dashes in it,
22
+ # use underscores where you want a dash, and Thor will convert them.
23
+ # Thor will fail to find a command that is directly named with dashes.
24
+ subcommand_desc "gem-desc [COMMAND]", "Your Usage Message Here"
25
+
26
+ # The usual rhythm for a Thor CLI file is description, options, command method.
27
+ # Thor just has you call DSL methods in sequence prior to each command.
28
+
29
+ desc "nothing ", "Does nothing, successully"
30
+
31
+ def nothing
32
+ # The code here will *only* be executed if someone actually
33
+ # runs `inspec gem-desc nothing`.
34
+ ui.warning("This is a generated plugin with a default implementation. Edit lib/inspec-test-gem-desc/cli_command.rb to make it do what you want.")
35
+ ui.exit(:success) # or :usage_error
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,54 @@
1
+ # Plugin Definition file
2
+ # The purpose of this file is to declare to InSpec what plugin_types (capabilities)
3
+ # are included in this plugin, and provide activator that will load them as needed.
4
+
5
+ # It is important that this file load successfully and *quickly*.
6
+ # Your plugin's functionality may never be used on this InSpec run; so we keep things
7
+ # fast and light by only loading heavy things when they are needed.
8
+
9
+ # Presumably this is light
10
+ require "inspec-test-gem-desc/version"
11
+
12
+ # The InspecPlugins namespace is where all plugins should declare themselves.
13
+ # The "Inspec" capitalization is used throughout the InSpec source code; yes, it's
14
+ # strange.
15
+ module InspecPlugins
16
+ # Pick a reasonable namespace here for your plugin. A reasonable choice
17
+ # would be the CamelCase version of your plugin gem name.
18
+ # inspec-test-gem-desc => TestGemDesc
19
+ module TestGemDesc
20
+ # This simple class handles the plugin definition, so calling it simply Plugin is OK.
21
+ # Inspec.plugin returns various Classes, intended to be superclasses for various
22
+ # plugin components. Here, the one-arg form gives you the Plugin Definition superclass,
23
+ # which mainly gives you access to the activator / plugin_type DSL.
24
+ # The number '2' says you are asking for version 2 of the plugin API. If there are
25
+ # future versions, InSpec promises plugin API v2 will work for at least two more InSpec
26
+ # major versions.
27
+ class Plugin < ::Inspec.plugin(2)
28
+ # Internal machine name of the plugin. InSpec will use this in errors, etc.
29
+ plugin_name :"inspec-test-gem-desc"
30
+
31
+ # Define a new CLI subcommand.
32
+ # The argument here will be used to match against the command line args,
33
+ # and if the user said `inspec list-resources`, this activator will get called.
34
+ # Notice that you can define multiple activators with different names, and they
35
+ # don't have to match the plugin name.
36
+
37
+ # We'd like this to be list-resources, but Thor does not support hyphens
38
+ # see https://github.com/erikhuda/thor/pull/613
39
+ cli_command :my_command do
40
+ # Calling this activator doesn't mean the subcommand is being executed - just
41
+ # that we should be ready to do so. So, load the file that defines the
42
+ # functionality.
43
+ # For example, InSpec will activate this activator when `inspec help` is
44
+ # executed, so that this plugin's usage message will be included in the help.
45
+ require "inspec-test-gem-desc/cli_command"
46
+
47
+ # Having loaded our functionality, return a class that will let the
48
+ # CLI engine tap into it.
49
+ InspecPlugins::TestGemDesc::CliCommand
50
+ end
51
+
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,8 @@
1
+ # This file simply makes it easier for CI engines to update
2
+ # the version stamp, and provide a clean way for the gemspec
3
+ # to learn the current version.
4
+ module InspecPlugins
5
+ module TestGemDesc
6
+ VERSION = "0.1.0".freeze
7
+ end
8
+ end
@@ -0,0 +1,14 @@
1
+ # This file is known as the "entry point."
2
+ # This is the file InSpec will try to load if it
3
+ # thinks your plugin is installed.
4
+
5
+ # The *only* thing this file should do is setup the
6
+ # load path, then load the plugin definition file.
7
+
8
+ # Next two lines simply add the path of the gem to the load path.
9
+ # This is not needed when being loaded as a gem; but when doing
10
+ # plugin development, you may need it. Either way, it's harmless.
11
+ libdir = File.dirname(__FILE__)
12
+ $LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
13
+
14
+ require "inspec-test-gem-desc/plugin"
metadata ADDED
@@ -0,0 +1,121 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: inspec-test-gem-desc
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Clinton Wolfe
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-09-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: inspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.2.78
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.2.78
27
+ description: |
28
+ This is a test gem created to test the gem publishing process, to verify if we are able to create unusually long gem descriptions. The gem serves no other purpose. It was created by a code generator for InSpec. The remainder of the description is the test payload.
29
+
30
+ Packaged distributions of Progress® Chef® products obtained from RubyGems are made available pursuant to the Progress Chef EULA at https://www.chef.io/end-user-license-agreement, unless there is an executed agreement in effect between you and Progress that covers the Progress Chef products ("Master Agreement"), in which case the Master Agreement shall govern.
31
+
32
+ Source code obtained from the Chef GitHub repository is made available under Apache-2.0, a copy of which is included below.
33
+
34
+ Apache License
35
+ Version 2.0, January 2004
36
+ http://www.apache.org/licenses/
37
+
38
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
39
+
40
+ 1. Definitions.
41
+
42
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
43
+
44
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
45
+
46
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
47
+
48
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
49
+
50
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
51
+
52
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
53
+
54
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
55
+
56
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
57
+
58
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
59
+
60
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
61
+
62
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
63
+
64
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
65
+
66
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
67
+
68
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
69
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
70
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
71
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
72
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
73
+
74
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
75
+
76
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
77
+
78
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
79
+
80
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
81
+
82
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
83
+
84
+ END OF TERMS AND CONDITIONS
85
+ email:
86
+ - inspec@chef.io
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - Gemfile
92
+ - README.md
93
+ - inspec-test-gem-desc.gemspec
94
+ - lib/inspec-test-gem-desc.rb
95
+ - lib/inspec-test-gem-desc/cli_command.rb
96
+ - lib/inspec-test-gem-desc/plugin.rb
97
+ - lib/inspec-test-gem-desc/version.rb
98
+ homepage: https://github.com/inspec/inspec
99
+ licenses:
100
+ - Apache-2.0
101
+ metadata: {}
102
+ post_install_message:
103
+ rdoc_options: []
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ requirements: []
117
+ rubygems_version: 3.3.26
118
+ signing_key:
119
+ specification_version: 4
120
+ summary: A plugin with the peculiar purpose of testing long gemspec descriptions.
121
+ test_files: []