No commit activity in last 3 years
No release in over a year
Provides a convenient object model to the OData REST API of SharePoint 2013 and newer.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Provides a convenient object model to the OData REST API of SharePoint 2013 and newer.

No unit tests as of yet.

Examples

require 'restful-sharepoint'
connection = RestfulSharePoint::Connection.new('http://sharepoint/mysite/', 'username', 'password')
list = RestfulSharePoint::List.from_title('My List', connection)
list_item = list.Items[0] # Dynamically invoke the deferred "Items" element
first_attachment = list_item.AttachmentFiles[0].content

list_item.values # Return the raw tree structure