From 3fc8639b78417cffc112916537bb8249f8880394 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Wed, 3 Aug 2005 12:59:03 +0000 Subject: Initial commit of the new switchtower utility git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1967 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- switchtower/switchtower.gemspec | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 switchtower/switchtower.gemspec (limited to 'switchtower/switchtower.gemspec') diff --git a/switchtower/switchtower.gemspec b/switchtower/switchtower.gemspec new file mode 100644 index 0000000000..1371a67493 --- /dev/null +++ b/switchtower/switchtower.gemspec @@ -0,0 +1,28 @@ +require './lib/switchtower/version' + +Gem::Specification.new do |s| + + s.name = 'switchtower' + s.version = SwitchTower::Version::STRING + s.platform = Gem::Platform::RUBY + s.summary = <<-DESC.strip.gsub(/\n/, " ") + SwitchTower is a framework and utility for executing commands in parallel + on multiple remote machines, via SSH. The primary goal is to simplify and + automate the deployment of web applications. + DESC + + s.files = Dir.glob("{bin,lib,examples,test}/**/*") + s.files.concat %w(README MIT-LICENSE ChangeLog) + s.require_path = 'lib' + s.autorequire = 'switchtower' + + s.bindir = "bin" + s.executables << "switchtower" + + s.add_dependency 'net-ssh', '>= 1.0.2' + + s.author = "Jamis Buck" + s.email = "jamis@37signals.com" + s.homepage = "http://www.rubyonrails.com" + +end -- cgit v1.2.3