-
Notifications
You must be signed in to change notification settings - Fork 81
/
capistrano-unicorn-nginx.gemspec
32 lines (26 loc) · 1.35 KB
/
capistrano-unicorn-nginx.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'capistrano/unicorn_nginx/version'
Gem::Specification.new do |gem|
gem.name = "capistrano-unicorn-nginx"
gem.version = Capistrano::UnicornNginx::VERSION
gem.authors = ["Ruben Stranders", "Bruno Sutic"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = <<-EOF.gsub(/^\s+/, '')
Capistrano tasks for automatic and sensible unicorn + nginx configuraion.
Enables zero downtime deployments of Rails applications. Configs can be
copied to the application using generators and easily customized.
Works *only* with Capistrano 3+. For Capistrano 2 try version 0.0.8 of this
gem: http://rubygems.org/gems/capistrano-nginx-unicorn
EOF
gem.summary = "Capistrano tasks for automatic and sensible unicorn + nginx configuraion."
gem.homepage = "https://github.com/bruno-/capistrano-unicorn-nginx"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "capistrano", ">= 3.1"
gem.add_dependency "sshkit", ">= 1.2.0"
gem.add_development_dependency "rake"
end