inspec-core 4.2.0.preview → 4.3.2

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: 3cbd02d922c9f1c6cbe5d81b74598ac88ca10676
4
- data.tar.gz: 31b971b6c1c65154a2952d4eb27ab6b1edb765ae
2
+ SHA256:
3
+ metadata.gz: a8a2ad37fec927c5277645005285178479229d1d9e4b27eac72017e76fe148d6
4
+ data.tar.gz: c273fc61ad231069fde8d7fac64283b1598cd02da1630ce5305d3d1533af213e
5
5
  SHA512:
6
- metadata.gz: 91dc0c86668e00121588268d2828521a73e315efa0480919b09d3ee7e82e2dd4a9d93e88204a47e960c96e31ed425ff32e3131a60f94590053c417c3da0a2344
7
- data.tar.gz: 45628e2783b3ba28495fa7efe504956c21a9462355a77ef87aa164e9738858b186f187c6c27f18629083b66a5c02cf77835e9fde5cb7c200d8dc6aa8e997152f
6
+ metadata.gz: 347841dadf8b6f8b91a0d61190b8095e6adf218308d17e5cee66e1ec615cde84ed6bdfa060362df9fc7cf3b0b93ffccd7275a83d54387797cae504f378ae7ef6
7
+ data.tar.gz: c042b3def3f7a0cd52c782b197dd35fd38e7d19a1cbb82b0928a8e9b04e7c08076a08540dac8473b8768cc4cc6e079134845e6049c334c3ecf4320ec428af368
@@ -1,3 +1,3 @@
1
1
  module Inspec
2
- VERSION = '4.2.0.preview'.freeze
2
+ VERSION = '4.3.2'.freeze
3
3
  end
@@ -39,7 +39,7 @@ end
39
39
 
40
40
  module CorePluginBaseHelper
41
41
  let(:repo_path) { File.expand_path(File.join(__FILE__, '..', '..', '..', '..')) }
42
- let(:inspec_bin_path) { File.join(repo_path, 'bin', 'inspec') }
42
+ let(:inspec_bin_path) { File.join(repo_path, 'inspec-bin', 'bin', 'inspec') }
43
43
  let(:core_mock_path) { File.join(repo_path, 'test', 'unit', 'mock') }
44
44
  let(:core_fixture_plugins_path) { File.join(core_mock_path, 'plugins') }
45
45
  let(:core_config_dir_path) { File.join(core_mock_path, 'config_dirs') }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inspec-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0.preview
4
+ version: 4.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dominik Richter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-29 00:00:00.000000000 Z
11
+ date: 2019-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: train-core
@@ -28,16 +28,22 @@ dependencies:
28
28
  name: license-acceptance
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.2.13
34
+ - - "<"
32
35
  - !ruby/object:Gem::Version
33
- version: '0.2'
36
+ version: '2.0'
34
37
  type: :runtime
35
38
  prerelease: false
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - "~>"
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 0.2.13
44
+ - - "<"
39
45
  - !ruby/object:Gem::Version
40
- version: '0.2'
46
+ version: '2.0'
41
47
  - !ruby/object:Gem::Dependency
42
48
  name: thor
43
49
  requirement: !ruby/object:Gem::Requirement
@@ -355,14 +361,12 @@ dependencies:
355
361
  description: Core InSpec, local support only. See `inspec` for full support.
356
362
  email:
357
363
  - dominik.richter@gmail.com
358
- executables:
359
- - inspec
364
+ executables: []
360
365
  extensions: []
361
366
  extra_rdoc_files: []
362
367
  files:
363
368
  - LICENSE
364
369
  - README.md
365
- - bin/inspec
366
370
  - etc/deprecations.json
367
371
  - etc/plugin_filters.json
368
372
  - lib/bundles/README.md
@@ -675,12 +679,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
675
679
  version: '2.4'
676
680
  required_rubygems_version: !ruby/object:Gem::Requirement
677
681
  requirements:
678
- - - ">"
682
+ - - ">="
679
683
  - !ruby/object:Gem::Version
680
- version: 1.3.1
684
+ version: '0'
681
685
  requirements: []
682
- rubyforge_project:
683
- rubygems_version: 2.6.14.3
686
+ rubygems_version: 3.0.3
684
687
  signing_key:
685
688
  specification_version: 4
686
689
  summary: Just InSpec
data/bin/inspec DELETED
@@ -1,12 +0,0 @@
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
- require_relative '../lib/inspec'
11
- require_relative '../lib/inspec/cli'
12
- Inspec::InspecCLI.start(ARGV)