1
0
Fork 0
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:
Jamis Buck 2006-03-24 02:54:22 +00:00
parent fa05705d81
commit b8bbbb5ef6
2 changed files with 4 additions and 0 deletions

View file

@ -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

View 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(".")}"