aboutsummaryrefslogtreecommitdiffstats
path: root/switchtower/switchtower.gemspec
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-08-30 20:53:32 +0000
committerJamis Buck <jamis@37signals.com>2005-08-30 20:53:32 +0000
commit6b1864a048ffb9343d4658ec11c32494d7f038db (patch)
tree6c1ad3f9131d644afab6cc6188001cfb73775e33 /switchtower/switchtower.gemspec
parentbb7f60ca1cd191fd775fef261b4d2bc7af223604 (diff)
downloadrails-6b1864a048ffb9343d4658ec11c32494d7f038db.tar.gz
rails-6b1864a048ffb9343d4658ec11c32494d7f038db.tar.bz2
rails-6b1864a048ffb9343d4658ec11c32494d7f038db.zip
Move switchtower to the tools directory, to decouple it from rails
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2074 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'switchtower/switchtower.gemspec')
-rw-r--r--switchtower/switchtower.gemspec28
1 files changed, 0 insertions, 28 deletions
diff --git a/switchtower/switchtower.gemspec b/switchtower/switchtower.gemspec
deleted file mode 100644
index 679153aeb0..0000000000
--- a/switchtower/switchtower.gemspec
+++ /dev/null
@@ -1,28 +0,0 @@
-require './lib/switchtower/version'
-
-Gem::Specification.new do |s|
-
- s.name = 'switchtower'
- s.version = PKG_VERSION
- 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