aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-10-28 21:55:59 +0100
committerMichael Koziarski <michael@koziarski.com>2008-10-28 21:55:59 +0100
commit4684e76aefca2c49d3421e7184a1d568e2cc0dac (patch)
treea880b47123e34391f9fa458167fb20906a89fadd /activesupport/lib
parent1b0afb31dfc71674b054459c2e0418ca3a709467 (diff)
downloadrails-4684e76aefca2c49d3421e7184a1d568e2cc0dac.tar.gz
rails-4684e76aefca2c49d3421e7184a1d568e2cc0dac.tar.bz2
rails-4684e76aefca2c49d3421e7184a1d568e2cc0dac.zip
Remove reload call from vendored gem. Breaks a bunch of stuff as Dispatcher isn't always defined.
This call will be moved into Dispatcher in a bit.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb b/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb
index f34e880bfd..c682eadf85 100644
--- a/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb
+++ b/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb
@@ -6,10 +6,6 @@ module I18n
INTERPOLATION_RESERVED_KEYS = %w(scope default)
MATCH = /(\\\\)?\{\{([^\}]+)\}\}/
- def initialize
- Dispatcher.to_prepare { reload }
- end
-
# Accepts a list of paths to translation files. Loads translations from
# plain Ruby (*.rb) or YAML files (*.yml). See #load_rb and #load_yml
# for details.