Sha256: 6f268291bd320e63c0ce4aaef81f80e708bc4ef8b979c1ee3ef56e378249947e
Contents?: true
Size: 930 Bytes
Versions: 5
Compression:
Stored size: 930 Bytes
Contents
# # Copyright 2012-2014 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" 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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
omnibus-5.6.8 | lib/omnibus/ohai.rb |
omnibus-5.6.6 | lib/omnibus/ohai.rb |
omnibus-5.6.1 | lib/omnibus/ohai.rb |
omnibus-5.6.0 | lib/omnibus/ohai.rb |
omnibus-5.5.0 | lib/omnibus/ohai.rb |