-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcapistrano-monit-recipes.gemspec
More file actions
executable file
·29 lines (24 loc) · 1.09 KB
/
Copy pathcapistrano-monit-recipes.gemspec
File metadata and controls
executable file
·29 lines (24 loc) · 1.09 KB
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/monit/version'
Gem::Specification.new do |gem|
gem.name = "capistrano-monit-recipes"
gem.version = Capistrano::Monit::VERSION
gem.date = '2014-07-31'
gem.authors = ["Louis Houette"]
gem.email = ["louishouette@gmail.com"]
gem.description = <<-EOF.gsub(/^\s+/, '')
Capistrano tasks for Monit configuration and management for Rails
apps. Manages `monitrc` template on the server, and Nginx,
Postgresql and Unicorn processes.
Works with Capistrano 3 (only).
EOF
gem.summary = %q{Creates Monit configuration file on the server and templates for supervising Nginx, Postgresql and Unicorn processes}
gem.homepage = "https://github.com/louishouette/capistrano-monit-recipes"
gem.license = "MIT"
gem.files = `git ls-files`.split($/)
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'capistrano', '~> 3.0'
gem.add_development_dependency 'rake', '~> 0'
end