mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
add base resource
Signed-off-by: Dominik Richter <dominik@vulcanosec.com>
This commit is contained in:
parent
7a721dba7e
commit
cceefa54cf
1 changed files with 17 additions and 0 deletions
17
lib/vulcano/resource.rb
Normal file
17
lib/vulcano/resource.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
# encoding: utf-8
|
||||
# copyright: 2015, Vulcano Security GmbH
|
||||
# license: All rights reserved
|
||||
|
||||
module Vulcano
|
||||
class Resource
|
||||
|
||||
def resource_skipped
|
||||
@resource_skipped
|
||||
end
|
||||
|
||||
def skip_resource message
|
||||
@resource_skipped = message
|
||||
end
|
||||
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue