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.
- data/README.rdoc +1 -1
- data/bin/rsql +4 -1
- data/lib/rsql.rb +1 -1
- metadata +5 -5
data/README.rdoc
CHANGED
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
|
|
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
|
data/lib/rsql.rb
CHANGED
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:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
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-
|
|
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://
|
|
120
|
+
homepage: https://rubygems.org/gems/rsql
|
|
121
121
|
licenses: []
|
|
122
122
|
|
|
123
123
|
post_install_message:
|