mirror of
https://github.com/inspec/inspec
synced 2024-12-20 01:54:08 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
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
|