# -*- encoding: utf-8 -*- # stub: capistrano-passenger 0.1.0 ruby lib Gem::Specification.new do |s| s.name = "capistrano-passenger".freeze s.version = "0.1.0".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Isaac Betesh".freeze] s.date = "2015-06-10" s.description = "Passenger support for Capistrano 3.x".freeze s.email = ["iybetesh@gmail.com".freeze] s.files = [".gitignore".freeze, "CHANGELOG.md".freeze, "Gemfile".freeze, "LICENSE.txt".freeze, "README.md".freeze, "Rakefile".freeze, "capistrano-passenger.gemspec".freeze, "lib/capistrano-passenger.rb".freeze, "lib/capistrano/passenger.rb".freeze, "lib/capistrano/passenger/no_hook.rb".freeze, "lib/capistrano/passenger/version.rb".freeze, "lib/capistrano/tasks/deploy_passenger.cap".freeze, "lib/capistrano/tasks/passenger.cap".freeze] s.homepage = "https://github.com/capistrano/passenger".freeze s.licenses = ["MIT".freeze] s.post_install_message = "==== Release notes for capistrano-passenger ====\npassenger once had only one way to restart: `touch tmp/restart.txt`\nBeginning with passenger v4.0.33, a new way was introduced: `passenger-config restart-app`\n\nThe new way to restart is not so practical for everyone, since it may require your deployment user to have sudo access.\nWhile we eagerly await the release of passenger v5.0.10, which will make the new method possible without sudo access,\nwe recognize that not everyone is ready for this change yet.\n\ncapistrano-passenger gives you the flexibility to choose your restart approach, or to rely on reasonable defaults.\n\nIf you want to restart using `touch tmp/restart.txt`, add this to your config/deploy.rb:\n\n set :passenger_restart_with_touch, true\n\nIf you want to restart using `passenger-config restart-app`, add this to your config/deploy.rb:\n\n set :passenger_restart_with_touch, false # Note that `nil` is NOT the same as `false` here\n\nIf you don't set `:passenger_restart_with_touch`, capistrano-passenger will check what version of passenger you are running\nand use `passenger-config restart-app` if it is available in that version.\n\nIf you are running passenger in standalone mode, it is possible for you to put passenger in your\nGemfile and rely on capistrano-bundler to install it with the rest of your bundle.\nIf you are installing passenger during your deployment AND you want to restart using `passenger-config restart-app`,\nyou need to set `:passenger_in_gemfile` to `true` in your `config/deploy.rb`.\n================================================\n".freeze s.rubygems_version = "3.5.10".freeze s.summary = "Passenger support for Capistrano 3.x".freeze s.specification_version = 4 s.add_runtime_dependency(%q.freeze, ["~> 3.0".freeze]) s.add_development_dependency(%q.freeze, ["~> 1.6".freeze]) s.add_development_dependency(%q.freeze, [">= 0".freeze]) end