forked from mbailey/deprec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeprec.gemspec
28 lines (25 loc) · 902 Bytes
/
deprec.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
require 'rubygems'
SPEC = Gem::Specification.new do |s|
s.name = 'deprec'
s.version = '2.1.20'
s.authors = ['Mike Bailey']
s.description = <<-EOF
This project provides libraries of Capistrano tasks and extensions to
remove the repetative manual work associated with installing services
on linux servers.
EOF
s.email = '[email protected]'
s.homepage = 'http://www.deprec.org/'
s.rubyforge_project = 'deprec'
s.summary = 'deployment recipes for capistrano'
s.require_paths = ['lib']
s.add_dependency('capistrano', '> 2.5.0')
s.add_dependency('capistrano-ext', '>= 1.2.1')
candidates = Dir.glob("{bin,docs,lib}/**/*")
candidates.concat(%w(CHANGELOG COPYING LICENSE README THANKS))
s.files = candidates.delete_if do |item|
item.include?("CVS") || item.include?("rdoc")
end
s.default_executable = "depify"
s.executables = ["depify"]
end