1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Fix awkward spacing in gemspec file (closes #3888)

git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@4567 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2006-07-06 04:50:06 +00:00
parent 0ce0b8f562
commit f303df3e4d
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Fix awkward spacing in gemspec file (closes #3888) [grant@antiflux.org]
* Add support for :sudo variable to specify path to sudo (closes #4578) [timothee.peignier@tryphon.org]
* Make previous_release return nil if there are no previous releases (closes #4959) [bdabney@cavoksolutions.com]

View file

@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.name = 'capistrano'
s.version = PKG_VERSION
s.platform = Gem::Platform::RUBY
s.summary = <<-DESC.strip.gsub(/\n/, " ")
s.summary = <<-DESC.strip.gsub(/\n\s+/, " ")
Capistrano 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.