public
Description: Deploying Rails applications with ShadowPuppet and Capistrano
Homepage: shadow_rails
Clone URL: git://github.com/wrecked/shadow_rails.git
wrecked (author)
Wed Feb 18 11:13:56 -0800 2009
commit  e9f8d545daf7123fd82f109ee02021fb5d292b61
tree    eef4e684aa0fd90c24bbf5dd5eebfa169c6c63be
parent  0cbf8d4e83de30fda29a14d4176d05f0a0108dc9
shadow_rails / application_manifest.rb
100644 16 lines (13 sloc) 0.521 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require File.dirname(__FILE__) + '/lib/rails_manifest.rb'
 
# This class is for a *single* application. This could be easily implemented to load json/yaml.
class ApplicationManifest < RailsManifest
 
  # name your app
  name "birddog"
  domain "birddog.railsmachine.com"
  database_password "secret"
 
  # add your gems and other good stuff here
  def application_packages
    # package "some_awesome_gem", :ensure => :installed, :provider => :gem
    # package "some_awesome_native_package", :ensure => :installed
  end
end