mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
cac943e891
I noticed these files all had strings such as "", " ", "_" that were allocated each time some common methods were called, over 1000x on a page in my app. This comment freezes all of these strings such that they're only allocated once, saving many KB of memory allocation.
10 lines
336 B
Ruby
10 lines
336 B
Ruby
# frozen_string_literal: true
|
|
module SimpleForm
|
|
module Wrappers
|
|
autoload :Builder, 'simple_form/wrappers/builder'
|
|
autoload :Many, 'simple_form/wrappers/many'
|
|
autoload :Root, 'simple_form/wrappers/root'
|
|
autoload :Single, 'simple_form/wrappers/single'
|
|
autoload :Leaf, 'simple_form/wrappers/leaf'
|
|
end
|
|
end
|