inspec/lib/resources/directory.rb

16 lines
224 B
Ruby
Raw Normal View History

# encoding: utf-8
2015-10-06 16:55:44 +00:00
# author: Dominik Richter
# author: Christoph Hartmann
require 'resources/file'
2015-10-26 03:04:18 +00:00
module Inspec::Resources
class Directory < File
name 'directory'
end
def to_s
"Directory #{@path}"
end
end