class ActiveSupport::Dependencies::ClassCache
Public Class Methods
new()
click to toggle source
# File lib/active_support/dependencies.rb, line 569 def initialize @store = Concurrent::Map.new end
Public Instance Methods
clear!()
click to toggle source
# File lib/active_support/dependencies.rb, line 599 def clear! @store.clear end
empty?()
click to toggle source
# File lib/active_support/dependencies.rb, line 573 def empty? @store.empty? end
get(key)
click to toggle source
# File lib/active_support/dependencies.rb, line 581 def get(key) key = key.name if key.respond_to?(:name) @store[key] ||= Inflector.constantize(key) end
Also aliased as: []
key?(key)
click to toggle source
# File lib/active_support/dependencies.rb, line 577 def key?(key) @store.key?(key) end
safe_get(key)
click to toggle source
# File lib/active_support/dependencies.rb, line 587 def safe_get(key) key = key.name if key.respond_to?(:name) @store[key] ||= Inflector.safe_constantize(key) end
store(klass)
click to toggle source
# File lib/active_support/dependencies.rb, line 592 def store(klass) return self unless klass.respond_to?(:name) raise(ArgumentError, 'anonymous classes cannot be cached') if klass.name.empty? @store[klass.name] = klass self end