inspec_tools 1.7.1 → 1.7.3

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
2
  SHA256:
3
- metadata.gz: d638f0d057d193c9c700238c20a20d9143281ea940c8fc07cef32c1e22b8e2b4
4
- data.tar.gz: cc130e14e071da3dcd675004be8671fd40ea8608024ef84adff50eaa258e3c0d
3
+ metadata.gz: 3d58d22693db0f7d255af885a6e48db127aabc0fe506b0d924af1f7da5a498ca
4
+ data.tar.gz: 64ba93bbf6a3cff90a69aa64a77500cd5606ba837b3a0670fe31f9c99e618a0e
5
5
  SHA512:
6
- metadata.gz: 3bb61794f5a7dc49b09b701d9ab6598b96b51eccec392c5a1131f89efb3b17cff2a6f03fff8042b07df804b71ebbd39503f0c2483abaab6ae373556d98342363
7
- data.tar.gz: f14b50ab337e77f6f3ac680874a11badf438009f53b9bacd813c5221f09b58f80ad610d9c6410bc92e6e0748e1ff2d37551bfd03af7b689b20e7e8e5f9ac54d1
6
+ metadata.gz: 906c0ede6edf1845ab8100fb3b2bc9dbac972f61d93e9e14d3faca5ecb2abeb07a035dfca96d17dc0ce410793a2af29a04a6a25f7d640e9da37859df148ecc24
7
+ data.tar.gz: 7a8239a52459963784cc922804c3db71575610f7e716bdd5a4b12599e90c2db290a18c21e5c67f1ad24268c5b4b33c2eef9f796a0e8eaaf64a56333887c12c19
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.7.3](https://github.com/mitre/inspec_tools/tree/v1.7.3) (2020-03-23)
4
+
5
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.2...v1.7.3)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Hotfix [\#104](https://github.com/mitre/inspec_tools/pull/104) ([Bialogs](https://github.com/Bialogs))
10
+
11
+ ## [v1.7.2](https://github.com/mitre/inspec_tools/tree/v1.7.2) (2020-03-23)
12
+
13
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.1...v1.7.2)
14
+
15
+ **Implemented enhancements:**
16
+
17
+ - add warning in CLI if needed app is missing for pdf2inspec [\#38](https://github.com/mitre/inspec_tools/issues/38)
18
+
19
+ **Merged pull requests:**
20
+
21
+ - Allow pushing to any gem host to support GitHub [\#103](https://github.com/mitre/inspec_tools/pull/103) ([Bialogs](https://github.com/Bialogs))
22
+
3
23
  ## [v1.7.1](https://github.com/mitre/inspec_tools/tree/v1.7.1) (2020-03-23)
4
24
 
5
25
  [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.0...v1.7.1)
@@ -7,7 +27,6 @@
7
27
  **Merged pull requests:**
8
28
 
9
29
  - GitHub Action Workflow Updates [\#102](https://github.com/mitre/inspec_tools/pull/102) ([Bialogs](https://github.com/Bialogs))
10
- - Rubygems release workflow [\#100](https://github.com/mitre/inspec_tools/pull/100) ([Bialogs](https://github.com/Bialogs))
11
30
 
12
31
  ## [v1.7.0](https://github.com/mitre/inspec_tools/tree/v1.7.0) (2020-03-20)
13
32
 
@@ -37,6 +56,10 @@
37
56
 
38
57
  [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.19...v1.6.20)
39
58
 
59
+ **Merged pull requests:**
60
+
61
+ - Rubygems release workflow [\#100](https://github.com/mitre/inspec_tools/pull/100) ([Bialogs](https://github.com/Bialogs))
62
+
40
63
  ## [v1.6.19](https://github.com/mitre/inspec_tools/tree/v1.6.19) (2020-03-16)
41
64
 
42
65
  [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.18...v1.6.19)
data/exe/inspec_tools CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env ruby -E UTF-8
1
+ #!/usr/bin/env -S ruby -E UTF-8
2
2
 
3
3
  # Trap ^C
4
4
  Signal.trap('INT') {
@@ -1,7 +1,8 @@
1
1
  require 'yaml'
2
2
  require 'json'
3
3
 
4
- require 'inspec-objects'
4
+ require 'inspec/objects'
5
+ require 'inspec'
5
6
  require_relative 'version'
6
7
 
7
8
  require_relative '../utilities/inspec_util'
@@ -1,3 +1,3 @@
1
1
  module InspecTools
2
- VERSION = '1.7.1'.freeze
2
+ VERSION = '1.7.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inspec_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Thew
@@ -27,6 +27,26 @@ dependencies:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
29
  version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: inspec
32
+ requirement: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '3.0'
37
+ - - "<"
38
+ - !ruby/object:Gem::Version
39
+ version: '5.0'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '3.0'
47
+ - - "<"
48
+ - !ruby/object:Gem::Version
49
+ version: '5.0'
30
50
  - !ruby/object:Gem::Dependency
31
51
  name: inspec-objects
32
52
  requirement: !ruby/object:Gem::Requirement
@@ -288,8 +308,7 @@ files:
288
308
  homepage: https://github.com/mitre/inspec_tools
289
309
  licenses:
290
310
  - Apache-2.0
291
- metadata:
292
- allowed_push_host: https://rubygems.org
311
+ metadata: {}
293
312
  post_install_message:
294
313
  rdoc_options: []
295
314
  require_paths:
@@ -298,7 +317,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
298
317
  requirements:
299
318
  - - "~>"
300
319
  - !ruby/object:Gem::Version
301
- version: '2.3'
320
+ version: '2.4'
302
321
  required_rubygems_version: !ruby/object:Gem::Requirement
303
322
  requirements:
304
323
  - - ">="