The Ruby cloud services library.
Go to file
Wesley Beary 1d5b3d19d3 move connection benchmarks to excon 2009-10-25 18:45:27 -07:00
benchs move connection benchmarks to excon 2009-10-25 18:45:27 -07:00
bin don't require credentials for aws/rackspace to run cli 2009-10-15 13:45:14 -07:00
lib update rackspace models to match new identity/collection abstraction 2009-10-25 18:24:20 -07:00
spec make ec2 models use collection/identity abstraction, fix a couple mocks 2009-10-23 22:23:55 -07:00
.document Initial commit to fog. 2009-05-18 00:13:06 -07:00
.gitignore move config to saner place, only parse it once 2009-07-13 19:25:44 -07:00
README.rdoc update README 2009-10-18 22:13:17 -07:00
Rakefile sample for .fog file 2009-10-14 10:22:59 -07:00
VERSION Version bump to 0.0.29 2009-10-23 14:49:59 -07:00
fog.gemspec Version bump to 0.0.29 2009-10-23 14:49:59 -07:00

README.rdoc

= fog

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

== Features

* Low level api calls
* Model level abstractions
* Mocks

== 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)

== Synopsis

  require 'fog'

  # turn on mocking (if desired)
  Fog.mock!

  # initialize a connection
  s3 = Fog::AWS::S3.new(
    :aws_access_key_id => id,
    :aws_secret_access_key => key
  )

  # low level requests
  s3.put_bucket('bucketname')
  s3.put_object('bucketname', 'objectname', 'objectbody')

  s3.get_bucket('bucketname')
  s3.get_object('bucketname', 'objectname')

  s3.delete_object('bucketname', 'objectname')
  s3.delete_bucket('bucketname')

  # models
  bucket = s3.buckets.create(:name => 'bucketname')
  bucket.objects.create(:name => 'objectname', :body => 'objectbody')

  bucket = s3.buckets.get('bucketname')
  object = bucket.objects.get('objectname')

  object.destroy
  bucket.destroy

== Requirements

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

== Install

  sudo gem install fog

== 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.