engineyard / eycap

Engine Yard specific capistrano recipes

This URL has Read+Write access

Tyler Bird (author)
Wed Oct 07 08:07:44 -0700 2009
commit  4dc56f918a09d38f83229b845e5acd62da411955
tree    0b79cceaed803daf5b175f581ba8bd3ef36b8954
parent  9846e528de1c77b3a88f1acacca91cd9796be898
eycap /
name age message
file .gitignore Sat Apr 05 11:59:31 -0700 2008 adding db:clone_to_local task [atmos]
file History.txt Loading commit data...
file Manifest.txt Mon Aug 31 08:39:11 -0700 2009 version bump [Tyler Bird]
file README.txt
file Rakefile
file eycap.gemspec
directory lib/
directory test/ Mon Feb 04 03:38:22 -0800 2008 Initial import [Jamie van Dyke]
README.txt
= 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.