inspec-core-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: ecd6774978a37d9d36acba9ef7d8263fbf24c896
4
- data.tar.gz: bc421a71181c04cbf5233377652c9b91c3b3d778
2
+ SHA256:
3
+ metadata.gz: ab564644bdad28e78b22f7d6f4fc6a52925a00c9aecea2ebc5d978649286380a
4
+ data.tar.gz: faace2f9043428f3c8e1f1330db158b392db270b5a69eadfca1a2cebcefe844e
5
5
  SHA512:
6
- metadata.gz: 88687126260ee638c3bd64d64ca5121529f726c3618df99559ad65676ddad089019ab3ea286bd715546c4ca1f92fb15288195c163eb54ea5d17c973cf1752f2d
7
- data.tar.gz: a6be65b1d013bfee0c6ba503f3fcde5eefd33c5c688cfd80fd9d16a5663b0c842b58b9a57838ae50ad161028dd7aa0825bc8e9bd9957b06cc8e53be42e3d29a0
6
+ metadata.gz: 6bb3ab92c8cf21db18a7231a43525a06df758185008bb8efb469a9bb018547a617e82490e718109e64db9199f3975261548e2901cb8c272c239207430bdad959
7
+ data.tar.gz: 9c6a20879c5389340201c5ac894da4ce2683465ef22b10ad873e2241d4722c699515f38209f2479578733213cd5c7e1181d03a90aa763a179ddb057d45a81430
data/Gemfile CHANGED
@@ -1,2 +1,2 @@
1
- source 'https://rubygems.org'
2
- gemspec name: 'inspec-bin'
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)
@@ -1,30 +1,30 @@
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
  # This is just link inspec-bin, but relies on inspec-core instead of inspec
6
6
  # inspec-core is a stripped-down version of the inspec gem with fewer exotic dependencies
7
7
 
8
8
  Gem::Specification.new do |spec|
9
- spec.name = 'inspec-core-bin' # dallas multi-pass
9
+ spec.name = "inspec-core-bin" # dallas multi-pass
10
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'
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
17
 
18
- spec.require_paths = ['lib']
19
- spec.required_ruby_version = '>= 2.4'
18
+ spec.require_paths = ["lib"]
19
+ spec.required_ruby_version = ">= 2.4"
20
20
 
21
- spec.add_dependency 'inspec-core', "= #{InspecBin::VERSION}"
22
- spec.add_development_dependency 'rake'
21
+ spec.add_dependency "inspec-core", "= #{InspecBin::VERSION}"
22
+ spec.add_development_dependency "rake"
23
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) }
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
26
 
27
- spec.bindir = 'bin'
27
+ spec.bindir = "bin"
28
28
  spec.executables = %w{inspec}
29
29
 
30
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-core-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-05-01 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-core
@@ -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
@@ -72,8 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
72
72
  - !ruby/object:Gem::Version
73
73
  version: '0'
74
74
  requirements: []
75
- rubyforge_project:
76
- rubygems_version: 2.6.14.3
75
+ rubygems_version: 3.0.3
77
76
  signing_key:
78
77
  specification_version: 4
79
78
  summary: Infrastructure and compliance testing.