Sha256: cb5992cff7e51dd65dd5edea3df33c3c956f904b8b674397076ce3d82677e8fb

Contents?: true

Size: 918 Bytes

Versions: 3

Compression:

Stored size: 918 Bytes

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ssh-copy-id/version'

Gem::Specification.new do |gem|
  gem.name          = "ssh-copy-id.rb"
  gem.version       = SSHCopyID::VERSION
  gem.authors       = ["Junegunn Choi"]
  gem.email         = ["junegunn.c@gmail.com"]
  gem.description   = %q{ssh-copy-id in Ruby. Supports copying to multiple servers.}
  gem.summary       = %q{ssh-copy-id in Ruby. Supports copying to multiple servers.}
  gem.homepage      = "https://github.com/junegunn/ssh-copy-id.rb"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]
  gem.add_runtime_dependency 'net-ssh',  '>= 2.6'
  gem.add_runtime_dependency 'highline', '>= 1.6.15'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ssh-copy-id.rb-0.1.2 ssh-copy-id.rb.gemspec
ssh-copy-id.rb-0.1.1 ssh-copy-id.rb.gemspec
ssh-copy-id.rb-0.1.0 ssh-copy-id.rb.gemspec