forked from DAddYE/do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
do.gemspec
23 lines (20 loc) · 1.02 KB
/
do.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/do/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Davide D'Agostino"]
gem.email = ["[email protected]"]
gem.description = %q[DO is a thin framework useful to manage remote servers through ssh.]
gem.summary = %q[DO is a thin framework useful to manage remote servers through ssh.]
gem.homepage = 'https://github.com/daddye/do'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "do"
gem.require_paths = ['lib']
gem.version = DO::VERSION
gem.add_dependency "net-ssh", "~>2.1.4"
gem.add_dependency "net-sftp", "~>2.0.5"
gem.post_install_message = "\e[32m" + ("*" * 60) + "\n"
gem.post_install_message += "*" + "DO - IT! $ doit setup".center(58) + "*" + "\n"
gem.post_install_message += ("*" * 60) + "\n\e[0m"
end