public
Fork of mbailey/deprec
Description: master respository for deprec - deployment recipes for capistrano
Homepage: http://www.deprec.org/
Clone URL: git://github.com/paulreimer/deprec.git
deprec / deprec.gemspec
100644 28 lines (24 sloc) 0.854 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
require 'rubygems'
 
SPEC = Gem::Specification.new do |s|
  s.name = 'deprec'
  s.version = '1.99.24'
  
  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 = 'mike@bailey.net.au'
  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