mirror of
https://github.com/inspec/inspec
synced 2025-02-17 14:38:43 +00:00
This makes it easier for other applications to include this component. require from bin/inspec just doesnt behave (or needs workarounds)
9 lines
249 B
Ruby
Executable file
9 lines
249 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# encoding: utf-8
|
|
# Copyright 2015 Dominik Richter. All rights reserved.
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
require_relative '../lib/inspec'
|
|
require_relative '../lib/inspec/cli'
|
|
Inspec::InspecCLI.start(ARGV)
|