rsql 0.1.8 → 0.1.9

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/README.rdoc +1 -1
  2. data/bin/rsql +4 -1
  3. data/lib/rsql.rb +1 -1
  4. metadata +5 -5
@@ -1,6 +1,6 @@
1
1
  = RSQL
2
2
 
3
- Homepage:: https://github.com/bradrf/rsql
3
+ Homepage:: https://rubygems.org/gems/rsql
4
4
 
5
5
  == DESCRIPTION
6
6
 
data/bin/rsql CHANGED
@@ -242,10 +242,13 @@ if ssh_host
242
242
  ssh = nil
243
243
  ssh_thread = Thread.new do
244
244
  opts = {:timeout => 15}
245
- opts.merge!(Net::SSH::Config.load(ssh_config, ssh_host)) if ssh_config
245
+ opts[:config] = ssh_config if ssh_config
246
246
  if verbose
247
247
  opts[:verbose] = :debug
248
248
  puts "SSH options: #{opts.inspect}"
249
+ if ssh_config
250
+ puts "SSH config: #{Net::SSH::Config.load(ssh_config, ssh_host).inspect}"
251
+ end
249
252
  end
250
253
  begin
251
254
  opts[:password] = ssh_password if ssh_password
@@ -2,7 +2,7 @@
2
2
  # Commands using an EvalContext for handling recipes.
3
3
  #
4
4
  module RSQL
5
- VERSION = '0.1.8'
5
+ VERSION = '0.1.9'
6
6
 
7
7
  require 'rsql/mysql'
8
8
  require 'rsql/mysql_results'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rsql
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 8
10
- version: 0.1.8
9
+ - 9
10
+ version: 0.1.9
11
11
  platform: ruby
12
12
  authors:
13
13
  - Brad Robel-Forrest
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-06-03 00:00:00 Z
18
+ date: 2011-06-05 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: net-ssh
@@ -117,7 +117,7 @@ files:
117
117
  - test/test_eval_context.rb
118
118
  - test/test_mysql_results.rb
119
119
  - lib/rsql/mysql.rb
120
- homepage: https://github.com/bradrf/rsql
120
+ homepage: https://rubygems.org/gems/rsql
121
121
  licenses: []
122
122
 
123
123
  post_install_message: