mirror of
https://github.com/inspec/inspec
synced 2024-12-18 09:03:12 +00:00
641572ec7f
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)
|