XPlanner+ Webservice Wrapper
This gem provides a wrapper for manipulating XPlanner+ via the SOAP interface.
There are models for Projects, Iterations, User Storys, Tasks and People.
To get started, you need to provide a config hash to the XPlanner module, like so:
config = {
:url => 'http://127.0.0.1:8080/xplanner-plus/'
:user => 'sysadmin'
:pass => 'admin'
}
XPlanner::setup( config )
Start creating XPlanner objects like so:
@myProject = XPlanner::Project.create( 'delete me', 'delete me: test project' )