inspec-bin 4.1.10

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4d2e7d30203aca6fc985f109cda9f9b6ab94f676
4
+ data.tar.gz: fbbddec9de2fb93e9bdcd52170db2486bf39fff7
5
+ SHA512:
6
+ metadata.gz: 2ca3b097afa7d866f3aa0c51b21e7e6e28104bcfd40cae252cbf69e5862b6f65a8a382da958ca71ad250caacb26dd58be08b5e7fa1b7ac5783a116b17ea95d5b
7
+ data.tar.gz: e9125a7fb38718cb97c9c299140a25494a606b1f0269b56c1230b76c3360531803152c938887a47b150111bd9e52d5e5ab1916883589e679ed306f0b7e473db7
data/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2019 Chef Software Inc.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -0,0 +1,5 @@
1
+ task :install do
2
+ sh('gem build inspec-bin.gemspec')
3
+ # Not likely to be portable
4
+ sh('yes | gem install *.gem')
5
+ end
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # encoding: utf-8
3
+ # Copyright 2015 Dominik Richter
4
+ # author: Dominik Richter
5
+ # author: Christoph Hartmann
6
+
7
+ Encoding.default_external = Encoding::UTF_8
8
+ Encoding.default_internal = Encoding::UTF_8
9
+
10
+ lib = File.expand_path('../lib', __FILE__)
11
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
12
+
13
+ require 'inspec'
14
+ require 'inspec/cli'
15
+ Inspec::InspecCLI.start(ARGV)
@@ -0,0 +1,27 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'inspec-bin/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'inspec-bin'
7
+ spec.version = InspecBin::VERSION
8
+ spec.authors = ['Chef InSpec Core Engineering ']
9
+ spec.email = ['inspec@chef.io']
10
+ spec.summary = 'Infrastructure and compliance testing.'
11
+ spec.description = 'InSpec executable for inspec gem. Use of this executable requires a commercial relationship Chef Software.'
12
+ spec.homepage = 'https://github.com/inspec/inspec'
13
+ spec.license = 'Apache-2.0'
14
+
15
+ spec.require_paths = ['lib']
16
+ spec.required_ruby_version = '>= 2.4'
17
+
18
+ spec.add_dependency 'inspec', "= #{InspecBin::VERSION}"
19
+ spec.add_development_dependency 'rake'
20
+
21
+ spec.files = %w{Rakefile LICENSE} + Dir.glob('*.gemspec') +
22
+ Dir.glob('{lib}/**/*', File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
23
+
24
+ spec.bindir = 'bin'
25
+ spec.executables = %w{inspec}
26
+
27
+ end
@@ -0,0 +1,5 @@
1
+ # This file managed by automation - do not edit manually
2
+ module InspecBin
3
+ INSPECBIN_ROOT = File.expand_path('../..', __FILE__)
4
+ VERSION = '4.1.10'.freeze
5
+ end
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: inspec-bin
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.1.10
5
+ platform: ruby
6
+ authors:
7
+ - 'Chef InSpec Core Engineering '
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-04-26 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: 4.1.10
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 4.1.10
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: InSpec executable for inspec gem. Use of this executable requires a commercial
42
+ relationship Chef Software.
43
+ email:
44
+ - inspec@chef.io
45
+ executables:
46
+ - inspec
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - LICENSE
51
+ - Rakefile
52
+ - bin/inspec
53
+ - inspec-bin.gemspec
54
+ - lib/inspec-bin/version.rb
55
+ homepage: https://github.com/inspec/inspec
56
+ licenses:
57
+ - Apache-2.0
58
+ metadata: {}
59
+ post_install_message:
60
+ rdoc_options: []
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '2.4'
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubyforge_project:
75
+ rubygems_version: 2.6.14.3
76
+ signing_key:
77
+ specification_version: 4
78
+ summary: Infrastructure and compliance testing.
79
+ test_files: []