scutil 0.4.4 → 0.4.5

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 (4) hide show
  1. data/CHANGELOG.rdoc +4 -0
  2. data/lib/scutil.rb +2 -2
  3. data/scutil.gemspec +2 -2
  4. metadata +2 -2
@@ -1,6 +1,10 @@
1
1
 
2
2
  ==Changelog
3
3
 
4
+ ===0.4.5 | 2012-05-25
5
+
6
+ * Minor bug when running scutil with Ruby 1.8.
7
+
4
8
  ===0.4.4 | 2012-05-24
5
9
 
6
10
  * Added Net::SCP wrapper support to the module functions.
@@ -29,7 +29,7 @@ require 'scutil/connection_cache'
29
29
  require 'scutil/system_connection'
30
30
 
31
31
  module Scutil
32
- SCUTIL_VERSION = '0.4.4'
32
+ SCUTIL_VERSION = '0.4.5'
33
33
 
34
34
  # By default, buffer 10M of data before writing.
35
35
  DEFAULT_OUTPUT_BUFFER_SIZE = 0xA00000
@@ -291,7 +291,7 @@ Define in :scutil_sudo_passwd or check :scutil_sudo_failed_passwd for the correc
291
291
  # Check for an existing connection in the cache based on _hostname_. If the
292
292
  # _hostname_ exists find a suitable connection. Otherwise establish a
293
293
  # connection and add it to the pool.
294
- def find_connection(hostname, username, pty_needed=false, options)
294
+ def find_connection(hostname, username, pty_needed, options)
295
295
  conn = nil
296
296
  begin
297
297
  if (Scutil.connection_cache.exists?(hostname))
@@ -1,8 +1,8 @@
1
1
 
2
2
  Gem::Specification.new do |s|
3
3
  s.name = 'scutil'
4
- s.version = '0.4.4'
5
- s.date = '2012-05-24'
4
+ s.version = '0.4.5'
5
+ s.date = '2012-05-25'
6
6
  s.summary = 'SSH Command UTILity'
7
7
  s.description = <<-EOF
8
8
  Scutil is a library for conveniently executing commands
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scutil
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-24 00:00:00.000000000 Z
12
+ date: 2012-05-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: net-ssh