class Qa::Authorities::Local::Registry::RegistryEntry
Public Class Methods
Source
# File lib/qa/authorities/local/registry.rb, line 35 def initialize(subauthority, class_name) @subauthority = subauthority @class_name = class_name end
Public Instance Methods
Source
# File lib/qa/authorities/local/registry.rb, line 44 def instance klass.new(@subauthority) end
Source
# File lib/qa/authorities/local/registry.rb, line 40 def klass @class_name.constantize end