forked from darkside/capistrano-recipes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
30 lines (27 loc) · 1.04 KB
/
Rakefile
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
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "dark-capistrano-recipes"
gem.summary = %Q{Darkside's Capistrano recipes}
gem.description = 'Extend the Capistrano gem with these useful recipes'
gem.email = "leonardobighetti@gmail.com"
gem.homepage = "http://github.com/darkside/capistrano-recipes"
gem.authors = ["Phil Misiowiec", "Leonardo Bighetti"]
gem.add_dependency('capistrano', ['>= 2.5.9'])
gem.add_dependency('capistrano-ext', ['>= 1.2.1'])
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'capistrano-recipes'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end