Skip to content
  • This project
    • Loading...
  • Sign in

Jeremy Groot / stellervista-Intranet

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • stellervista-Intranet
  • ..
  • lib
  • sshkit.rb
  • Jeff Balicki's avatar
    WP and UM updates · 7c037e3f ...
    7c037e3f
    Signed-off-by: Jeff <jeff@gotenzing.com>
    Jeff Balicki committed 2024-01-11 16:04:06 -0500
sshkit.rb 417 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
module SSHKit

  StandardError = Class.new(::StandardError)

  class << self

    attr_writer :config

    def configure
      @@config ||= Configuration.new
      yield config
    end

    def config
      @@config ||= Configuration.new
    end

    def reset_configuration!
      @@config = nil
    end

  end

  # Used for redaction of a certain argument
  module Redaction end

end

require_relative 'sshkit/all'