Ruby-wmi 0.2.2 Released

Subject: [ANN] ruby-wmi 0.2.2 Released

ruby-wmi version 0.2.2 has been released!

  • http://ruby-wmi.rubyforge.org/

  • [email protected]

    ruby-wmi is an ActiveRecord style interface for Microsoft’s Windows
    Management Instrumentation provider.

    Many of the methods in WMI::Base are borrowed directly, or with some
    modification from ActiveRecord.
    ActiveRecord::Base

    The major tool in this library is the #find method. For more
    information, see WMI::Base.

    There is also a WMI.sublasses method included for reflection purposes.

Changes:

0.2.2 / 2008-01-11

  • 1 major enhancement

    • supports privileges

      events = WMI::Win32_NTLogEvent.find(
      :all,
      :privileges => [WMI::Privilege::Security],
      :conditions => {:logfile => ‘Security’, :eventcode => ‘517’} )
  • minor enhancements

    • added error handling for invalid queries and class name typos
    • better documentation
  • http://ruby-wmi.rubyforge.org/

  • [email protected]