inspec-bin 4.1.10 → 4.3.2

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
2
  SHA1:
3
- metadata.gz: 4d2e7d30203aca6fc985f109cda9f9b6ab94f676
4
- data.tar.gz: fbbddec9de2fb93e9bdcd52170db2486bf39fff7
3
+ metadata.gz: 6a9dedf5f9cd3ab8f647de0fa6e818fe726d4ec1
4
+ data.tar.gz: 4b924f4350becc379ea57307f1d77bff6fc67783
5
5
  SHA512:
6
- metadata.gz: 2ca3b097afa7d866f3aa0c51b21e7e6e28104bcfd40cae252cbf69e5862b6f65a8a382da958ca71ad250caacb26dd58be08b5e7fa1b7ac5783a116b17ea95d5b
7
- data.tar.gz: e9125a7fb38718cb97c9c299140a25494a606b1f0269b56c1230b76c3360531803152c938887a47b150111bd9e52d5e5ab1916883589e679ed306f0b7e473db7
6
+ metadata.gz: 551ee9cfb0f279f6205f97f03d747eb76db749a5588447b053b3edd123cf81da586e6d64b386df78fdfef73d5d1a8375635298c1e00eec2fb28a1211c44ff94d
7
+ data.tar.gz: 00f913eb6ed57e56249e5aa69a9414a09a9a12cd1e46da6d5f4c1e80ef028ec38d4cfa9793208cf5c6699c650779283109ef1a4e213c232f65b009a09a2d2bc8
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
@@ -0,0 +1,3 @@
1
+ # inspec-bin
2
+
3
+ This gem exists so that we can publish the `inspec` executable in a separate gem from the main `inspec` library gem. This permits the community to use Chef InSpec as a library.
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Chef InSpec Core Engineering ']
9
9
  spec.email = ['inspec@chef.io']
10
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'
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
13
  spec.license = 'Apache-2.0'
14
14
 
15
15
  spec.require_paths = ['lib']
@@ -18,8 +18,8 @@ Gem::Specification.new do |spec|
18
18
  spec.add_dependency 'inspec', "= #{InspecBin::VERSION}"
19
19
  spec.add_development_dependency 'rake'
20
20
 
21
- spec.files = %w{Rakefile LICENSE} + Dir.glob('*.gemspec') +
22
- Dir.glob('{lib}/**/*', 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
24
  spec.bindir = 'bin'
25
25
  spec.executables = %w{inspec}
@@ -1,5 +1,5 @@
1
1
  # This file managed by automation - do not edit manually
2
2
  module InspecBin
3
3
  INSPECBIN_ROOT = File.expand_path('../..', __FILE__)
4
- VERSION = '4.1.10'.freeze
4
+ VERSION = '4.3.2'.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.1.10
4
+ version: 4.3.2
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-26 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: inspec
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 4.1.10
19
+ version: 4.3.2
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.1.10
26
+ version: 4.3.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -38,8 +38,8 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: InSpec executable for inspec gem. Use of this executable requires a commercial
42
- relationship Chef Software.
41
+ description: InSpec executable for inspec gem. Use of this executable may require
42
+ accepting a license agreement.
43
43
  email:
44
44
  - inspec@chef.io
45
45
  executables:
@@ -47,12 +47,13 @@ executables:
47
47
  extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
+ - Gemfile
50
51
  - LICENSE
51
- - Rakefile
52
+ - README.md
52
53
  - bin/inspec
53
54
  - inspec-bin.gemspec
54
55
  - lib/inspec-bin/version.rb
55
- homepage: https://github.com/inspec/inspec
56
+ homepage: https://github.com/inspec/inspec/tree/master/inspec-bin
56
57
  licenses:
57
58
  - Apache-2.0
58
59
  metadata: {}
data/Rakefile DELETED
@@ -1,5 +0,0 @@
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