class Pantry::Communication::Security::NullSecurity

The no-security security strategy

Public Class Methods

client() click to toggle source
# File lib/pantry/communication/security/null_security.rb, line 8
def self.client
  new
end
server() click to toggle source
# File lib/pantry/communication/security/null_security.rb, line 12
def self.server
  new
end

Public Instance Methods

configure_socket(socket) click to toggle source
# File lib/pantry/communication/security/null_security.rb, line 20
def configure_socket(socket)
  # no-op
end
create_client() click to toggle source
# File lib/pantry/communication/security/null_security.rb, line 24
def create_client
  {}
end