### Setup Scalingo Backups Manager Development Environment Source: https://github.com/9troisquarts/scalingo_backups_manager/blob/master/README.md This command is used to set up the development environment for the Scalingo Backups Manager gem. It installs necessary dependencies required for development and testing purposes. ```Shell bin/setup ``` -------------------------------- ### Install Scalingo Backups Manager Gem (Standalone) Source: https://github.com/9troisquarts/scalingo_backups_manager/blob/master/README.md This snippet demonstrates how to install the Scalingo Backups Manager gem directly using the `gem install` command. This method is suitable for installing the gem on your local machine without managing it through a Gemfile. ```Shell gem install scalingo_backups_manager ``` -------------------------------- ### Install Scalingo Backups Manager Locally Source: https://github.com/9troisquarts/scalingo_backups_manager/blob/master/README.md This command installs the Scalingo Backups Manager gem onto your local machine. It's typically used during development to test changes before releasing them. ```Shell bundle exec rake install ``` -------------------------------- ### Start Interactive Console for Scalingo Backups Manager Source: https://github.com/9troisquarts/scalingo_backups_manager/blob/master/README.md This command launches an interactive console session for the Scalingo Backups Manager gem. This allows developers to experiment with the gem's features and functionalities directly. ```Shell bin/console ``` -------------------------------- ### Install Scalingo Backups Manager Gem Source: https://github.com/9troisquarts/scalingo_backups_manager/blob/master/README.md This snippet shows how to add the Scalingo Backups Manager gem to your application's Gemfile. It specifies the source as a Git repository, as the gem is not yet hosted on Rubygems. After adding the line to the Gemfile, you need to run `bundle install`. ```Ruby gem 'scalingo_backups_manager', git: "https://github.com/9troisquarts/scalingo_backups_manager" ``` -------------------------------- ### Execute Scalingo Backups Manager Source: https://github.com/9troisquarts/scalingo_backups_manager/blob/master/README.md This command executes the Scalingo Backups Manager gem after it has been installed. It requires the `SCALINGO_API_TOKEN` environment variable to be set, which provides the necessary authentication credentials to interact with Scalingo services. ```Shell bundle exec scalingo_backups_manager ``` -------------------------------- ### Run Tests for Scalingo Backups Manager Source: https://github.com/9troisquarts/scalingo_backups_manager/blob/master/README.md This command executes the test suite for the Scalingo Backups Manager gem. Running tests is crucial for ensuring the gem's functionality and stability. ```Shell rake spec ``` -------------------------------- ### Release New Version of Scalingo Backups Manager Source: https://github.com/9troisquarts/scalingo_backups_manager/blob/master/README.md This command is used to release a new version of the Scalingo Backups Manager gem. It involves updating the version number in `version.rb`, creating a git tag, and pushing commits and tags to the remote repository, including publishing to rubygems.org. ```Shell bundle exec rake release ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.