public
Rubygem
Description: Engine Yard specific capistrano recipes
Clone URL: git://github.com/engineyard/eycap.git
commit  c4543b9bb5f013d72556ce4e5876f4718a9f1c16
tree    789aa4a8efba2915a6b43e5a5b3c67f9f2344d2b
parent  06599a2a454f6640d932053f7720ec45584edb44
eycap /
name age message
file .gitignore Sat Apr 05 11:59:31 -0700 2008 adding db:clone_to_local task [atmos]
file History.txt Thu May 08 04:19:23 -0700 2008 rake install_gem_no_doc [Dylan Egan]
file Manifest.txt Sun May 11 19:52:55 -0700 2008 Add juggernaut recipes [halorgium]
file README.txt Wed May 07 01:12:47 -0700 2008 More preparation for github gem. [Dylan Egan]
file Rakefile Thu May 08 04:19:23 -0700 2008 rake install_gem_no_doc [Dylan Egan]
file eycap.gemspec Sun May 11 20:29:10 -0700 2008 Add the juggernaut recipes to the main loading ... [halorgium]
directory lib/ Sun May 11 20:29:10 -0700 2008 Add the juggernaut recipes to the main loading ... [halorgium]
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

== INSTALL:

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

== SOURCE:
 
eycaps 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.