Module: RestfulSharePoint

Defined in:
lib/restful-sharepoint.rb,
lib/restful-sharepoint/error.rb,
lib/restful-sharepoint/object.rb,
lib/restful-sharepoint/version.rb,
lib/restful-sharepoint/collection.rb,
lib/restful-sharepoint/connection.rb,
lib/restful-sharepoint/common-base.rb,
lib/restful-sharepoint/objects/web.rb,
lib/restful-sharepoint/objects/file.rb,
lib/restful-sharepoint/objects/list.rb,
lib/restful-sharepoint/collections/webs.rb,
lib/restful-sharepoint/collections/lists.rb,
lib/restful-sharepoint/objects/list-item.rb,
lib/restful-sharepoint/objects/attachment.rb,
lib/restful-sharepoint/collections/list-items.rb,
lib/restful-sharepoint/collections/attachments.rb

Defined Under Namespace

Classes: Attachment, Attachments, Collection, CommonBase, Connection, Error, File, FileNotFound, List, ListItem, ListItems, Lists, Object, RestError, Web, Webs

Constant Summary collapse

OBJECT_MAP =
{
  "SP.Web" => :Web,
  "SP.List" => :List,
  /SP\.Data\..*Item/ => :ListItem,
  "SP.File" => :File,
  "SP.Attachment" => :Attachment
}
COLLECTION_MAP =
{
  "SP.Web" => :Webs,
  "SP.List" => :Lists,
  /SP\.Data\..*Item/ => :ListItems,
  "SP.Attachment" => :Attachments
}
LOG =
Logger.new('restful-sharepoint.log')
VERSION =
'0.2.6'