mirror of
https://github.com/inspec/inspec
synced 2024-12-18 17:14:33 +00:00
13 lines
162 B
Ruby
13 lines
162 B
Ruby
|
# Library resource
|
||
|
|
||
|
require 'gordonlib'
|
||
|
require 'hashie'
|
||
|
|
||
|
class Gordon < Inspec.resource(1)
|
||
|
name 'gordon'
|
||
|
include GordonLib
|
||
|
def enabled?
|
||
|
true
|
||
|
end
|
||
|
end
|