-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathem-ssh.gemspec
25 lines (24 loc) · 1.13 KB
/
em-ssh.gemspec
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
require File.expand_path("../lib/em-ssh/version", __FILE__)
require "rubygems"
::Gem::Specification.new do |s|
s.name = "em-ssh"
s.version = EventMachine::Ssh::VERSION
s.platform = ::Gem::Platform::RUBY
s.authors = ['Caleb Crane', 'kt97679']
s.email = ['em-ssh@gru.is']
s.homepage = "http://github.com/gruis/em-ssh"
s.summary = 'An EventMachine compatible net-ssh'
s.description = ''
s.required_rubygems_version = ">= 1.3.6"
s.files = Dir["lib/**/*.rb", "bin/*", "*.md"]
s.require_paths = ['lib']
s.executables = Dir["bin/*"].map{|f| f.split("/")[-1] }
s.license = 'MIT'
# If you have C extensions, uncomment this line
# s.extensions = "ext/extconf.rb"
s.add_dependency 'eventmachine', '~> 1.2'
s.add_dependency "net-ssh", '>= 5.0.2'
# Not really necessary, but used in bin/em-ssh and bin/em-ssh-shell
s.add_development_dependency 'ruby-termios', '~> 0.9'
s.add_development_dependency "highline", '~> 1.6'
end