ActiveCMIS Release 0.1.0

Homepage: http://xaop.com/labs/activecmis
Git: http://github.com/xaop/activecmis
Author: XAOP bvba
Copyright: 2010 License: MIT License

Synopsis

ActiveCMIS is Ruby library aimed at easing the interaction with various CMIS providers. It creates Ruby objects for CMIS objects, and creates Ruby classes that correspond to CMIS types.

Features

  • Read support for all CMIS object types
  • Write support and the ability to create new objects.
  • Support for paging

Installation

If you haven't installed Nokogiri yet it will be installed automatically, you will need a C compiler and the development files for libxml2.

If you don't have Yardoc or bluecloth installed you won't be able to build the documentation and will need to add --no-rdoc --no-ri to the next command (or install yard and bluecloth first).

> gem install active_cmis

Usage

require 'active_cmis'
repository = ActiveCMIS.load_config('configuration', 'optional_filename_for_config')
f = repository.root_folder
p f.items.map do |i| i.cmis.name end

And so on ...

Full documentation of the API can be found at http://xaop.com/labs/activecmis/doc/index.html

A tutorial can be found at the xaop site