simple_connection.rb 222 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 # tiny example so you can play with the sshkit or make a failing example for an issue require 'bundler/setup' require 'sshkit' require 'sshkit/dsl' include SSHKit::DSL on [ENV.fetch("HOST")] do execute "echo hello" end