aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/i18n.rb
Commit message (Collapse)AuthorAgeFilesLines
* I18n is always loaded on boot by Active Model or Action Pack, so no need for ↵José Valim2010-11-201-1/+0
| | | | supporting lazy hooks.
* Require lazy_load_hooks.rb with the correct path.Carl Lerche2010-09-141-1/+1
|
* require i18n in transliterate so it can run in isolated situationsJack Dempsey2010-09-141-0/+1
|
* I18n.reload! is only called if any of the locale files actually changed.José Valim2010-06-201-0/+1
|
* Unforce i18n from ASSantiago Pastorino2010-05-311-2/+7
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Replace the placeholder base_hook API with on_load. To specify some code thatwycats2010-03-291-1/+1
| | | | | | | | should run during framework load do: ActiveSupport.on_load(:action_controller) do # Code run in the context of AC::Base end
* Make many parts of Rails lazy. In order to facilitate this,wycats2010-03-071-1/+2
| | | | | | | | | | | | add lazy_load_hooks.rb, which allows us to declare code that should be run at some later time. For instance, this allows us to defer requiring ActiveRecord::Base at boot time purely to apply configuration. Instead, we register a hook that should apply configuration once ActiveRecord::Base is loaded. With these changes, brings down total boot time of a new app to 300ms in production and 400ms in dev. TODO: rename base_hook
* Fix the i18n dependency problemDavid Heinemeier Hansson2009-12-271-0/+2