mirror of
https://github.com/inspec/inspec
synced 2024-12-22 11:03:11 +00:00
10 lines
168 B
Ruby
10 lines
168 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
class Vulcano::Backends::SpecinfraHelper
|
||
|
module Exec
|
||
|
def self.configure(_conf)
|
||
|
Specinfra.configuration.backend = :exec
|
||
|
end
|
||
|
end
|
||
|
end
|