The Ruby cloud services library.
Go to file
geemus (Wesley Beary) 6647fdf18c nicer formatting for .fog suggestion and more explicit error 2010-01-31 13:54:36 -08:00
benchs move connection benchmarks to excon 2009-10-25 18:45:27 -07:00
bin fix non-default credentials 2010-01-25 16:21:38 -08:00
lib nicer formatting for .fog suggestion and more explicit error 2010-01-31 13:54:36 -08:00
spec update ec2 to newest api version and fix the broken specs 2010-01-25 22:46:18 -08:00
.document fix .document paths 2009-11-27 15:39:00 -08:00
.gitignore move config to saner place, only parse it once 2009-07-13 19:25:44 -07:00
README.rdoc update ec2 to newest api version and fix the broken specs 2010-01-25 22:46:18 -08:00
Rakefile add json to dependencies (used for rackspace/slicehost) 2010-01-28 22:46:44 -08:00
VERSION Version bump to 0.0.41 2010-01-25 22:57:32 -08:00
VERSION.yml Version bump to 0.0.0 2010-01-28 22:45:56 -08:00
fog.gemspec Version bump to 0.0.41 2010-01-25 22:57:32 -08:00

README.rdoc

= fog

fog helps you interact with cloud services. fog is a work in progress.

== Install

  sudo gem install fog

== Getting Started

You can start stumbling around as soon as you install with the fog command line tool.
After installing, just type 'fog' to get started.
If you don't have credentials setup it will let you know what to do.

Then just start playing around, fog should let you know if you are forget things.

For example if you try to create a server but leave out stuff:

  server = AWS.servers.create

You'll get reminded that things are missing.

  ArgumentError: image_id is required for this operation

So just add the missing stuff and you are off to the races:

  server = AWS.servers.create(:image_id => 'ami-5ee70037')

But don't forget to cleanup or you'll regret it when you get the bill:

  server.destroy

Rinse, repeat, enjoy!

== Working with Servers

Lets boot up a server on EC2

  require 'fog'

  # initialize a connection to Amazon Elastic Compute Cloud
  connection = Fog::AWS::EC2.new(
    :aws_access_key_id => id,
    :aws_secret_access_key => key
  )

  # boot a gentoo server
  server = connection.servers.new(:image_id => 'ami-5ee70037')
  # you might also want to add the server to security groups, which goes like this:
  # AWS.servers.create(:image_id => 'ami-5ee70037', :groups => ['web', 'db'])

  # wait for it to be ready to do stuff
  server.wait_for { ready? }

  # DO STUFF

  # shutdown the server
  server.destroy

Now we will try again, but with Rackspace

  # initialize a connection to Rackspace Servers
  connection = Fog::Rackspace::Servers.new(
    :rackspace_api_key => key,
    :rackspace_username => username
  )

  # boot a gentoo server (flavor 1 = 256, image 3 = gentoo 2008.0)
  server = connection.servers.new(:flavor_id => 1, :image_id => 3, :name => 'my_server')

  # wait for it to be ready to do stuff
  server.wait_for { ready? }

  # DO STUFF

  # shutdown the server
  server.destroy

== Working with Directories and Files

  require 'fog'

  # initialize a connection to Amazon Simple Storage Solution
  connection = Fog::AWS::S3.new(
    :aws_access_key_id => id,
    :aws_secret_access_key => key
  )

  # create a directory
  directory = connection.directory.create(:name => 'directoryname')

  # create a new file in your directory
  directory.files.create(:key => 'filename', :body => 'filebody')

  # connect to your directory
  directory = connection.directories.get('filename')

  # get your file
  file = directory.files.get('filename')

  # delete the file
  file.destroy

  # delete the directory
  directory.destroy

== Requirements

* ruby 1.8 or 1.9
* ruby-hmac
* mime-types
* nokogiri

== Supports

* AWS EC2
* AWS S3
* AWS SimpleDB (no models yet)
* Rackspace Files (no models yet, just getting started on requests)
* Rackspace Servers (some requests, server model, just getting started)

== Copyright

(The MIT License)

Copyright (c) 2009 {geemus (Wesley Beary)}[http://github.com/geemus]

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.