class DBus::Authentication::Mechanism

Base class of authentication mechanisms

Public Instance Methods

name() click to toggle source

Uppercase mechanism name, as sent to the server @return [String]

   # File lib/dbus/auth.rb
34 def name
35   self.class.to_s.upcase.sub(/.*::/, "")
36 end