mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
12 lines
338 B
Ruby
Executable file
12 lines
338 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# encoding: utf-8
|
|
# Copyright 2015 Dominik Richter. All rights reserved.
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
Encoding.default_external = Encoding::UTF_8
|
|
Encoding.default_internal = Encoding::UTF_8
|
|
|
|
require_relative '../lib/inspec'
|
|
require_relative '../lib/inspec/cli'
|
|
Inspec::InspecCLI.start(ARGV)
|