Created
September 13, 2011 17:59
-
-
Save turboladen/1214523 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$:.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 = ["[email protected]"] | |
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