metadata.rb 1.4 KB

123456789101112131415161718
  1. maintainer "Opscode, Inc."
  2. maintainer_email "cookbooks@opscode.com"
  3. license "Apache 2.0"
  4. description "Deploys and configures a variety of applications defined from databag 'apps'"
  5. long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
  6. version "0.7.0"
  7. recipe "application", "Loads application databags and selects recipes to use"
  8. recipe "application::java", "Deploys a Java web application WAR specified in a data bag with the remote_file resource"
  9. recipe "application::passenger-nginx", "Installs Ruby Enterprise with Passenger under Nginx"
  10. recipe "application::passenger_apache2", "Sets up a deployed Rails application as a Passenger virtual host in Apache2"
  11. recipe "application::rails", "Deploys a Rails application specified in a data bag with the deploy_revision resource"
  12. recipe "application::rails_nginx_ree_passenger", "Deprecated recipe that deployed a rails application under Ruby Enterprise Edition, Passenger and Nginx"
  13. recipe "application::tomcat", "Sets up the deployed Java application with Tomcat as the servlet container"
  14. recipe "application::unicorn", "Sets up the deployed Rails application with Unicorn as the web server"
  15. %w{ ruby_enterprise passenger_enterprise runit unicorn apache2 passenger_apache2 tomcat}.each do |cb|
  16. depends cb
  17. end