forked from augustash/capistrano-ash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
26 lines (23 loc) · 923 Bytes
/
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
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "capistrano-ash"
gemspec.summary = "Useful task libraries for August Ash recipes for Capistrano"
gemspec.description = "August Ash recipes for Capistrano"
gemspec.email = "[email protected]"
gemspec.homepage = "https://github.com/augustash/capistrano-ash"
gemspec.authors = ["August Ash"]
# Gem dependencies
gemspec.add_dependency('capistrano', '~> 2.15.5')
gemspec.add_dependency('capistrano-ext', '~> 1.2')
gemspec.add_dependency('railsless-deploy', '~> 1.1')
gemspec.add_dependency('capistrano_colors', '~> 0.5')
# Net-SSH issues
# see https://github.com/capistrano/capistrano/issues/927
gemspec.add_dependency('net-ssh', '2.7.0')
end
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end