Sha256: bdd758738ce35d8cdff455b797ab8ed21ca671ee466e843564a5f4dbfb417eb2
Contents?: true
Size: 960 Bytes
Versions: 13
Compression:
Stored size: 960 Bytes
Contents
# # Copyright 2012-2018 Chef Software, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require "ohai" unless defined?(Ohai::System) module Omnibus class Ohai PLUGINS = %w{ cpu kernel os platform}.freeze class << self def method_missing(m, *args, &block) ohai.send(m, *args, &block) end private def ohai @ohai ||= ::Ohai::System.new.tap { |o| o.all_plugins(PLUGINS) }.data end end end end
Version data entries
13 entries across 13 versions & 1 rubygems