mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
Fix gemspec to depend on rake 0.7.0
git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@4020 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
fa05705d81
commit
b8bbbb5ef6
2 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Fix gemspec to include a dependency on rake 0.7 [Jamis Buck]
|
||||
|
||||
* Added respect for ENV["HOSTS"] that'll be used instead of the roles specified in the task definition [DHH]. Example:
|
||||
|
||||
HOSTS=192.168.0.1 cap setup # one-off setup for that server, doesn't need to be prespecified in the recipes file
|
||||
|
|
|
@ -19,6 +19,8 @@ Gem::Specification.new do |s|
|
|||
s.bindir = "bin"
|
||||
s.executables << "cap"
|
||||
|
||||
s.add_dependency 'rake', ">= 0.7.0"
|
||||
|
||||
s.add_dependency 'net-ssh', ">= #{Capistrano::Version::SSH_REQUIRED.join(".")}"
|
||||
s.add_dependency 'net-sftp', ">= #{Capistrano::Version::SFTP_REQUIRED.join(".")}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue