No release in over a year
Wrapper gem for DigitalOcean. Use in testing projects
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

OnlyofficeDigitaloceanWrapper

Gem for working with DigitalOcean API

Installation

Add this line to your application's Gemfile:

gem 'onlyoffice_digitalocean_wrapper'

And then execute:

bundle

Or install it yourself as:

gem install onlyoffice_digitalocean_wrapper

Configure

You should get access token via visiting this url
Access token can be initialized in two ways:

  1. Save to ~/.do/access_token

    mkdir ~/.do
    echo 'token' > ~/.do/access_token
  2. Set to DO_ACCESS_TOKEN env. Can be setup via ~/.bashrc

    echo "export DO_ACCESS_TOKEN='token'" >> ~/.bashrc