forked from mbailey/deprec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deprec.gemspec
27 lines (24 loc) · 854 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
require 'rubygems'
SPEC = Gem::Specification.new do |s|
s.name = 'deprec'
s.version = '1.99.27'
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.0.0')
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