fog--fog/README.rdoc

126 lines
3.1 KiB
Plaintext
Raw Normal View History

2009-05-18 07:13:06 +00:00
= fog
2009-09-15 04:32:02 +00:00
fog helps you interact with cloud services. fog is a work in progress.
2009-05-18 07:13:06 +00:00
2009-09-15 04:32:02 +00:00
== Features
* Low level api calls
* Model level abstractions
* Mocks
== Supports
2009-10-19 05:13:17 +00:00
* AWS EC2
2009-09-15 04:32:02 +00:00
* AWS S3
2009-10-19 05:13:17 +00:00
* AWS SimpleDB (no models yet)
* Rackspace Files (no models yet, just getting started on requests)
* Rackspace Servers (some requests, server model, just getting started)
2009-09-15 04:32:02 +00:00
2010-01-15 05:19:48 +00:00
== Servers
Lets boot up a server on EC2
2009-09-15 04:32:02 +00:00
require 'fog'
2010-01-15 05:19:48 +00:00
# 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')
# 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
== Directories and Files
require 'fog'
2009-09-15 04:32:02 +00:00
2010-01-15 05:19:48 +00:00
# initialize a connection to Amazon Simple Storage Solution
connection = Fog::AWS::S3.new(
2009-09-15 04:32:02 +00:00
:aws_access_key_id => id,
:aws_secret_access_key => key
)
2010-01-15 05:19:48 +00:00
# create a directory
directory = connection.directory.create(:name => 'directoryname')
2009-09-15 04:32:02 +00:00
2010-01-15 05:19:48 +00:00
# create a new file in your directory
directory.files.create(:key => 'filename', :body => 'filebody')
2009-09-15 04:32:02 +00:00
2010-01-15 05:19:48 +00:00
# connect to your directory
directory = connection.directories.get('filename')
2009-09-15 04:32:02 +00:00
2010-01-15 05:19:48 +00:00
# get your file
file = directory.files.get('filename')
2009-09-15 04:32:02 +00:00
2010-01-15 05:19:48 +00:00
# delete the file
file.destroy
2009-09-15 04:32:02 +00:00
2010-01-15 05:19:48 +00:00
# delete the directory
directory.destroy
2009-09-15 04:32:02 +00:00
== Requirements
* ruby 1.8 or 1.9
* ruby-hmac
* mime-types
* nokogiri
== Install
sudo gem install fog
== Copyright
2009-05-18 07:13:06 +00:00
2009-09-15 04:36:20 +00:00
(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.