mirror of
https://github.com/inspec/inspec
synced 2024-11-24 13:43:09 +00:00
18 lines
318 B
Ruby
18 lines
318 B
Ruby
# encoding: utf-8
|
|
|
|
module Vulcano::Targets
|
|
class FileHelper
|
|
def handles?(target)
|
|
File.file?(target) and target.end_with?('.rb')
|
|
end
|
|
|
|
def resolve(target)
|
|
{
|
|
content: File.read(target),
|
|
ref: target
|
|
}
|
|
end
|
|
end
|
|
|
|
Vulcano::Targets.add_module('file', FileHelper.new)
|
|
end
|