inspec-bin 4.3.2 → 4.6.3

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: 6a9dedf5f9cd3ab8f647de0fa6e818fe726d4ec1
4
- data.tar.gz: 4b924f4350becc379ea57307f1d77bff6fc67783
2
+ SHA256:
3
+ metadata.gz: b2f38e56374fbafb8316aacceb7c8df784dd74151337d25c3c5741ea6806f3cc
4
+ data.tar.gz: 05bc7cdb1fd1ce04362bb0af4833bc8a7517eaf686befcb272c192a56676bcf2
5
5
  SHA512:
6
- metadata.gz: 551ee9cfb0f279f6205f97f03d747eb76db749a5588447b053b3edd123cf81da586e6d64b386df78fdfef73d5d1a8375635298c1e00eec2fb28a1211c44ff94d
7
- data.tar.gz: 00f913eb6ed57e56249e5aa69a9414a09a9a12cd1e46da6d5f4c1e80ef028ec38d4cfa9793208cf5c6699c650779283109ef1a4e213c232f65b009a09a2d2bc8
6
+ metadata.gz: 9c087d8d8e3762364acd9e0ca4fb92493bfe03f82e30ec18f47ebdfe3fbedc1674e7a07181b44d93bd37f4f1f14e00c0094e32e973260b94ab918ea27540adab
7
+ data.tar.gz: 5e7a7ec779b54dfc73c0cdd71053e8df1e9e38a6a976979a80cc01a400f518a98e82160112e64900916d2143dd830616b2a933c0b091a69b83003fb9ec73df08
data/Gemfile CHANGED
@@ -1,2 +1,2 @@
1
- source 'https://rubygems.org'
2
- gemspec
1
+ source "https://rubygems.org"
2
+ gemspec name: "inspec-bin"
data/bin/inspec CHANGED
@@ -1,15 +1,11 @@
1
1
  #!/usr/bin/env ruby
2
- # encoding: utf-8
3
2
  # Copyright 2015 Dominik Richter
4
- # author: Dominik Richter
5
- # author: Christoph Hartmann
6
3
 
7
4
  Encoding.default_external = Encoding::UTF_8
8
5
  Encoding.default_internal = Encoding::UTF_8
9
6
 
10
- lib = File.expand_path('../lib', __FILE__)
7
+ lib = File.expand_path("../lib", __FILE__)
11
8
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
12
9
 
13
- require 'inspec'
14
- require 'inspec/cli'
10
+ require "inspec/cli"
15
11
  Inspec::InspecCLI.start(ARGV)
data/inspec-bin.gemspec CHANGED
@@ -1,27 +1,27 @@
1
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path("../lib", __FILE__)
2
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require 'inspec-bin/version'
3
+ require "inspec-bin/version"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.name = 'inspec-bin'
6
+ spec.name = "inspec-bin"
7
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 may require accepting a license agreement.'
12
- spec.homepage = 'https://github.com/inspec/inspec/tree/master/inspec-bin'
13
- spec.license = 'Apache-2.0'
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 may require accepting a license agreement."
12
+ spec.homepage = "https://github.com/inspec/inspec/tree/master/inspec-bin"
13
+ spec.license = "Apache-2.0"
14
14
 
15
- spec.require_paths = ['lib']
16
- spec.required_ruby_version = '>= 2.4'
15
+ spec.require_paths = ["lib"]
16
+ spec.required_ruby_version = ">= 2.4"
17
17
 
18
- spec.add_dependency 'inspec', "= #{InspecBin::VERSION}"
19
- spec.add_development_dependency 'rake'
18
+ spec.add_dependency "inspec", "= #{InspecBin::VERSION}"
19
+ spec.add_development_dependency "rake"
20
20
 
21
- spec.files = %w{README.md LICENSE Gemfile} + Dir.glob('*.gemspec') +
22
- Dir.glob('{lib,bin}/**/*', File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
21
+ spec.files = %w{README.md LICENSE Gemfile} + Dir.glob("*.gemspec") +
22
+ Dir.glob("{lib,bin}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
23
23
 
24
- spec.bindir = 'bin'
24
+ spec.bindir = "bin"
25
25
  spec.executables = %w{inspec}
26
26
 
27
27
  end
@@ -0,0 +1,30 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "inspec-bin/version"
4
+
5
+ # This is just link inspec-bin, but relies on inspec-core instead of inspec
6
+ # inspec-core is a stripped-down version of the inspec gem with fewer exotic dependencies
7
+
8
+ Gem::Specification.new do |spec|
9
+ spec.name = "inspec-core-bin" # dallas multi-pass
10
+ spec.version = InspecBin::VERSION
11
+ spec.authors = ["Chef InSpec Core Engineering "]
12
+ spec.email = ["inspec@chef.io"]
13
+ spec.summary = "Infrastructure and compliance testing."
14
+ spec.description = "InSpec executable for inspec-core gem. Use of this executable may require accepting a license agreement."
15
+ spec.homepage = "https://github.com/inspec/inspec/tree/master/inspec-bin"
16
+ spec.license = "Apache-2.0"
17
+
18
+ spec.require_paths = ["lib"]
19
+ spec.required_ruby_version = ">= 2.4"
20
+
21
+ spec.add_dependency "inspec-core", "= #{InspecBin::VERSION}"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.files = %w{README.md LICENSE Gemfile} + ["inspec-core-bin.gemspec"] +
25
+ Dir.glob("{lib,bin}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
26
+
27
+ spec.bindir = "bin"
28
+ spec.executables = %w{inspec}
29
+
30
+ end
@@ -1,5 +1,5 @@
1
1
  # This file managed by automation - do not edit manually
2
2
  module InspecBin
3
- INSPECBIN_ROOT = File.expand_path('../..', __FILE__)
4
- VERSION = '4.3.2'.freeze
3
+ INSPECBIN_ROOT = File.expand_path("../..", __FILE__)
4
+ VERSION = "4.6.3".freeze
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inspec-bin
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.2
4
+ version: 4.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - 'Chef InSpec Core Engineering '
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-30 00:00:00.000000000 Z
11
+ date: 2019-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: inspec
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 4.3.2
19
+ version: 4.6.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 4.3.2
26
+ version: 4.6.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -52,6 +52,7 @@ files:
52
52
  - README.md
53
53
  - bin/inspec
54
54
  - inspec-bin.gemspec
55
+ - inspec-core-bin.gemspec
55
56
  - lib/inspec-bin/version.rb
56
57
  homepage: https://github.com/inspec/inspec/tree/master/inspec-bin
57
58
  licenses:
@@ -72,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
72
73
  - !ruby/object:Gem::Version
73
74
  version: '0'
74
75
  requirements: []
75
- rubyforge_project:
76
- rubygems_version: 2.6.14.3
76
+ rubygems_version: 3.0.3
77
77
  signing_key:
78
78
  specification_version: 4
79
79
  summary: Infrastructure and compliance testing.