class Train::Transports::Docker::Connection::OS

Public Class Methods

new(backend) click to toggle source
Calls superclass method
# File lib/train/transports/docker.rb, line 96
def initialize(backend)
  # hardcoded to unix/linux for now, until other operating systems
  # are supported
  super(backend, { family: 'unix' })
end