rye 0.8.14 → 0.8.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. data/CHANGES.txt +4 -0
  2. data/lib/rye/cmd.rb +1 -1
  3. data/lib/rye.rb +1 -1
  4. data/rye.gemspec +1 -1
  5. metadata +2 -2
data/CHANGES.txt CHANGED
@@ -1,5 +1,9 @@
1
1
  RYE, CHANGES
2
2
 
3
+ #### 0.8.15 (2010-03-29) #############################
4
+
5
+ * FIXED: "rake" was mapped to "sudo". Closes GH-8 [mjmsmith]
6
+
3
7
  #### 0.8.14 (2010-02-25) #############################
4
8
 
5
9
  * FIXED: rye authorize command now logs in to grab the actual homedir.
data/lib/rye/cmd.rb CHANGED
@@ -43,7 +43,7 @@ module Rye;
43
43
  def tar(*args); __allow('tar', args); end
44
44
 
45
45
  #def kill(*args); __allow('kill', args); end
46
- def rake(*args); __allow('sudo', args); end
46
+ def rake(*args); __allow('rake', args); end
47
47
  def sudo(*args); __allow('sudo', args); end
48
48
  def grep(*args); __allow('grep', args); end
49
49
  def date(*args); __allow('date', args); end
data/lib/rye.rb CHANGED
@@ -42,7 +42,7 @@ require 'esc'
42
42
  module Rye
43
43
  extend self
44
44
 
45
- VERSION = "0.8.14".freeze unless defined?(VERSION)
45
+ VERSION = "0.8.15".freeze unless defined?(VERSION)
46
46
 
47
47
  @@sysinfo = nil
48
48
  @@agent_env = Hash.new # holds ssh-agent env vars
data/rye.gemspec CHANGED
@@ -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.8.14"
4
+ s.version = "0.8.15"
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.8.14
4
+ version: 0.8.15
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: 2010-02-25 00:00:00 -05:00
12
+ date: 2010-03-29 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency