Sha256: 60893bbcc243723c9ed8df9c907bf73f52a3bdb3e7fec0160d9da6b98a362430

Contents?: true

Size: 930 Bytes

Versions: 9

Compression:

Stored size: 930 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"

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

9 entries across 9 versions & 1 rubygems

Version Path
omnibus-7.0.13 lib/omnibus/ohai.rb
omnibus-7.0.12 lib/omnibus/ohai.rb
omnibus-6.1.9 lib/omnibus/ohai.rb
omnibus-6.1.7 lib/omnibus/ohai.rb
omnibus-6.1.4 lib/omnibus/ohai.rb
omnibus-6.0.30 lib/omnibus/ohai.rb
omnibus-6.0.25 lib/omnibus/ohai.rb
omnibus-6.0.24 lib/omnibus/ohai.rb
omnibus-6.0.1 lib/omnibus/ohai.rb