public
Rubygem
Description: Engine Yard specific capistrano recipes
Homepage:
Clone URL: git://github.com/engineyard/eycap.git
eycap /
name age message
file .gitignore Sat Apr 05 11:59:31 -0700 2008 adding db:clone_to_local task [atmos]
file History.txt Fri Jun 26 20:40:04 -0700 2009 removed condition for dbhost [filmprog]
file Manifest.txt Thu Mar 26 08:10:44 -0700 2009 Added modified remote_cache code [Matt Dolian]
file README.txt Thu Jan 22 09:41:00 -0800 2009 recommended capistrano version 2.5.3 for those ... [filmprog]
file Rakefile Fri Jan 09 13:33:55 -0800 2009 added apache tasks and moved version to 0.4.0 [filmprog]
file eycap.gemspec Fri Jun 26 20:40:04 -0700 2009 removed condition for dbhost [filmprog]
directory lib/ Tue Jul 07 00:25:29 -0700 2009 cleaning up description for mongrel:rolling_res... [shai]
directory test/ Mon Feb 04 03:38:22 -0800 2008 Initial import [Jamie van Dyke]
= eycap

== DESCRIPTION:

Engine Yard capistrano tasks for use specifically with Engine Yard slices. They include convenience methods for managed 
a database, mongrel, nginx or other services.

Also included is a deployment strategy, :filtered_remote_cache, which speeds up deployment like :remote_cache, but 
filters out .svn directory which are a security risk and write slowly to shared disks.

== REQUIREMENTS:

* capistrano (http://capify.org) > 2.0.0, but recommended with > 2.2.0

* NOTE: If you're using a git repository we recommend capistrano 2.5.3 and greater.

== INSTALL:

  $ gem sources -a http://gems.github.com/ (you only need to do this once)
  $ gem install engineyard-eycap

== SOURCE:
 
eycap's git repo is available on GitHub, which can be browsed at:
 
  http://github.com/engineyard/eycap
   
and cloned from:
   
  git://github.com/engineyard/eycap.git

== USAGE:

= Include in capistrano

In your deploy.rb, simply include this line at the top:

require 'eycap/recipes'

= Filtered remote cache

To use filtered_remote_cache, simply:

set :deploy_via, :filtered_remote_cache

== LICENSE:

Copyright (c) 2008 Engine Yard

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.