aboutsummaryrefslogtreecommitdiffstats
path: root/switchtower/switchtower.gemspec
blob: 679153aeb0e4e244a56eee19978876b8d960a961 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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