public
Description: ruby-xen is a ruby library for managing Xen virtual servers
Homepage:
Clone URL: git://github.com/mbailey/ruby-xen.git
name age message
file .gitignore Sun Feb 01 23:16:38 -0800 2009 Ignore Capfile [mbailey]
file CHANGELOG Mon Mar 16 05:19:46 -0700 2009 Bumped version to 0.1.2 [mbailey]
file History.txt Sat Sep 20 08:11:49 -0700 2008 bumped release to 0.0.3 [mbailey]
file Manifest.txt Mon Nov 10 21:58:14 -0800 2008 Added classes * Lvm - used to manage logical vo... [mbailey]
file README.rdoc Sun Feb 01 23:13:41 -0800 2009 Changed to MIT license [mbailey]
file Rakefile Mon Sep 15 05:22:18 -0700 2008 I don't use hoe [mbailey]
file TODO.txt Wed Feb 04 22:51:11 -0800 2009 Added todo [mbailey]
directory bin/ Mon Jan 26 17:56:30 -0800 2009 Updated with task to backup slice [mbailey]
directory lib/ Mon Mar 16 05:17:04 -0700 2009 Wait for Xen instance to shutdown before backin... [mbailey]
directory rails/ Mon Sep 08 08:21:02 -0700 2008 Initial commit [mbailey]
file ruby-xen.gemspec Mon Mar 16 05:19:46 -0700 2009 Bumped version to 0.1.2 [mbailey]
directory spec/ Tue Sep 16 19:42:26 -0700 2008 Removed old 'domain' files that should have bee... [mbailey]
directory test/ Tue Sep 23 21:54:59 -0700 2008 Returned to indenty goodness. While "class Xen... [mbailey]
README.rdoc

ruby-xen (born sep 2008 - still immature!)

github.com/mbailey/ruby-xen

DESCRIPTION:

ruby-xen is a ruby library for managing Xen virtual servers. It currently wraps the command line tools provided by Xen (xm) as well as Steve Kemps excellent Xen-tools [www.xen-tools.org/software/xen-tools/].

ruby-xen is packaged as a Rails Gem which means you can require it from a Ruby on Rails project and make use of the classes it provides.

ruby-xen can also be used by ruby code or from irb.

FEATURES/PROBLEMS:

  • FIX (list of features or problems)

SYNOPSIS:

  require 'rubygems'
  require 'ruby-xen'
  include Xen

  slice = Slice.find :example
  slice.running? # true
  slice.stop
  slice.running? # false
  slice.start
  slice.running? # true

  slice.backups   # => [#<Xen::Backup:0xb7a96520 @name=:example, @version="20090118">]
  s.create_backup # => #<Xen::Backup:0xb7a922a4 @name=:example, @version="20090123">

REQUIREMENTS:

ruby-xen must be run as root as it uses Xen’s ‘xm’ command. xen-tools must be installed (www.xen-tools.org/software/xen-tools/)

INSTALL:

sudo gem install ruby-xen

LICENSE:

(The MIT License)

Copyright © 2008-2009 Mike Bailey

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.