Sha256: 69817fb74dfc7255aa622ef8f4eb75b8c632f93fbfa23a39903e7c4fdbd2a29d

Contents?: true

Size: 1017 Bytes

Versions: 34

Compression:

Stored size: 1017 Bytes

Contents

#
# Author:: Benjamin Black (<bb@opscode.com>)
# Copyright:: Copyright (c) 2009 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# 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.
#

provides "system_profile"

begin  
  require 'plist'

  system_profile Array.new
  popen4("system_profiler -xml -detailLevel mini") do |pid, stdin, stdout, stderr|
    stdin.close
    Plist::parse_xml(stdout.read).each do |e|
      system_profile << e
    end
  end
rescue LoadError => e
  Ohai::Log.debug("Can't load gem: #{e})")
end

Version data entries

34 entries across 34 versions & 2 rubygems

Version Path
rightscale-ohai-0.3.3.1 lib/ohai/plugins/darwin/system_profiler.rb
rightscale-ohai-0.3.3.2 lib/ohai/plugins/darwin/system_profiler.rb
rightscale-ohai-0.3.3.3 lib/ohai/plugins/darwin/system_profiler.rb
ohai-6.14.0 lib/ohai/plugins/darwin/system_profiler.rb
ohai-6.14.0.rc.1 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.14.rc.1 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.12 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.12.rc.5 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.12.rc.4 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.12.rc.3 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.12.rc.2 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.12.rc.1 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.10 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.10.rc.1 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.8 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.8.rc.1 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.8.rc.0 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.6 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.6.rc.1 lib/ohai/plugins/darwin/system_profiler.rb
ohai-0.6.6.rc.0 lib/ohai/plugins/darwin/system_profiler.rb