lib/thinking_sphinx/railtie.rb in thinking-sphinx-2.0.7 vs lib/thinking_sphinx/railtie.rb in thinking-sphinx-2.0.8

- old
+ new

@@ -1,11 +1,11 @@ require 'thinking_sphinx' require 'rails' module ThinkingSphinx class Railtie < Rails::Railtie - + initializer 'thinking_sphinx.sphinx' do ThinkingSphinx::AutoVersion.detect end initializer "thinking_sphinx.active_record" do @@ -24,19 +24,16 @@ initializer "thinking_sphinx.set_app_root" do |app| ThinkingSphinx::Configuration.instance.reset # Rails has setup app now end config.to_prepare do - I18n.backend.reload! - I18n.backend.available_locales - # ActiveRecord::Base.to_crc32s is dependant on the subclasses being loaded # consistently. When the environment is reset, subclasses/descendants will # be lost but our context will not reload them for us. # # We reset the context which causes the subclasses/descendants to be # reloaded next time the context is called. - # + # ThinkingSphinx.reset_context! end rake_tasks do load File.expand_path('../tasks.rb', __FILE__)