class Devise::Getter
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/devise.rbs class Devise::Getter def get: () -> untyped end
def get
Experimental RBS support (using type sampling data from the type_fusion
project).
def get: () -> untyped
This signature was generated using 3 samples from 1 application.
def get # TODO: Remove AS::Dependencies usage when dropping support to Rails < 7. if ActiveSupport::Dependencies.respond_to?(:constantize) ActiveSupport::Dependencies.constantize(@name) else @name.constantize end end
def initialize(name)
def initialize(name) @name = name end