Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
No, seriously. Gem dependencies for real.
  • Loading branch information
jamis committed Jun 28, 2008
1 parent b4771d2 commit ad0a1c2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rdoc
@@ -1,3 +1,8 @@
== 2.4.3 / June 28, 2008

* Fix gem dependencies so gem actually understands them [Jamis Buck]


== 2.4.2 / June 27, 2008

* Specify gem dependencies in rakefile [Jamis Buck]
Expand Down
8 changes: 4 additions & 4 deletions Rakefile
Expand Up @@ -26,9 +26,9 @@ Echoe.new('capistrano', version) do |p|
p.need_zip = true
p.rdoc_pattern = /^(lib|README.rdoc|CHANGELOG.rdoc)/

p.dependencies = ["net-ssh >= 2.0.0",
"net-sftp >= 2.0.0",
"net-scp >= 1.0.0",
"net-ssh-gateway >= 1.0.0",
p.dependencies = ["net-ssh >=2.0.0",
"net-sftp >=2.0.0",
"net-scp >=1.0.0",
"net-ssh-gateway >=1.0.0",
"highline"]
end
2 changes: 1 addition & 1 deletion lib/capistrano/version.rb
Expand Up @@ -6,7 +6,7 @@ module Capistrano
class Version < Net::SSH::Version
MAJOR = 2
MINOR = 4
TINY = 2
TINY = 3

# The current version, as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
Expand Down

0 comments on commit ad0a1c2

Please sign in to comment.