mirror of
https://github.com/inspec/inspec
synced 2025-01-05 17:58:59 +00:00
df7efefc9d
Signed-off-by: Miah Johnson <miah@chia-pet.org>
12 lines
166 B
Ruby
12 lines
166 B
Ruby
# Library resource
|
|
|
|
require 'examplelib'
|
|
require 'hashie'
|
|
|
|
class Example < Inspec.resource(1)
|
|
name 'example'
|
|
include ExampleLib
|
|
def enabled?
|
|
true
|
|
end
|
|
end
|