Sha256: f81762fbbeacf5cb125213add8b22880b5daf8ee05f18eacd91644a12b9b52d1
Contents?: true
Size: 491 Bytes
Versions: 8
Compression:
Stored size: 491 Bytes
Contents
# frozen_string_literal: true require 'bolt/error' require 'bolt/config/transport/base' module Bolt class Config module Transport class Remote < Base OPTIONS = { "run-on" => { type: String, desc: "The proxy target that the task executes on." } }.freeze DEFAULTS = { "run-on" => "localhost" }.freeze private def filter(unfiltered) unfiltered end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems