kondate 0.4.11 → 0.4.12

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d3c0375b68da8ec486a8bafccd66ee1a43d3a0fa
4
- data.tar.gz: cb65e3d25f445b5eda6d296977fe90c8dc9c7d34
3
+ metadata.gz: 606429d6834bb0f4e739ba012173f6a3b302fba8
4
+ data.tar.gz: 53ddebe8bf60450f6412f3e368ed418e51240b0d
5
5
  SHA512:
6
- metadata.gz: b715ddf6c25844cf64489ad6f617f3cfd3af80cf65f1aad24f2b95bf8abcb49afc83042ce05125c3693047958348dc8891dc998f7fece3f6e088ef8503a3a198
7
- data.tar.gz: d09d2b54a31feccf52b61038a559b57163b895c91974c52556f6d2dc460f33a003063d3e6887136a9f0788b828925c3512f91160b9b2e56a5f6f0bc05f18b950
6
+ metadata.gz: 0dc7e9269274e9ba19fc81ea7b2cbb5721907b7fdfd28ec83ff04b2f4385f0bc7521a8ad1aa1b983a4a45f111af0bfd115f53624a0e345c4d3750eb7cee8a92d
7
+ data.tar.gz: afd4ebb456048a3cc5c111ddeff8458fce0d278eaffceb969fe5e8d196257ba3b9afcac2a09b67eb3081d2711deb7f9d4c2bd3d8ad621ab492a313c26b08045d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.4.12 (2017-03-17)
2
+
3
+ Enhancements:
4
+
5
+ * Output Net::SSH::Config.for(host) as debug log
6
+
1
7
  # 0.4.11 (2017-03-09)
2
8
 
3
9
  Enhancements:
data/lib/kondate/cli.rb CHANGED
@@ -146,6 +146,7 @@ module Kondate
146
146
  command << " --vagrant"
147
147
  else
148
148
  config = Net::SSH::Config.for(host)
149
+ $stdout.puts "DEBUG: Net::SSH::Config.for(#{host.inspect}) => #{config}" if @options[:debug]
149
150
  command << " -u #{properties['ssh_user'] || config[:user] || ENV['USER']}"
150
151
  command << " -i #{(properties['ssh_keys'] || []).first || (config[:keys] || []).first || (File.exist?(File.expand_path('~/.ssh/id_dsa')) ? '~/.ssh/id_dsa' : '~/.ssh/id_rsa')}"
151
152
  command << " -p #{properties['ssh_port'] || config[:port] || 22}"
@@ -1,3 +1,3 @@
1
1
  module Kondate
2
- VERSION = "0.4.11"
2
+ VERSION = "0.4.12"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kondate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.11
4
+ version: 0.4.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - sonots
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-03-09 00:00:00.000000000 Z
11
+ date: 2017-03-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae