rye 0.6.5 → 0.6.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGES.txt +5 -0
  2. data/lib/rye/box.rb +2 -1
  3. data/rye.gemspec +1 -1
  4. metadata +2 -2
@@ -6,6 +6,11 @@ TODO
6
6
  * Fingerprints: ssh-keygen -l -f id_rsa_repos.pub
7
7
 
8
8
 
9
+ #### 0.6.6 (2009-05-21) #############################
10
+
11
+ * CHANGE: Key management is handled by ssh-agent again (instead of Net::SSH)
12
+
13
+
9
14
  #### 0.6.5 (2009-05-10) #############################
10
15
 
11
16
  * CHANGE: Default exit code is now 0 instead of -1
@@ -104,7 +104,8 @@ module Rye
104
104
 
105
105
  # We don't want Net::SSH to handle the keypairs. This may change
106
106
  # but for we're letting ssh-agent do it.
107
- #@opts.delete(:keys)
107
+ # TODO: Check if this should ot should not be enabled.
108
+ @opts.delete(:keys)
108
109
 
109
110
  # From: capistrano/lib/capistrano/cli.rb
110
111
  STDOUT.sync = true # so that Net::SSH prompts show up
@@ -1,7 +1,7 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = "rye"
3
3
  s.rubyforge_project = "rye"
4
- s.version = "0.6.5"
4
+ s.version = "0.6.6"
5
5
  s.summary = "Rye: Safely run SSH commands on a bunch of machines at the same time (from Ruby)."
6
6
  s.description = s.summary
7
7
  s.author = "Delano Mandelbaum"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rye
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.5
4
+ version: 0.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-20 00:00:00 -04:00
12
+ date: 2009-05-21 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency