Continuum-Ruby ========= Ruby library to interact with Continuum, using the XML-RPC interface and enabling access to the working copy directories. More info on the Continuum XML-RPC interface: http://continuum.apache.org/docs/1.3.4/developer_guides/xmlrpc.html http://docs.codehaus.org/display/CONTINUUMUSER/Continuum+XMLRPC Example ======= continuum = Continuum::Continuum.new("my.continuum.host", 8080, "admin", "password", "/continuum") # xml-rpc interface xml_rpc = Continuum::XmlRpc.new(continuum) ok, result = xml_rpc.build_project(1) error = Continuum.parse_error(result) if !ok # getting working copy files working_copy = Continuum::WorkingCopy.new(continuum) test_results = working_copy.get(1, "target/surefire-reports", "emailable-report.html") files = working_copy.dir(1, "target") files.each do |file| file_content = working_copy.get(1, "target", file) end Copyright (c) 2009 Carlos Sanchez, released under the Apache License, Version 2.0