-
Notifications
You must be signed in to change notification settings - Fork 19
/
capistrano-postgresql.gemspec
29 lines (24 loc) · 1.19 KB
/
capistrano-postgresql.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'capistrano/postgresql/version'
Gem::Specification.new do |gem|
gem.name = 'capistrano-postgresql'
gem.version = Capistrano::Postgresql::VERSION
gem.authors = ['Bruno Sutic', 'Ruben Stranders']
gem.email = ['[email protected]', '[email protected]']
gem.description = <<-EOF.gsub(/^\s+/, '')
Capistrano tasks for PostgreSQL configuration and management for Rails
apps. Manages `database.yml` template on the server.
Works with Capistrano 3 (only!). For Capistrano 2 support see:
https://github.com/bruno-/capistrano2-postgresql
EOF
gem.summary = %q{Creates application database user and `database.yml` on the server. No SSH login required!}
gem.homepage = 'https://github.com/capistrano-plugins/capistrano-postgresql'
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.require_paths = ['lib']
gem.add_dependency 'capistrano', '>= 3.0'
gem.add_dependency 'sshkit', '>= 1.17.0' # 1.17.0 required for log/password redaction
gem.add_development_dependency 'rake'
end