Sha256: 117b0c182738d71f51adc86d62cd9f774481716b8535f372dba8595cfc07278d
Contents?: true
Size: 430 Bytes
Versions: 18
Compression:
Stored size: 430 Bytes
Contents
# frozen_string_literal: true require_relative '../../../bolt/error' require_relative '../../../bolt/config/transport/base' module Bolt class Config module Transport class Remote < Base OPTIONS = %w[ run-on ].freeze DEFAULTS = { "run-on" => "localhost" }.freeze private def filter(unfiltered) unfiltered end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems