mirror of
https://github.com/inspec/inspec
synced 2024-12-18 00:53:22 +00:00
11 lines
182 B
Ruby
11 lines
182 B
Ruby
# encoding: utf-8
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
require 'resources/file'
|
|
|
|
module Vulcano::Resources
|
|
class Directory < File
|
|
name 'directory'
|
|
end
|
|
end
|