module Airbrussh

rubocop:disable Style/AsciiComments

This is the formatter class that conforms to the SSHKit Formatter API and provides the airbrussh functionality to SSHKit. Note however that this class doesn't do much by itself; instead, it delegates to the ConsoleFormatter and (optionally) the LogFileFormatter, which handle the bulk of the logic.

Constants

VERSION

Public Class Methods

configuration(options={}) click to toggle source
# File lib/airbrussh.rb, line 6
def self.configuration(options={})
  return options if options.is_a?(::Airbrussh::Configuration)
  @configuration ||= Configuration.new
  @configuration.apply_options(options)
end
configure() { |configuration| ... } click to toggle source
# File lib/airbrussh.rb, line 12
def self.configure
  yield(configuration)
end