0.01
There's a lot of open issues
No release in over a year
Ruby Framework to interact with OnlyOffice API 2.0
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 0.16
 Project Readme

ONLYOFFICE API gem

Ruby Framework to interact with ONLYOFFICE API

Installation

Add this line to your application's Gemfile:

gem 'onlyoffice_api'

And then execute:

bundle

Or install it yourself as:

gem install onlyoffice_api

Usage

First of all, you should configure your enviroment by commands

OnlyOfficeApi.configure do |config|
  config.server = 'https://example.onlyoffice.com'
  config.username = 'foo'
  config.password = 'bar'
  config.proxy = Net::HTTP::Proxy('127.0.0.1', 8123)
end

and then call methods you need:

OnlyOfficeApi.people.get_people

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Documentation

Please read ONLYOFFICE API documentation for more information about API methods

Project Information

Official website: https://www.onlyoffice.coom

Code repository: https://github.com/ONLYOFFICE/onlyoffice_api_gem

SaaS version: https://www.onlyoffice.com

License

onlyoffice_api_gem is released under an GNU AGPL v3.0 license. See the LICENSE file for more information.