-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgofer.gemspec
More file actions
24 lines (21 loc) · 784 Bytes
/
gofer.gemspec
File metadata and controls
24 lines (21 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "gofer/version"
Gem::Specification.new do |s|
s.name = "gofer"
s.version = Gofer::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Michael Pearson"]
s.email = ["mipearson@gmail.com"]
s.homepage = "https://github.com/mipearson/gofer"
s.summary = %q{run commands on remote servers using SSH}
s.description = %q{
Gofer provides a flexible and reliable model for performing tasks on remote
server using Net::SSH
}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency('net-ssh', '>= 2.0.23')
s.add_dependency('net-scp', '>= 1.0.4')
end