Sha256: b0eb01df1b62e0b64a3226aac5e60f2538ba0c9f0bf38d19adc78adc05f7675f

Contents?: true

Size: 969 Bytes

Versions: 10

Compression:

Stored size: 969 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 = [
      '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

10 entries across 10 versions & 1 rubygems

Version Path
omnibus-5.4.0 lib/omnibus/ohai.rb
omnibus-5.3.0 lib/omnibus/ohai.rb
omnibus-5.2.0 lib/omnibus/ohai.rb
omnibus-5.1.0 lib/omnibus/ohai.rb
omnibus-5.0.0 lib/omnibus/ohai.rb
omnibus-4.1.0 lib/omnibus/ohai.rb
omnibus-4.0.0 lib/omnibus/ohai.rb
omnibus-4.0.0.rc.2 lib/omnibus/ohai.rb
omnibus-4.0.0.rc.1 lib/omnibus/ohai.rb
omnibus-4.0.0.beta.1 lib/omnibus/ohai.rb