mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
11 lines
151 B
Ruby
11 lines
151 B
Ruby
# encoding: utf-8
|
|
|
|
module Vulcano::Resources
|
|
class OS < Vulcano.resource(1)
|
|
name 'os'
|
|
|
|
def [](name)
|
|
vulcano.os[name]
|
|
end
|
|
end
|
|
end
|