mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
51cb839405
If you use the supported means to create services such as: Fog::Service.new(:provider => "Example") It already loads the contents of `~/.fog` and filters the values based on if they are recognised or required. That means in a number of services that are initialising based on `options` or a value from `Fog.credentials` both are the same. The `options` should have been loaded and merged from credentials in the service "builder". |
||
---|---|---|
.. | ||
lib/fog | ||
test/fog/compute | ||
.gitignore | ||
fog-brightbox.gemspec | ||
Gemfile | ||
LICENSE.txt | ||
Rakefile | ||
README.md |
Brightbox Cloud module for fog (The Ruby cloud services library)
This gem is a modular for the fog
gem that allows you to manage resources in
the Brightbox Cloud.
It is included by the main fog
metagem but can used as an independent library
in other applications.
This includes support for the following services:
- Compute
- Images
- Load Balancers
- SQL Cloud instances
Currently all services are grouped within compute
but will be moved to their
own sections when standardisation of fog progresses.
Installation
Add this line to your application's Gemfile:
gem "fog-brightbox"
And then execute:
$ bundle
Or install it yourself as:
$ gem install fog-brightbox
Usage
Please see the following references for instructions using the main fog
gem
and its modules:
Contributing
fog
modules are kept within the main repo.
- Fork it ( http://github.com/fog/fog/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request