|
Revision 501, 0.9 kB
(checked in by mbailey, 7 months ago)
|
1.99.21 release
|
| Line | |
|---|
| 1 |
require 'rubygems' |
|---|
| 2 |
|
|---|
| 3 |
SPEC = Gem::Specification.new do |spec| |
|---|
| 4 |
spec.name = 'deprec' |
|---|
| 5 |
spec.author = 'Mike Bailey' |
|---|
| 6 |
spec.email = 'mike@bailey.net.au' |
|---|
| 7 |
spec.homepage = 'http://www.deprec.org/' |
|---|
| 8 |
spec.rubyforge_project = 'deprec' |
|---|
| 9 |
spec.version = '1.99.21' |
|---|
| 10 |
spec.summary = 'deployment recipes for capistrano' |
|---|
| 11 |
spec.description = <<-EOF |
|---|
| 12 |
This project provides libraries of Capistrano tasks and extensions to |
|---|
| 13 |
remove the repetative manual work associated with installing services |
|---|
| 14 |
on linux servers. |
|---|
| 15 |
EOF |
|---|
| 16 |
spec.require_path = 'lib' |
|---|
| 17 |
spec.add_dependency('capistrano', '> 2.0.0') |
|---|
| 18 |
candidates = Dir.glob("{bin,docs,lib}/**/*") |
|---|
| 19 |
candidates.concat(%w(CHANGELOG COPYING LICENSE README THANKS)) |
|---|
| 20 |
spec.files = candidates.delete_if do |item| |
|---|
| 21 |
item.include?("CVS") || item.include?("rdoc") |
|---|
| 22 |
end |
|---|
| 23 |
spec.default_executable = "depify" |
|---|
| 24 |
spec.executables = ["depify"] |
|---|
| 25 |
end |
|---|