dmacvicar / ruby-sfcc

ruby bindings for sblim client
MIT License
6 stars 6 forks source link

= ruby-sfcc

== INTRODUCTION

ruby-sfcc provides the SBLIM client API ( http://sblim.wiki.sourceforge.net/Sfcc ) for ruby.

You can use it to connect to any CIMOM talking CIM-XML, but it can take advantage of sfcb CIMOM by connecting using a native interface.

== Requirements

=== Ruby interpreters

ruby-sfcc has been built and the testsuite ran against:

=== sblim

ruby-sfcc has been built and the testsuite ran against:

(Note: Earlier versions of sfcc don't play well with ruby-sfcc+Rails)

== Quick Start

You can create a gem by running rake gem.

See the testsuite for more examples. Or run rake docs.

require 'sfcc'

client = Sfcc::Cim::Client.connect('http://root@localhost:5988')
op = Sfcc::Cim::ObjectPath.new("root/cimv2", "")
result = client.query(op, "select * from CIM_OperatingSystem", "wql")
result.each do |instance|
  puts "query result: #{instance}"
end

== FAQ

== Known Issues

== If you want to contribute:

== Links

=== Documentation

=== Code Metrics

== Authors

== Thanks

The following people have contributed patches, fixes and enhancements: