Skip to content

Instantly share code, notes, and snippets.

@turboladen
Created September 13, 2011 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save turboladen/1214523 to your computer and use it in GitHub Desktop.
Save turboladen/1214523 to your computer and use it in GitHub Desktop.
$:.push File.expand_path("../lib", __FILE__)
require 'ssh_command_runner/version'
Gem::Specification.new do |s|
s.name = "ssh_command_runner"
s.version = SSHCommandRunner::VERSION
s.homepage = SSHCommandRunner::WWW
s.authors = ["Pelco System Software Automation Team"]
s.email = ["system-tools@lists.pelco.org"]
s.description = "This is a RubyGem that simply wraps net-ssh with some " +
"Pelco-specific info and extra methods, thus making SSH access to Pelco " +
"devices quick and easy."
s.summary = "Library for running commands via SSH on remote devices."
s.required_rubygems_version = ">=1.6.2"
s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
s.files = Dir.glob("{lib}/**/*") +
%w(Gemfile History.wiki README.wiki)
s.require_paths = ["lib"]
s.add_runtime_dependency("net-scp", [">= 1.0.2"])
s.add_runtime_dependency("net-ssh", [">= 2.0.17"])
s.add_runtime_dependency("ping", [">= 0"])
s.add_development_dependency("code_statistics", ["~> 0.2.13"])
s.add_development_dependency("rspec", ["~> 2.6.0"])
s.add_development_dependency("metric_fu", ["~> 2.0.1"])
s.add_development_dependency("rake", [">= 0"])
s.add_development_dependency("RedCloth", [">= 0"])
s.add_development_dependency("yard", [">= 0.5.3"])
s.add_development_dependency("bundler", [">= 0"])
s.add_development_dependency("simplecov", [">= 0"])
s.add_development_dependency("simplecov-rcov", [">= 0"])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment