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

Version Path
bolt-4.0.0 lib/bolt/config/transport/remote.rb
bolt-3.29.0 lib/bolt/config/transport/remote.rb
bolt-3.28.0 lib/bolt/config/transport/remote.rb
bolt-3.27.4 lib/bolt/config/transport/remote.rb
bolt-3.27.2 lib/bolt/config/transport/remote.rb
bolt-3.27.1 lib/bolt/config/transport/remote.rb
bolt-3.26.2 lib/bolt/config/transport/remote.rb
bolt-3.26.1 lib/bolt/config/transport/remote.rb
bolt-3.25.0 lib/bolt/config/transport/remote.rb
bolt-3.24.0 lib/bolt/config/transport/remote.rb
bolt-3.23.1 lib/bolt/config/transport/remote.rb
bolt-3.23.0 lib/bolt/config/transport/remote.rb
bolt-3.22.1 lib/bolt/config/transport/remote.rb
bolt-3.22.0 lib/bolt/config/transport/remote.rb
bolt-3.21.0 lib/bolt/config/transport/remote.rb
bolt-3.20.0 lib/bolt/config/transport/remote.rb
bolt-3.19.0 lib/bolt/config/transport/remote.rb
bolt-3.18.0 lib/bolt/config/transport/remote.rb