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